]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/toplev.c
diagnostics: add labeling of source ranges
[thirdparty/gcc.git] / gcc / toplev.c
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987-2018 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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.
10
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.
15
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/>. */
19
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. */
24
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 "params.h"
56 #include "reload.h"
57 #include "lra.h"
58 #include "dwarf2asm.h"
59 #include "debug.h"
60 #include "common/common-target.h"
61 #include "langhooks.h"
62 #include "cfgloop.h" /* for init_set_costs */
63 #include "hosthooks.h"
64 #include "opts.h"
65 #include "opts-diagnostic.h"
66 #include "stringpool.h"
67 #include "attribs.h"
68 #include "asan.h"
69 #include "tsan.h"
70 #include "plugin.h"
71 #include "context.h"
72 #include "pass_manager.h"
73 #include "auto-profile.h"
74 #include "dwarf2out.h"
75 #include "ipa-reference.h"
76 #include "symbol-summary.h"
77 #include "tree-vrp.h"
78 #include "ipa-prop.h"
79 #include "gcse.h"
80 #include "omp-offload.h"
81 #include "hsa-common.h"
82 #include "edit-context.h"
83 #include "tree-pass.h"
84 #include "dumpfile.h"
85 #include "ipa-fnsummary.h"
86 #include "optinfo-emit-json.h"
87
88 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
89 #include "dbxout.h"
90 #endif
91
92 #ifdef XCOFF_DEBUGGING_INFO
93 #include "xcoffout.h" /* Needed for external data declarations. */
94 #endif
95
96 #include "selftest.h"
97
98 #ifdef HAVE_isl
99 #include <isl/version.h>
100 #endif
101
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);
109
110 static void crash_signal (int) ATTRIBUTE_NORETURN;
111 static void compile_file (void);
112
113 /* True if we don't need a backend (e.g. preprocessing only). */
114 static bool no_backend;
115
116 /* Length of line when printing switch values. */
117 #define MAX_LINE 75
118
119 /* Decoded options, and number of such options. */
120 struct cl_decoded_option *save_decoded_options;
121 unsigned int save_decoded_options_count;
122
123 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
124 to optimize in process_options (). */
125 #define AUTODETECT_VALUE 2
126
127 /* Debug hooks - dependent upon command line options. */
128
129 const struct gcc_debug_hooks *debug_hooks;
130
131 /* The FUNCTION_DECL for the function currently being compiled,
132 or 0 if between functions. */
133 tree current_function_decl;
134
135 /* Set to the FUNC_BEGIN label of the current function, or NULL
136 if none. */
137 const char * current_function_func_begin_label;
138
139 /* A random sequence of characters, unless overridden by user. */
140 static const char *flag_random_seed;
141
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;
146
147 /* Random number for this compilation */
148 HOST_WIDE_INT random_seed;
149
150 /* -f flags. */
151
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;
160
161 struct target_flag_state default_target_flag_state;
162 #if SWITCHABLE_TARGET
163 struct 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
167
168 /* The user symbol prefix after having resolved same. */
169 const char *user_label_prefix;
170
171 /* Output files for assembler code (real compiler output)
172 and debugging dumps. */
173
174 FILE *asm_out_file;
175 FILE *aux_info_file;
176 FILE *stack_usage_file = NULL;
177
178 /* The current working directory of a translation. It's generally the
179 directory from which compilation was initiated, but a preprocessed
180 file may specify the original directory in which it was
181 created. */
182
183 static const char *src_pwd;
184
185 /* Initialize src_pwd with the given string, and return true. If it
186 was already initialized, return false. As a special case, it may
187 be called with a NULL argument to test whether src_pwd has NOT been
188 initialized yet. */
189
190 bool
191 set_src_pwd (const char *pwd)
192 {
193 if (src_pwd)
194 {
195 if (strcmp (src_pwd, pwd) == 0)
196 return true;
197 else
198 return false;
199 }
200
201 src_pwd = xstrdup (pwd);
202 return true;
203 }
204
205 /* Return the directory from which the translation unit was initiated,
206 in case set_src_pwd() was not called before to assign it a
207 different value. */
208
209 const char *
210 get_src_pwd (void)
211 {
212 if (! src_pwd)
213 {
214 src_pwd = getpwd ();
215 if (!src_pwd)
216 src_pwd = ".";
217 }
218
219 return src_pwd;
220 }
221
222 /* Called when the start of a function definition is parsed,
223 this function prints on stderr the name of the function. */
224 void
225 announce_function (tree decl)
226 {
227 if (!quiet_flag)
228 {
229 if (rtl_dump_and_exit)
230 fprintf (stderr, "%s ",
231 identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl))));
232 else
233 fprintf (stderr, " %s",
234 identifier_to_locale (lang_hooks.decl_printable_name (decl, 2)));
235 fflush (stderr);
236 pp_needs_newline (global_dc->printer) = true;
237 diagnostic_set_last_function (global_dc, (diagnostic_info *) NULL);
238 }
239 }
240
241 /* Initialize local_tick with the time of day, or -1 if
242 flag_random_seed is set. */
243
244 static void
245 init_local_tick (void)
246 {
247 if (!flag_random_seed)
248 {
249 #ifdef HAVE_GETTIMEOFDAY
250 {
251 struct timeval tv;
252
253 gettimeofday (&tv, NULL);
254 local_tick = (unsigned) tv.tv_sec * 1000 + tv.tv_usec / 1000;
255 }
256 #else
257 {
258 time_t now = time (NULL);
259
260 if (now != (time_t)-1)
261 local_tick = (unsigned) now;
262 }
263 #endif
264 }
265 else
266 local_tick = -1;
267 }
268
269 /* Obtain the random_seed. Unless NOINIT, initialize it if
270 it's not provided in the command line. */
271
272 HOST_WIDE_INT
273 get_random_seed (bool noinit)
274 {
275 if (!random_seed && !noinit)
276 {
277 int fd = open ("/dev/urandom", O_RDONLY);
278 if (fd >= 0)
279 {
280 if (read (fd, &random_seed, sizeof (random_seed))
281 != sizeof (random_seed))
282 random_seed = 0;
283 close (fd);
284 }
285 if (!random_seed)
286 random_seed = local_tick ^ getpid ();
287 }
288 return random_seed;
289 }
290
291 /* Set flag_random_seed to VAL, and if non-null, reinitialize random_seed. */
292
293 void
294 set_random_seed (const char *val)
295 {
296 flag_random_seed = val;
297 if (flag_random_seed)
298 {
299 char *endp;
300
301 /* When the driver passed in a hex number don't crc it again */
302 random_seed = strtoul (flag_random_seed, &endp, 0);
303 if (!(endp > flag_random_seed && *endp == 0))
304 random_seed = crc32_string (0, flag_random_seed);
305 }
306 }
307
308 /* Handler for fatal signals, such as SIGSEGV. These are transformed
309 into ICE messages, which is much more user friendly. In case the
310 error printer crashes, reset the signal to prevent infinite recursion. */
311
312 static void
313 crash_signal (int signo)
314 {
315 signal (signo, SIG_DFL);
316
317 /* If we crashed while processing an ASM statement, then be a little more
318 graceful. It's most likely the user's fault. */
319 if (this_is_asm_operands)
320 {
321 output_operand_lossage ("unrecoverable error");
322 exit (FATAL_EXIT_CODE);
323 }
324
325 internal_error ("%s", strsignal (signo));
326 }
327
328 /* A subroutine of wrapup_global_declarations. We've come to the end of
329 the compilation unit. All deferred variables should be undeferred,
330 and all incomplete decls should be finalized. */
331
332 void
333 wrapup_global_declaration_1 (tree decl)
334 {
335 /* We're not deferring this any longer. Assignment is conditional to
336 avoid needlessly dirtying PCH pages. */
337 if (CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_WITH_VIS)
338 && DECL_DEFER_OUTPUT (decl) != 0)
339 DECL_DEFER_OUTPUT (decl) = 0;
340
341 if (VAR_P (decl) && DECL_SIZE (decl) == 0)
342 lang_hooks.finish_incomplete_decl (decl);
343 }
344
345 /* A subroutine of wrapup_global_declarations. Decide whether or not DECL
346 needs to be output. Return true if it is output. */
347
348 bool
349 wrapup_global_declaration_2 (tree decl)
350 {
351 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl)
352 || (VAR_P (decl) && DECL_HAS_VALUE_EXPR_P (decl)))
353 return false;
354
355 /* Don't write out static consts, unless we still need them.
356
357 We also keep static consts if not optimizing (for debugging),
358 unless the user specified -fno-keep-static-consts.
359 ??? They might be better written into the debug information.
360 This is possible when using DWARF.
361
362 A language processor that wants static constants to be always
363 written out (even if it is not used) is responsible for
364 calling rest_of_decl_compilation itself. E.g. the C front-end
365 calls rest_of_decl_compilation from finish_decl.
366 One motivation for this is that is conventional in some
367 environments to write things like:
368 static const char rcsid[] = "... version string ...";
369 intending to force the string to be in the executable.
370
371 A language processor that would prefer to have unneeded
372 static constants "optimized away" would just defer writing
373 them out until here. E.g. C++ does this, because static
374 constants are often defined in header files.
375
376 ??? A tempting alternative (for both C and C++) would be
377 to force a constant to be written if and only if it is
378 defined in a main file, as opposed to an include file. */
379
380 if (VAR_P (decl) && TREE_STATIC (decl))
381 {
382 varpool_node *node;
383 bool needed = true;
384 node = varpool_node::get (decl);
385
386 if (!node && flag_ltrans)
387 needed = false;
388 else if (node && node->definition)
389 needed = false;
390 else if (node && node->alias)
391 needed = false;
392 else if (!symtab->global_info_ready
393 && (TREE_USED (decl)
394 || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
395 /* needed */;
396 else if (node && node->analyzed)
397 /* needed */;
398 else if (DECL_COMDAT (decl))
399 needed = false;
400 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
401 && (optimize || !flag_keep_static_consts
402 || DECL_ARTIFICIAL (decl)))
403 needed = false;
404
405 if (needed)
406 {
407 rest_of_decl_compilation (decl, 1, 1);
408 return true;
409 }
410 }
411
412 return false;
413 }
414
415 /* Do any final processing required for the declarations in VEC, of
416 which there are LEN. We write out inline functions and variables
417 that have been deferred until this point, but which are required.
418 Returns nonzero if anything was put out. */
419
420 bool
421 wrapup_global_declarations (tree *vec, int len)
422 {
423 bool reconsider, output_something = false;
424 int i;
425
426 for (i = 0; i < len; i++)
427 wrapup_global_declaration_1 (vec[i]);
428
429 /* Now emit any global variables or functions that we have been
430 putting off. We need to loop in case one of the things emitted
431 here references another one which comes earlier in the list. */
432 do
433 {
434 reconsider = false;
435 for (i = 0; i < len; i++)
436 reconsider |= wrapup_global_declaration_2 (vec[i]);
437 if (reconsider)
438 output_something = true;
439 }
440 while (reconsider);
441
442 return output_something;
443 }
444
445 /* Compile an entire translation unit. Write a file of assembly
446 output and various debugging dumps. */
447
448 static void
449 compile_file (void)
450 {
451 timevar_start (TV_PHASE_PARSING);
452 timevar_push (TV_PARSE_GLOBAL);
453
454 /* Parse entire file and generate initial debug information. */
455 lang_hooks.parse_file ();
456
457 timevar_pop (TV_PARSE_GLOBAL);
458 timevar_stop (TV_PHASE_PARSING);
459
460 if (flag_dump_locations)
461 dump_location_info (stderr);
462
463 /* Compilation is now finished except for writing
464 what's left of the symbol table output. */
465
466 if (flag_syntax_only || flag_wpa)
467 return;
468
469 /* Reset maximum_field_alignment, it can be adjusted by #pragma pack
470 and this shouldn't influence any types built by the middle-end
471 from now on (like gcov_info_type). */
472 maximum_field_alignment = initial_max_fld_align * BITS_PER_UNIT;
473
474 ggc_protect_identifiers = false;
475
476 /* Run the actual compilation process. */
477 if (!in_lto_p)
478 {
479 timevar_start (TV_PHASE_OPT_GEN);
480 symtab->finalize_compilation_unit ();
481 timevar_stop (TV_PHASE_OPT_GEN);
482 }
483
484 /* Perform any post compilation-proper parser cleanups and
485 processing. This is currently only needed for the C++ parser,
486 which can be hopefully cleaned up so this hook is no longer
487 necessary. */
488 if (lang_hooks.decls.post_compilation_parsing_cleanups)
489 lang_hooks.decls.post_compilation_parsing_cleanups ();
490
491 optimization_records_finish ();
492
493 if (seen_error ())
494 return;
495
496 timevar_start (TV_PHASE_LATE_ASM);
497
498 /* Compilation unit is finalized. When producing non-fat LTO object, we are
499 basically finished. */
500 if ((in_lto_p && flag_incremental_link != INCREMENTAL_LINK_LTO)
501 || !flag_lto || flag_fat_lto_objects)
502 {
503 /* File-scope initialization for AddressSanitizer. */
504 if (flag_sanitize & SANITIZE_ADDRESS)
505 asan_finish_file ();
506
507 if (flag_sanitize & SANITIZE_THREAD)
508 tsan_finish_file ();
509
510 omp_finish_file ();
511
512 hsa_output_brig ();
513
514 output_shared_constant_pool ();
515 output_object_blocks ();
516 finish_tm_clone_pairs ();
517
518 /* Write out any pending weak symbol declarations. */
519 weak_finish ();
520
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 ();
524
525 /* Do dbx symbols. */
526 timevar_push (TV_SYMOUT);
527
528 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
529 dwarf2out_frame_finish ();
530 #endif
531
532 (*debug_hooks->finish) (main_input_filename);
533 timevar_pop (TV_SYMOUT);
534
535 /* Output some stuff at end of file if nec. */
536
537 dw2_output_indirect_constants ();
538
539 /* Flush any pending external directives. */
540 process_pending_assemble_externals ();
541 }
542
543 /* Emit LTO marker if LTO info has been previously emitted. This is
544 used by collect2 to determine whether an object file contains IL.
545 We used to emit an undefined reference here, but this produces
546 link errors if an object file with IL is stored into a shared
547 library without invoking lto1. */
548 if (flag_generate_lto || flag_generate_offload)
549 {
550 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
551 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, NULL_TREE,
552 "__gnu_lto_v1",
553 HOST_WIDE_INT_1U, 8);
554 #elif defined ASM_OUTPUT_ALIGNED_COMMON
555 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, "__gnu_lto_v1",
556 HOST_WIDE_INT_1U, 8);
557 #else
558 ASM_OUTPUT_COMMON (asm_out_file, "__gnu_lto_v1",
559 HOST_WIDE_INT_1U,
560 HOST_WIDE_INT_1U);
561 #endif
562 }
563
564 /* Let linker plugin know that this is a slim object and must be LTOed
565 even when user did not ask for it. */
566 if (flag_generate_lto && !flag_fat_lto_objects)
567 {
568 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
569 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, NULL_TREE, "__gnu_lto_slim",
570 HOST_WIDE_INT_1U, 8);
571 #elif defined ASM_OUTPUT_ALIGNED_COMMON
572 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, "__gnu_lto_slim",
573 HOST_WIDE_INT_1U, 8);
574 #else
575 ASM_OUTPUT_COMMON (asm_out_file, "__gnu_lto_slim",
576 HOST_WIDE_INT_1U,
577 HOST_WIDE_INT_1U);
578 #endif
579 }
580
581 /* Attach a special .ident directive to the end of the file to identify
582 the version of GCC which compiled this code. The format of the .ident
583 string is patterned after the ones produced by native SVR4 compilers. */
584 if (!flag_no_ident)
585 {
586 const char *pkg_version = "(GNU) ";
587 char *ident_str;
588
589 if (strcmp ("(GCC) ", pkgversion_string))
590 pkg_version = pkgversion_string;
591
592 ident_str = ACONCAT (("GCC: ", pkg_version, version_string, NULL));
593 targetm.asm_out.output_ident (ident_str);
594 }
595
596 /* Auto profile finalization. */
597 if (flag_auto_profile)
598 end_auto_profile ();
599
600 /* Invoke registered plugin callbacks. */
601 invoke_plugin_callbacks (PLUGIN_FINISH_UNIT, NULL);
602
603 /* This must be at the end. Some target ports emit end of file directives
604 into the assembly file here, and hence we can not output anything to the
605 assembly file after this point. */
606 targetm.asm_out.file_end ();
607
608 timevar_stop (TV_PHASE_LATE_ASM);
609 }
610
611 /* Print version information to FILE.
612 Each line begins with INDENT (for the case where FILE is the
613 assembler output file).
614
615 If SHOW_GLOBAL_STATE is true (for cc1 etc), we are within the compiler
616 proper and can print pertinent state (e.g. params and plugins).
617
618 If SHOW_GLOBAL_STATE is false (for use by libgccjit), we are outside the
619 compiler, and we don't hold the mutex on the compiler's global state:
620 we can't print params and plugins, since they might not be initialized,
621 or might be being manipulated by a compile running in another
622 thread. */
623
624 void
625 print_version (FILE *file, const char *indent, bool show_global_state)
626 {
627 static const char fmt1[] =
628 #ifdef __GNUC__
629 N_("%s%s%s %sversion %s (%s)\n%s\tcompiled by GNU C version %s, ")
630 #else
631 N_("%s%s%s %sversion %s (%s) compiled by CC, ")
632 #endif
633 ;
634 static const char fmt2[] =
635 N_("GMP version %s, MPFR version %s, MPC version %s, isl version %s\n");
636 static const char fmt3[] =
637 N_("%s%swarning: %s header version %s differs from library version %s.\n");
638 static const char fmt4[] =
639 N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
640 #ifndef __VERSION__
641 #define __VERSION__ "[?]"
642 #endif
643 fprintf (file,
644 file == stderr ? _(fmt1) : fmt1,
645 indent, *indent != 0 ? " " : "",
646 lang_hooks.name, pkgversion_string, version_string, TARGET_NAME,
647 indent, __VERSION__);
648
649 /* We need to stringify the GMP macro values. Ugh, gmp_version has
650 two string formats, "i.j.k" and "i.j" when k is zero. As of
651 gmp-4.3.0, GMP always uses the 3 number format. */
652 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
653 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3 (X)
654 #define GCC_GMP_VERSION_NUM(X,Y,Z) (((X) << 16L) | ((Y) << 8) | (Z))
655 #define GCC_GMP_VERSION \
656 GCC_GMP_VERSION_NUM(__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL)
657 #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,3,0) && __GNU_MP_VERSION_PATCHLEVEL == 0
658 #define GCC_GMP_STRINGIFY_VERSION \
659 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
660 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR)
661 #else
662 #define GCC_GMP_STRINGIFY_VERSION \
663 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
664 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR) "." \
665 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_PATCHLEVEL)
666 #endif
667 fprintf (file,
668 file == stderr ? _(fmt2) : fmt2,
669 GCC_GMP_STRINGIFY_VERSION, MPFR_VERSION_STRING, MPC_VERSION_STRING,
670 #ifndef HAVE_isl
671 "none"
672 #else
673 isl_version ()
674 #endif
675 );
676 if (strcmp (GCC_GMP_STRINGIFY_VERSION, gmp_version))
677 fprintf (file,
678 file == stderr ? _(fmt3) : fmt3,
679 indent, *indent != 0 ? " " : "",
680 "GMP", GCC_GMP_STRINGIFY_VERSION, gmp_version);
681 if (strcmp (MPFR_VERSION_STRING, mpfr_get_version ()))
682 fprintf (file,
683 file == stderr ? _(fmt3) : fmt3,
684 indent, *indent != 0 ? " " : "",
685 "MPFR", MPFR_VERSION_STRING, mpfr_get_version ());
686 if (strcmp (MPC_VERSION_STRING, mpc_get_version ()))
687 fprintf (file,
688 file == stderr ? _(fmt3) : fmt3,
689 indent, *indent != 0 ? " " : "",
690 "MPC", MPC_VERSION_STRING, mpc_get_version ());
691
692 if (show_global_state)
693 {
694 fprintf (file,
695 file == stderr ? _(fmt4) : fmt4,
696 indent, *indent != 0 ? " " : "",
697 PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
698
699 print_plugins_versions (file, indent);
700 }
701 }
702
703 static int
704 print_to_asm_out_file (print_switch_type type, const char * text)
705 {
706 bool prepend_sep = true;
707
708 switch (type)
709 {
710 case SWITCH_TYPE_LINE_END:
711 putc ('\n', asm_out_file);
712 return 1;
713
714 case SWITCH_TYPE_LINE_START:
715 fputs (ASM_COMMENT_START, asm_out_file);
716 return strlen (ASM_COMMENT_START);
717
718 case SWITCH_TYPE_DESCRIPTIVE:
719 if (ASM_COMMENT_START[0] == 0)
720 prepend_sep = false;
721 /* FALLTHRU */
722 case SWITCH_TYPE_PASSED:
723 case SWITCH_TYPE_ENABLED:
724 if (prepend_sep)
725 fputc (' ', asm_out_file);
726 fputs (text, asm_out_file);
727 /* No need to return the length here as
728 print_single_switch has already done it. */
729 return 0;
730
731 default:
732 return -1;
733 }
734 }
735
736 static int
737 print_to_stderr (print_switch_type type, const char * text)
738 {
739 switch (type)
740 {
741 case SWITCH_TYPE_LINE_END:
742 putc ('\n', stderr);
743 return 1;
744
745 case SWITCH_TYPE_LINE_START:
746 return 0;
747
748 case SWITCH_TYPE_PASSED:
749 case SWITCH_TYPE_ENABLED:
750 fputc (' ', stderr);
751 /* FALLTHRU */
752
753 case SWITCH_TYPE_DESCRIPTIVE:
754 fputs (text, stderr);
755 /* No need to return the length here as
756 print_single_switch has already done it. */
757 return 0;
758
759 default:
760 return -1;
761 }
762 }
763
764 /* Print an option value and return the adjusted position in the line.
765 ??? print_fn doesn't handle errors, eg disk full; presumably other
766 code will catch a disk full though. */
767
768 static int
769 print_single_switch (print_switch_fn_type print_fn,
770 int pos,
771 print_switch_type type,
772 const char * text)
773 {
774 /* The ultrix fprintf returns 0 on success, so compute the result
775 we want here since we need it for the following test. The +1
776 is for the separator character that will probably be emitted. */
777 int len = strlen (text) + 1;
778
779 if (pos != 0
780 && pos + len > MAX_LINE)
781 {
782 print_fn (SWITCH_TYPE_LINE_END, NULL);
783 pos = 0;
784 }
785
786 if (pos == 0)
787 pos += print_fn (SWITCH_TYPE_LINE_START, NULL);
788
789 print_fn (type, text);
790 return pos + len;
791 }
792
793 /* Print active target switches using PRINT_FN.
794 POS is the current cursor position and MAX is the size of a "line".
795 Each line begins with INDENT and ends with TERM.
796 Each switch is separated from the next by SEP. */
797
798 static void
799 print_switch_values (print_switch_fn_type print_fn)
800 {
801 int pos = 0;
802 size_t j;
803
804 /* Print the options as passed. */
805 pos = print_single_switch (print_fn, pos,
806 SWITCH_TYPE_DESCRIPTIVE, _("options passed: "));
807
808 for (j = 1; j < save_decoded_options_count; j++)
809 {
810 switch (save_decoded_options[j].opt_index)
811 {
812 case OPT_o:
813 case OPT_d:
814 case OPT_dumpbase:
815 case OPT_dumpdir:
816 case OPT_auxbase:
817 case OPT_quiet:
818 case OPT_version:
819 /* Ignore these. */
820 continue;
821 }
822
823 pos = print_single_switch (print_fn, pos, SWITCH_TYPE_PASSED,
824 save_decoded_options[j].orig_option_with_args_text);
825 }
826
827 if (pos > 0)
828 print_fn (SWITCH_TYPE_LINE_END, NULL);
829
830 /* Print the -f and -m options that have been enabled.
831 We don't handle language specific options but printing argv
832 should suffice. */
833 pos = print_single_switch (print_fn, 0,
834 SWITCH_TYPE_DESCRIPTIVE, _("options enabled: "));
835
836 for (j = 0; j < cl_options_count; j++)
837 if (cl_options[j].cl_report
838 && option_enabled (j, &global_options) > 0)
839 pos = print_single_switch (print_fn, pos,
840 SWITCH_TYPE_ENABLED, cl_options[j].opt_text);
841
842 print_fn (SWITCH_TYPE_LINE_END, NULL);
843 }
844
845 /* Open assembly code output file. Do this even if -fsyntax-only is
846 on, because then the driver will have provided the name of a
847 temporary file or bit bucket for us. NAME is the file specified on
848 the command line, possibly NULL. */
849 static void
850 init_asm_output (const char *name)
851 {
852 if (name == NULL && asm_file_name == 0)
853 asm_out_file = stdout;
854 else
855 {
856 if (asm_file_name == 0)
857 {
858 int len = strlen (dump_base_name);
859 char *dumpname = XNEWVEC (char, len + 6);
860
861 memcpy (dumpname, dump_base_name, len + 1);
862 strip_off_ending (dumpname, len);
863 strcat (dumpname, ".s");
864 asm_file_name = dumpname;
865 }
866 if (!strcmp (asm_file_name, "-"))
867 asm_out_file = stdout;
868 else if (!canonical_filename_eq (asm_file_name, name)
869 || !strcmp (asm_file_name, HOST_BIT_BUCKET))
870 asm_out_file = fopen (asm_file_name, "w");
871 else
872 /* Use UNKOWN_LOCATION to prevent gcc from printing the first
873 line in the current file. */
874 fatal_error (UNKNOWN_LOCATION,
875 "input file %qs is the same as output file",
876 asm_file_name);
877 if (asm_out_file == 0)
878 fatal_error (UNKNOWN_LOCATION,
879 "can%'t open %qs for writing: %m", asm_file_name);
880 }
881
882 if (!flag_syntax_only)
883 {
884 targetm.asm_out.file_start ();
885
886 if (flag_record_gcc_switches)
887 {
888 if (targetm.asm_out.record_gcc_switches)
889 {
890 /* Let the target know that we are about to start recording. */
891 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
892 NULL);
893 /* Now record the switches. */
894 print_switch_values (targetm.asm_out.record_gcc_switches);
895 /* Let the target know that the recording is over. */
896 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
897 NULL);
898 }
899 else
900 inform (UNKNOWN_LOCATION,
901 "-frecord-gcc-switches is not supported by "
902 "the current target");
903 }
904
905 if (flag_verbose_asm)
906 {
907 /* Print the list of switches in effect
908 into the assembler file as comments. */
909 print_version (asm_out_file, ASM_COMMENT_START, true);
910 print_switch_values (print_to_asm_out_file);
911 putc ('\n', asm_out_file);
912 }
913 }
914 }
915
916 /* A helper function; used as the reallocator function for cpp's line
917 table. */
918 static void *
919 realloc_for_line_map (void *ptr, size_t len)
920 {
921 return ggc_realloc (ptr, len);
922 }
923
924 /* A helper function: used as the allocator function for
925 identifier_to_locale. */
926 static void *
927 alloc_for_identifier_to_locale (size_t len)
928 {
929 return ggc_alloc_atomic (len);
930 }
931
932 /* Output stack usage information. */
933 void
934 output_stack_usage (void)
935 {
936 static bool warning_issued = false;
937 enum stack_usage_kind_type { STATIC = 0, DYNAMIC, DYNAMIC_BOUNDED };
938 const char *stack_usage_kind_str[] = {
939 "static",
940 "dynamic",
941 "dynamic,bounded"
942 };
943 HOST_WIDE_INT stack_usage = current_function_static_stack_size;
944 enum stack_usage_kind_type stack_usage_kind;
945
946 if (stack_usage < 0)
947 {
948 if (!warning_issued)
949 {
950 warning (0, "stack usage computation not supported for this target");
951 warning_issued = true;
952 }
953 return;
954 }
955
956 stack_usage_kind = STATIC;
957
958 /* Add the maximum amount of space pushed onto the stack. */
959 if (maybe_ne (current_function_pushed_stack_size, 0))
960 {
961 HOST_WIDE_INT extra;
962 if (current_function_pushed_stack_size.is_constant (&extra))
963 {
964 stack_usage += extra;
965 stack_usage_kind = DYNAMIC_BOUNDED;
966 }
967 else
968 {
969 extra = constant_lower_bound (current_function_pushed_stack_size);
970 stack_usage += extra;
971 stack_usage_kind = DYNAMIC;
972 }
973 }
974
975 /* Now on to the tricky part: dynamic stack allocation. */
976 if (current_function_allocates_dynamic_stack_space)
977 {
978 if (stack_usage_kind != DYNAMIC)
979 {
980 if (current_function_has_unbounded_dynamic_stack_size)
981 stack_usage_kind = DYNAMIC;
982 else
983 stack_usage_kind = DYNAMIC_BOUNDED;
984 }
985
986 /* Add the size even in the unbounded case, this can't hurt. */
987 stack_usage += current_function_dynamic_stack_size;
988 }
989
990 if (flag_stack_usage)
991 {
992 expanded_location loc
993 = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
994 /* We don't want to print the full qualified name because it can be long,
995 so we strip the scope prefix, but we may need to deal with the suffix
996 created by the compiler. */
997 const char *suffix
998 = strchr (IDENTIFIER_POINTER (DECL_NAME (current_function_decl)), '.');
999 const char *name
1000 = lang_hooks.decl_printable_name (current_function_decl, 2);
1001 if (suffix)
1002 {
1003 const char *dot = strchr (name, '.');
1004 while (dot && strcasecmp (dot, suffix) != 0)
1005 {
1006 name = dot + 1;
1007 dot = strchr (name, '.');
1008 }
1009 }
1010 else
1011 {
1012 const char *dot = strrchr (name, '.');
1013 if (dot)
1014 name = dot + 1;
1015 }
1016
1017 fprintf (stack_usage_file,
1018 "%s:%d:%d:%s\t" HOST_WIDE_INT_PRINT_DEC"\t%s\n",
1019 lbasename (loc.file),
1020 loc.line,
1021 loc.column,
1022 name,
1023 stack_usage,
1024 stack_usage_kind_str[stack_usage_kind]);
1025 }
1026
1027 if (warn_stack_usage >= 0 && warn_stack_usage < HOST_WIDE_INT_MAX)
1028 {
1029 const location_t loc = DECL_SOURCE_LOCATION (current_function_decl);
1030
1031 if (stack_usage_kind == DYNAMIC)
1032 warning_at (loc, OPT_Wstack_usage_, "stack usage might be unbounded");
1033 else if (stack_usage > warn_stack_usage)
1034 {
1035 if (stack_usage_kind == DYNAMIC_BOUNDED)
1036 warning_at (loc,
1037 OPT_Wstack_usage_, "stack usage might be %wu bytes",
1038 stack_usage);
1039 else
1040 warning_at (loc, OPT_Wstack_usage_, "stack usage is %wu bytes",
1041 stack_usage);
1042 }
1043 }
1044 }
1045
1046 /* Open an auxiliary output file. */
1047 static FILE *
1048 open_auxiliary_file (const char *ext)
1049 {
1050 char *filename;
1051 FILE *file;
1052
1053 filename = concat (aux_base_name, ".", ext, NULL);
1054 file = fopen (filename, "w");
1055 if (!file)
1056 fatal_error (input_location, "can%'t open %s for writing: %m", filename);
1057 free (filename);
1058 return file;
1059 }
1060
1061 /* Alternative diagnostics callback for reentered ICE reporting. */
1062
1063 static void
1064 internal_error_reentered (diagnostic_context *, const char *, va_list *)
1065 {
1066 /* Flush the dump file if emergency_dump_function itself caused an ICE. */
1067 if (dump_file)
1068 fflush (dump_file);
1069 }
1070
1071 /* Auxiliary callback for the diagnostics code. */
1072
1073 static void
1074 internal_error_function (diagnostic_context *, const char *, va_list *)
1075 {
1076 global_dc->internal_error = internal_error_reentered;
1077 warn_if_plugins ();
1078 emergency_dump_function ();
1079 }
1080
1081 /* Initialization of the front end environment, before command line
1082 options are parsed. Signal handlers, internationalization etc.
1083 ARGV0 is main's argv[0]. */
1084 static void
1085 general_init (const char *argv0, bool init_signals)
1086 {
1087 const char *p;
1088
1089 p = argv0 + strlen (argv0);
1090 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1091 --p;
1092 progname = p;
1093
1094 xmalloc_set_program_name (progname);
1095
1096 hex_init ();
1097
1098 /* Unlock the stdio streams. */
1099 unlock_std_streams ();
1100
1101 gcc_init_libintl ();
1102
1103 identifier_to_locale_alloc = alloc_for_identifier_to_locale;
1104 identifier_to_locale_free = ggc_free;
1105
1106 /* Initialize the diagnostics reporting machinery, so option parsing
1107 can give warnings and errors. */
1108 diagnostic_initialize (global_dc, N_OPTS);
1109 /* Set a default printer. Language specific initializations will
1110 override it later. */
1111 tree_diagnostics_defaults (global_dc);
1112
1113 global_dc->show_caret
1114 = global_options_init.x_flag_diagnostics_show_caret;
1115 global_dc->show_labels_p
1116 = global_options_init.x_flag_diagnostics_show_labels;
1117 global_dc->show_line_numbers_p
1118 = global_options_init.x_flag_diagnostics_show_line_numbers;
1119 global_dc->show_option_requested
1120 = global_options_init.x_flag_diagnostics_show_option;
1121 global_dc->show_column
1122 = global_options_init.x_flag_show_column;
1123 global_dc->internal_error = internal_error_function;
1124 global_dc->option_enabled = option_enabled;
1125 global_dc->option_state = &global_options;
1126 global_dc->option_name = option_name;
1127
1128 if (init_signals)
1129 {
1130 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1131 #ifdef SIGSEGV
1132 signal (SIGSEGV, crash_signal);
1133 #endif
1134 #ifdef SIGILL
1135 signal (SIGILL, crash_signal);
1136 #endif
1137 #ifdef SIGBUS
1138 signal (SIGBUS, crash_signal);
1139 #endif
1140 #ifdef SIGABRT
1141 signal (SIGABRT, crash_signal);
1142 #endif
1143 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1144 signal (SIGIOT, crash_signal);
1145 #endif
1146 #ifdef SIGFPE
1147 signal (SIGFPE, crash_signal);
1148 #endif
1149
1150 /* Other host-specific signal setup. */
1151 (*host_hooks.extra_signals)();
1152 }
1153
1154 /* Initialize the garbage-collector, string pools and tree type hash
1155 table. */
1156 init_ggc ();
1157 init_stringpool ();
1158 input_location = UNKNOWN_LOCATION;
1159 line_table = ggc_alloc<line_maps> ();
1160 linemap_init (line_table, BUILTINS_LOCATION);
1161 line_table->reallocator = realloc_for_line_map;
1162 line_table->round_alloc_size = ggc_round_alloc_size;
1163 line_table->default_range_bits = 5;
1164 init_ttree ();
1165
1166 /* Initialize register usage now so switches may override. */
1167 init_reg_sets ();
1168
1169 /* Register the language-independent parameters. */
1170 global_init_params ();
1171
1172 /* This must be done after global_init_params but before argument
1173 processing. */
1174 init_ggc_heuristics ();
1175
1176 /* Create the singleton holder for global state. This creates the
1177 dump manager. */
1178 g = new gcc::context ();
1179
1180 /* Allow languages and middle-end to register their dumps before the
1181 optimization passes. */
1182 g->get_dumps ()->register_dumps ();
1183
1184 /* Create the passes. */
1185 g->set_passes (new gcc::pass_manager (g));
1186
1187 symtab = new (ggc_cleared_alloc <symbol_table> ()) symbol_table ();
1188
1189 statistics_early_init ();
1190 finish_params ();
1191 }
1192
1193 /* Return true if the current target supports -fsection-anchors. */
1194
1195 static bool
1196 target_supports_section_anchors_p (void)
1197 {
1198 if (targetm.min_anchor_offset == 0 && targetm.max_anchor_offset == 0)
1199 return false;
1200
1201 if (targetm.asm_out.output_anchor == NULL)
1202 return false;
1203
1204 return true;
1205 }
1206
1207 /* Parse "N[:M][:...]" into struct align_flags A.
1208 VALUES contains parsed values (in reverse order), all processed
1209 values are popped. */
1210
1211 static void
1212 read_log_maxskip (auto_vec<unsigned> &values, align_flags_tuple *a)
1213 {
1214 unsigned n = values.pop ();
1215 if (n != 0)
1216 a->log = floor_log2 (n * 2 - 1);
1217
1218 if (values.is_empty ())
1219 a->maxskip = n ? n - 1 : 0;
1220 else
1221 {
1222 unsigned m = values.pop ();
1223 /* -falign-foo=N:M means M-1 max bytes of padding, not M. */
1224 if (m > 0)
1225 m--;
1226 a->maxskip = m;
1227 }
1228
1229 /* Normalize the tuple. */
1230 a->normalize ();
1231 }
1232
1233 /* Parse "N[:M[:N2[:M2]]]" string FLAG into a pair of struct align_flags. */
1234
1235 static void
1236 parse_N_M (const char *flag, align_flags &a)
1237 {
1238 if (flag)
1239 {
1240 static hash_map <nofree_string_hash, align_flags> cache;
1241 align_flags *entry = cache.get (flag);
1242 if (entry)
1243 {
1244 a = *entry;
1245 return;
1246 }
1247
1248 auto_vec<unsigned> result_values;
1249 bool r = parse_and_check_align_values (flag, NULL, result_values, false,
1250 UNKNOWN_LOCATION);
1251 if (!r)
1252 return;
1253
1254 /* Reverse values for easier manipulation. */
1255 result_values.reverse ();
1256
1257 read_log_maxskip (result_values, &a.levels[0]);
1258 if (!result_values.is_empty ())
1259 read_log_maxskip (result_values, &a.levels[1]);
1260 #ifdef SUBALIGN_LOG
1261 else
1262 {
1263 /* N2[:M2] is not specified. This arch has a default for N2.
1264 Before -falign-foo=N:M:N2:M2 was introduced, x86 had a tweak.
1265 -falign-functions=N with N > 8 was adding secondary alignment.
1266 -falign-functions=10 was emitting this before every function:
1267 .p2align 4,,9
1268 .p2align 3
1269 Now this behavior (and more) can be explicitly requested:
1270 -falign-functions=16:10:8
1271 Retain old behavior if N2 is missing: */
1272
1273 int align = 1 << a.levels[0].log;
1274 int subalign = 1 << SUBALIGN_LOG;
1275
1276 if (a.levels[0].log > SUBALIGN_LOG
1277 && a.levels[0].maxskip >= subalign - 1)
1278 {
1279 /* Set N2 unless subalign can never have any effect. */
1280 if (align > a.levels[0].maxskip + 1)
1281 {
1282 a.levels[1].log = SUBALIGN_LOG;
1283 a.levels[1].normalize ();
1284 }
1285 }
1286 }
1287 #endif
1288
1289 /* Cache seen value. */
1290 cache.put (flag, a);
1291 }
1292 }
1293
1294 /* Process -falign-foo=N[:M[:N2[:M2]]] options. */
1295
1296 void
1297 parse_alignment_opts (void)
1298 {
1299 parse_N_M (str_align_loops, align_loops);
1300 parse_N_M (str_align_jumps, align_jumps);
1301 parse_N_M (str_align_labels, align_labels);
1302 parse_N_M (str_align_functions, align_functions);
1303 }
1304
1305 /* Process the options that have been parsed. */
1306 static void
1307 process_options (void)
1308 {
1309 /* Just in case lang_hooks.post_options ends up calling a debug_hook.
1310 This can happen with incorrect pre-processed input. */
1311 debug_hooks = &do_nothing_debug_hooks;
1312
1313 maximum_field_alignment = initial_max_fld_align * BITS_PER_UNIT;
1314
1315 /* Allow the front end to perform consistency checks and do further
1316 initialization based on the command line options. This hook also
1317 sets the original filename if appropriate (e.g. foo.i -> foo.c)
1318 so we can correctly initialize debug output. */
1319 no_backend = lang_hooks.post_options (&main_input_filename);
1320
1321 /* Some machines may reject certain combinations of options. */
1322 location_t saved_location = input_location;
1323 input_location = UNKNOWN_LOCATION;
1324 targetm.target_option.override ();
1325 input_location = saved_location;
1326
1327 if (flag_diagnostics_generate_patch)
1328 global_dc->edit_context_ptr = new edit_context ();
1329
1330 /* Avoid any informative notes in the second run of -fcompare-debug. */
1331 if (flag_compare_debug)
1332 diagnostic_inhibit_notes (global_dc);
1333
1334 if (flag_section_anchors && !target_supports_section_anchors_p ())
1335 {
1336 warning_at (UNKNOWN_LOCATION, OPT_fsection_anchors,
1337 "this target does not support %qs",
1338 "-fsection-anchors");
1339 flag_section_anchors = 0;
1340 }
1341
1342 if (flag_short_enums == 2)
1343 flag_short_enums = targetm.default_short_enums ();
1344
1345 /* Set aux_base_name if not already set. */
1346 if (aux_base_name)
1347 ;
1348 else if (main_input_filename)
1349 {
1350 char *name = xstrdup (lbasename (main_input_filename));
1351
1352 strip_off_ending (name, strlen (name));
1353 aux_base_name = name;
1354 }
1355 else
1356 aux_base_name = "gccaux";
1357
1358 #ifndef HAVE_isl
1359 if (flag_graphite
1360 || flag_loop_nest_optimize
1361 || flag_graphite_identity
1362 || flag_loop_parallelize_all)
1363 sorry ("Graphite loop optimizations cannot be used (isl is not available) "
1364 "(-fgraphite, -fgraphite-identity, -floop-nest-optimize, "
1365 "-floop-parallelize-all)");
1366 #endif
1367
1368 if (flag_cf_protection != CF_NONE
1369 && !(flag_cf_protection & CF_SET))
1370 {
1371 if (flag_cf_protection == CF_FULL)
1372 {
1373 error_at (UNKNOWN_LOCATION,
1374 "%<-fcf-protection=full%> is not supported for this "
1375 "target");
1376 flag_cf_protection = CF_NONE;
1377 }
1378 if (flag_cf_protection == CF_BRANCH)
1379 {
1380 error_at (UNKNOWN_LOCATION,
1381 "%<-fcf-protection=branch%> is not supported for this "
1382 "target");
1383 flag_cf_protection = CF_NONE;
1384 }
1385 if (flag_cf_protection == CF_RETURN)
1386 {
1387 error_at (UNKNOWN_LOCATION,
1388 "%<-fcf-protection=return%> is not supported for this "
1389 "target");
1390 flag_cf_protection = CF_NONE;
1391 }
1392 }
1393
1394 /* One region RA really helps to decrease the code size. */
1395 if (flag_ira_region == IRA_REGION_AUTODETECT)
1396 flag_ira_region
1397 = optimize_size || !optimize ? IRA_REGION_ONE : IRA_REGION_MIXED;
1398
1399 if (!abi_version_at_least (2))
1400 {
1401 /* -fabi-version=1 support was removed after GCC 4.9. */
1402 error_at (UNKNOWN_LOCATION,
1403 "%<-fabi-version=1%> is no longer supported");
1404 flag_abi_version = 2;
1405 }
1406
1407 /* Unrolling all loops implies that standard loop unrolling must also
1408 be done. */
1409 if (flag_unroll_all_loops)
1410 flag_unroll_loops = 1;
1411
1412 /* web and rename-registers help when run after loop unrolling. */
1413 if (flag_web == AUTODETECT_VALUE)
1414 flag_web = flag_unroll_loops;
1415
1416 if (flag_rename_registers == AUTODETECT_VALUE)
1417 flag_rename_registers = flag_unroll_loops;
1418
1419 if (flag_non_call_exceptions)
1420 flag_asynchronous_unwind_tables = 1;
1421 if (flag_asynchronous_unwind_tables)
1422 flag_unwind_tables = 1;
1423
1424 if (flag_value_profile_transformations)
1425 flag_profile_values = 1;
1426
1427 /* Warn about options that are not supported on this machine. */
1428 #ifndef INSN_SCHEDULING
1429 if (flag_schedule_insns || flag_schedule_insns_after_reload)
1430 warning_at (UNKNOWN_LOCATION, 0,
1431 "instruction scheduling not supported on this target machine");
1432 #endif
1433 if (!DELAY_SLOTS && flag_delayed_branch)
1434 warning_at (UNKNOWN_LOCATION, 0,
1435 "this target machine does not have delayed branches");
1436
1437 user_label_prefix = USER_LABEL_PREFIX;
1438 if (flag_leading_underscore != -1)
1439 {
1440 /* If the default prefix is more complicated than "" or "_",
1441 issue a warning and ignore this option. */
1442 if (user_label_prefix[0] == 0 ||
1443 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1444 {
1445 user_label_prefix = flag_leading_underscore ? "_" : "";
1446 }
1447 else
1448 warning_at (UNKNOWN_LOCATION, 0,
1449 "-f%sleading-underscore not supported on this "
1450 "target machine", flag_leading_underscore ? "" : "no-");
1451 }
1452
1453 /* If we are in verbose mode, write out the version and maybe all the
1454 option flags in use. */
1455 if (version_flag)
1456 {
1457 print_version (stderr, "", true);
1458 if (! quiet_flag)
1459 print_switch_values (print_to_stderr);
1460 }
1461
1462 if (flag_syntax_only)
1463 {
1464 write_symbols = NO_DEBUG;
1465 profile_flag = 0;
1466 }
1467
1468 if (flag_gtoggle)
1469 {
1470 if (debug_info_level == DINFO_LEVEL_NONE)
1471 {
1472 debug_info_level = DINFO_LEVEL_NORMAL;
1473
1474 if (write_symbols == NO_DEBUG)
1475 write_symbols = PREFERRED_DEBUGGING_TYPE;
1476 }
1477 else
1478 debug_info_level = DINFO_LEVEL_NONE;
1479 }
1480
1481 if (flag_dump_final_insns && !flag_syntax_only && !no_backend)
1482 {
1483 FILE *final_output = fopen (flag_dump_final_insns, "w");
1484 if (!final_output)
1485 {
1486 error_at (UNKNOWN_LOCATION,
1487 "could not open final insn dump file %qs: %m",
1488 flag_dump_final_insns);
1489 flag_dump_final_insns = NULL;
1490 }
1491 else if (fclose (final_output))
1492 {
1493 error_at (UNKNOWN_LOCATION,
1494 "could not close zeroed insn dump file %qs: %m",
1495 flag_dump_final_insns);
1496 flag_dump_final_insns = NULL;
1497 }
1498 }
1499
1500 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1501 level is 0. */
1502 if (debug_info_level == DINFO_LEVEL_NONE)
1503 write_symbols = NO_DEBUG;
1504
1505 if (write_symbols == NO_DEBUG)
1506 ;
1507 #if defined(DBX_DEBUGGING_INFO)
1508 else if (write_symbols == DBX_DEBUG)
1509 debug_hooks = &dbx_debug_hooks;
1510 #endif
1511 #if defined(XCOFF_DEBUGGING_INFO)
1512 else if (write_symbols == XCOFF_DEBUG)
1513 debug_hooks = &xcoff_debug_hooks;
1514 #endif
1515 #ifdef DWARF2_DEBUGGING_INFO
1516 else if (write_symbols == DWARF2_DEBUG)
1517 debug_hooks = &dwarf2_debug_hooks;
1518 #endif
1519 #ifdef VMS_DEBUGGING_INFO
1520 else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1521 debug_hooks = &vmsdbg_debug_hooks;
1522 #endif
1523 #ifdef DWARF2_LINENO_DEBUGGING_INFO
1524 else if (write_symbols == DWARF2_DEBUG)
1525 debug_hooks = &dwarf2_lineno_debug_hooks;
1526 #endif
1527 else
1528 error_at (UNKNOWN_LOCATION,
1529 "target system does not support the %qs debug format",
1530 debug_type_names[write_symbols]);
1531
1532 /* We know which debug output will be used so we can set flag_var_tracking
1533 and flag_var_tracking_uninit if the user has not specified them. */
1534 if (debug_info_level < DINFO_LEVEL_NORMAL
1535 || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1536 {
1537 if (flag_var_tracking == 1
1538 || flag_var_tracking_uninit == 1)
1539 {
1540 if (debug_info_level < DINFO_LEVEL_NORMAL)
1541 warning_at (UNKNOWN_LOCATION, 0,
1542 "variable tracking requested, but useless unless "
1543 "producing debug info");
1544 else
1545 warning_at (UNKNOWN_LOCATION, 0,
1546 "variable tracking requested, but not supported "
1547 "by this debug format");
1548 }
1549 flag_var_tracking = 0;
1550 flag_var_tracking_uninit = 0;
1551 }
1552
1553 /* The debug hooks are used to implement -fdump-go-spec because it
1554 gives a simple and stable API for all the information we need to
1555 dump. */
1556 if (flag_dump_go_spec != NULL)
1557 debug_hooks = dump_go_spec_init (flag_dump_go_spec, debug_hooks);
1558
1559 /* If the user specifically requested variable tracking with tagging
1560 uninitialized variables, we need to turn on variable tracking.
1561 (We already determined above that variable tracking is feasible.) */
1562 if (flag_var_tracking_uninit == 1)
1563 flag_var_tracking = 1;
1564
1565 if (flag_var_tracking == AUTODETECT_VALUE)
1566 flag_var_tracking = optimize >= 1;
1567
1568 if (flag_var_tracking_uninit == AUTODETECT_VALUE)
1569 flag_var_tracking_uninit = flag_var_tracking;
1570
1571 if (flag_var_tracking_assignments == AUTODETECT_VALUE)
1572 flag_var_tracking_assignments
1573 = (flag_var_tracking
1574 && !(flag_selective_scheduling || flag_selective_scheduling2));
1575
1576 if (flag_var_tracking_assignments_toggle)
1577 flag_var_tracking_assignments = !flag_var_tracking_assignments;
1578
1579 if (flag_var_tracking_assignments && !flag_var_tracking)
1580 flag_var_tracking = flag_var_tracking_assignments = -1;
1581
1582 if (flag_var_tracking_assignments
1583 && (flag_selective_scheduling || flag_selective_scheduling2))
1584 warning_at (UNKNOWN_LOCATION, 0,
1585 "var-tracking-assignments changes selective scheduling");
1586
1587 if (debug_nonbind_markers_p == AUTODETECT_VALUE)
1588 debug_nonbind_markers_p
1589 = (optimize
1590 && debug_info_level >= DINFO_LEVEL_NORMAL
1591 && (write_symbols == DWARF2_DEBUG
1592 || write_symbols == VMS_AND_DWARF2_DEBUG)
1593 && !(flag_selective_scheduling || flag_selective_scheduling2));
1594
1595 if (dwarf2out_as_loc_support == AUTODETECT_VALUE)
1596 dwarf2out_as_loc_support
1597 = dwarf2out_default_as_loc_support ();
1598 if (dwarf2out_as_locview_support == AUTODETECT_VALUE)
1599 dwarf2out_as_locview_support
1600 = dwarf2out_default_as_locview_support ();
1601
1602 if (debug_variable_location_views == AUTODETECT_VALUE)
1603 {
1604 debug_variable_location_views
1605 = (flag_var_tracking
1606 && debug_info_level >= DINFO_LEVEL_NORMAL
1607 && (write_symbols == DWARF2_DEBUG
1608 || write_symbols == VMS_AND_DWARF2_DEBUG)
1609 && !dwarf_strict
1610 && dwarf2out_as_loc_support
1611 && dwarf2out_as_locview_support);
1612 }
1613 else if (debug_variable_location_views == -1 && dwarf_version != 5)
1614 {
1615 warning_at (UNKNOWN_LOCATION, 0,
1616 "without -gdwarf-5, -gvariable-location-views=incompat5 "
1617 "is equivalent to -gvariable-location-views");
1618 debug_variable_location_views = 1;
1619 }
1620
1621 if (debug_internal_reset_location_views == 2)
1622 {
1623 debug_internal_reset_location_views
1624 = (debug_variable_location_views
1625 && targetm.reset_location_view);
1626 }
1627 else if (debug_internal_reset_location_views
1628 && !debug_variable_location_views)
1629 {
1630 warning_at (UNKNOWN_LOCATION, 0,
1631 "-ginternal-reset-location-views is forced disabled "
1632 "without -gvariable-location-views");
1633 debug_internal_reset_location_views = 0;
1634 }
1635
1636 if (debug_inline_points == AUTODETECT_VALUE)
1637 debug_inline_points = debug_variable_location_views;
1638 else if (debug_inline_points && !debug_nonbind_markers_p)
1639 {
1640 warning_at (UNKNOWN_LOCATION, 0,
1641 "-ginline-points is forced disabled without "
1642 "-gstatement-frontiers");
1643 debug_inline_points = 0;
1644 }
1645
1646 if (flag_tree_cselim == AUTODETECT_VALUE)
1647 {
1648 if (HAVE_conditional_move)
1649 flag_tree_cselim = 1;
1650 else
1651 flag_tree_cselim = 0;
1652 }
1653
1654 /* If auxiliary info generation is desired, open the output file.
1655 This goes in the same directory as the source file--unlike
1656 all the other output files. */
1657 if (flag_gen_aux_info)
1658 {
1659 aux_info_file = fopen (aux_info_file_name, "w");
1660 if (aux_info_file == 0)
1661 fatal_error (UNKNOWN_LOCATION,
1662 "can%'t open %s: %m", aux_info_file_name);
1663 }
1664
1665 if (!targetm_common.have_named_sections)
1666 {
1667 if (flag_function_sections)
1668 {
1669 warning_at (UNKNOWN_LOCATION, 0,
1670 "-ffunction-sections not supported for this target");
1671 flag_function_sections = 0;
1672 }
1673 if (flag_data_sections)
1674 {
1675 warning_at (UNKNOWN_LOCATION, 0,
1676 "-fdata-sections not supported for this target");
1677 flag_data_sections = 0;
1678 }
1679 }
1680
1681 if (flag_prefetch_loop_arrays > 0 && !targetm.code_for_prefetch)
1682 {
1683 warning_at (UNKNOWN_LOCATION, 0,
1684 "-fprefetch-loop-arrays not supported for this target");
1685 flag_prefetch_loop_arrays = 0;
1686 }
1687 else if (flag_prefetch_loop_arrays > 0 && !targetm.have_prefetch ())
1688 {
1689 warning_at (UNKNOWN_LOCATION, 0,
1690 "-fprefetch-loop-arrays not supported for this target "
1691 "(try -march switches)");
1692 flag_prefetch_loop_arrays = 0;
1693 }
1694
1695 /* This combination of options isn't handled for i386 targets and doesn't
1696 make much sense anyway, so don't allow it. */
1697 if (flag_prefetch_loop_arrays > 0 && optimize_size)
1698 {
1699 warning_at (UNKNOWN_LOCATION, 0,
1700 "-fprefetch-loop-arrays is not supported with -Os");
1701 flag_prefetch_loop_arrays = 0;
1702 }
1703
1704 /* The presence of IEEE signaling NaNs, implies all math can trap. */
1705 if (flag_signaling_nans)
1706 flag_trapping_math = 1;
1707
1708 /* We cannot reassociate if we want traps or signed zeros. */
1709 if (flag_associative_math && (flag_trapping_math || flag_signed_zeros))
1710 {
1711 warning_at (UNKNOWN_LOCATION, 0,
1712 "-fassociative-math disabled; other options take "
1713 "precedence");
1714 flag_associative_math = 0;
1715 }
1716
1717 /* -fstack-clash-protection is not currently supported on targets
1718 where the stack grows up. */
1719 if (flag_stack_clash_protection && !STACK_GROWS_DOWNWARD)
1720 {
1721 warning_at (UNKNOWN_LOCATION, 0,
1722 "%<-fstack-clash-protection%> is not supported on targets "
1723 "where the stack grows from lower to higher addresses");
1724 flag_stack_clash_protection = 0;
1725 }
1726
1727 /* We can not support -fstack-check= and -fstack-clash-protection at
1728 the same time. */
1729 if (flag_stack_check != NO_STACK_CHECK && flag_stack_clash_protection)
1730 {
1731 warning_at (UNKNOWN_LOCATION, 0,
1732 "%<-fstack-check=%> and %<-fstack-clash_protection%> are "
1733 "mutually exclusive. Disabling %<-fstack-check=%>");
1734 flag_stack_check = NO_STACK_CHECK;
1735 }
1736
1737 /* With -fcx-limited-range, we do cheap and quick complex arithmetic. */
1738 if (flag_cx_limited_range)
1739 flag_complex_method = 0;
1740
1741 /* With -fcx-fortran-rules, we do something in-between cheap and C99. */
1742 if (flag_cx_fortran_rules)
1743 flag_complex_method = 1;
1744
1745 /* Targets must be able to place spill slots at lower addresses. If the
1746 target already uses a soft frame pointer, the transition is trivial. */
1747 if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
1748 {
1749 warning_at (UNKNOWN_LOCATION, 0,
1750 "-fstack-protector not supported for this target");
1751 flag_stack_protect = 0;
1752 }
1753 if (!flag_stack_protect)
1754 warn_stack_protect = 0;
1755
1756 /* Address Sanitizer needs porting to each target architecture. */
1757
1758 if ((flag_sanitize & SANITIZE_ADDRESS)
1759 && !FRAME_GROWS_DOWNWARD)
1760 {
1761 warning_at (UNKNOWN_LOCATION, 0,
1762 "-fsanitize=address and -fsanitize=kernel-address "
1763 "are not supported for this target");
1764 flag_sanitize &= ~SANITIZE_ADDRESS;
1765 }
1766
1767 if ((flag_sanitize & SANITIZE_USER_ADDRESS)
1768 && targetm.asan_shadow_offset == NULL)
1769 {
1770 warning_at (UNKNOWN_LOCATION, 0,
1771 "-fsanitize=address not supported for this target");
1772 flag_sanitize &= ~SANITIZE_ADDRESS;
1773 }
1774
1775 /* Do not use IPA optimizations for register allocation if profiler is active
1776 or patchable function entries are inserted for run-time instrumentation
1777 or port does not emit prologue and epilogue as RTL. */
1778 if (profile_flag || function_entry_patch_area_size
1779 || !targetm.have_prologue () || !targetm.have_epilogue ())
1780 flag_ipa_ra = 0;
1781
1782 /* Enable -Werror=coverage-mismatch when -Werror and -Wno-error
1783 have not been set. */
1784 if (!global_options_set.x_warnings_are_errors
1785 && warn_coverage_mismatch
1786 && (global_dc->classify_diagnostic[OPT_Wcoverage_mismatch] ==
1787 DK_UNSPECIFIED))
1788 diagnostic_classify_diagnostic (global_dc, OPT_Wcoverage_mismatch,
1789 DK_ERROR, UNKNOWN_LOCATION);
1790
1791 /* Save the current optimization options. */
1792 optimization_default_node = build_optimization_node (&global_options);
1793 optimization_current_node = optimization_default_node;
1794
1795 /* Please don't change global_options after this point, those changes won't
1796 be reflected in optimization_{default,current}_node. */
1797 }
1798
1799 /* This function can be called multiple times to reinitialize the compiler
1800 back end when register classes or instruction sets have changed,
1801 before each function. */
1802 static void
1803 backend_init_target (void)
1804 {
1805 /* This depends on stack_pointer_rtx. */
1806 init_fake_stack_mems ();
1807
1808 /* Sets static_base_value[HARD_FRAME_POINTER_REGNUM], which is
1809 mode-dependent. */
1810 init_alias_target ();
1811
1812 /* Depends on HARD_FRAME_POINTER_REGNUM. */
1813 if (!ira_use_lra_p)
1814 init_reload ();
1815
1816 /* Depends on the enabled attribute. */
1817 recog_init ();
1818
1819 /* The following initialization functions need to generate rtl, so
1820 provide a dummy function context for them. */
1821 init_dummy_function_start ();
1822
1823 /* rtx_cost is mode-dependent, so cached values need to be recomputed
1824 on a mode change. */
1825 init_expmed ();
1826 init_lower_subreg ();
1827 init_set_costs ();
1828
1829 init_expr_target ();
1830 ira_init ();
1831
1832 /* We may need to recompute regno_save_code[] and regno_restore_code[]
1833 after a mode change as well. */
1834 caller_save_initialized_p = false;
1835
1836 expand_dummy_function_end ();
1837 }
1838
1839 /* Initialize the compiler back end. This function is called only once,
1840 when starting the compiler. */
1841 static void
1842 backend_init (void)
1843 {
1844 init_emit_once ();
1845
1846 init_rtlanal ();
1847 init_inline_once ();
1848 init_varasm_once ();
1849 save_register_info ();
1850
1851 /* Middle end needs this initialization for default mem attributes
1852 used by early calls to make_decl_rtl. */
1853 init_emit_regs ();
1854
1855 /* Middle end needs this initialization for mode tables used to assign
1856 modes to vector variables. */
1857 init_regs ();
1858 }
1859
1860 /* Initialize excess precision settings.
1861
1862 We have no need to modify anything here, just keep track of what the
1863 user requested. We'll figure out any appropriate relaxations
1864 later. */
1865
1866 static void
1867 init_excess_precision (void)
1868 {
1869 gcc_assert (flag_excess_precision_cmdline != EXCESS_PRECISION_DEFAULT);
1870 flag_excess_precision = flag_excess_precision_cmdline;
1871 }
1872
1873 /* Initialize things that are both lang-dependent and target-dependent.
1874 This function can be called more than once if target parameters change. */
1875 static void
1876 lang_dependent_init_target (void)
1877 {
1878 /* This determines excess precision settings. */
1879 init_excess_precision ();
1880
1881 /* This creates various _DECL nodes, so needs to be called after the
1882 front end is initialized. It also depends on the HAVE_xxx macros
1883 generated from the target machine description. */
1884 init_optabs ();
1885
1886 gcc_assert (!this_target_rtl->target_specific_initialized);
1887 }
1888
1889 /* Perform initializations that are lang-dependent or target-dependent.
1890 but matters only for late optimizations and RTL generation. */
1891
1892 static int rtl_initialized;
1893
1894 void
1895 initialize_rtl (void)
1896 {
1897 auto_timevar tv (g_timer, TV_INITIALIZE_RTL);
1898
1899 /* Initialization done just once per compilation, but delayed
1900 till code generation. */
1901 if (!rtl_initialized)
1902 ira_init_once ();
1903 rtl_initialized = true;
1904
1905 /* Target specific RTL backend initialization. */
1906 if (!this_target_rtl->target_specific_initialized)
1907 {
1908 backend_init_target ();
1909 this_target_rtl->target_specific_initialized = true;
1910 }
1911 }
1912
1913 /* Language-dependent initialization. Returns nonzero on success. */
1914 static int
1915 lang_dependent_init (const char *name)
1916 {
1917 location_t save_loc = input_location;
1918 if (dump_base_name == 0)
1919 dump_base_name = name && name[0] ? name : "gccdump";
1920
1921 /* Other front-end initialization. */
1922 input_location = BUILTINS_LOCATION;
1923 if (lang_hooks.init () == 0)
1924 return 0;
1925 input_location = save_loc;
1926
1927 if (!flag_wpa)
1928 {
1929 init_asm_output (name);
1930
1931 /* If stack usage information is desired, open the output file. */
1932 if (flag_stack_usage)
1933 stack_usage_file = open_auxiliary_file ("su");
1934 }
1935
1936 /* This creates various _DECL nodes, so needs to be called after the
1937 front end is initialized. */
1938 init_eh ();
1939
1940 /* Do the target-specific parts of the initialization. */
1941 lang_dependent_init_target ();
1942
1943 if (!flag_wpa)
1944 {
1945 /* If dbx symbol table desired, initialize writing it and output the
1946 predefined types. */
1947 timevar_push (TV_SYMOUT);
1948
1949 /* Now we have the correct original filename, we can initialize
1950 debug output. */
1951 (*debug_hooks->init) (name);
1952
1953 timevar_pop (TV_SYMOUT);
1954 }
1955
1956 return 1;
1957 }
1958
1959
1960 /* Reinitialize everything when target parameters, such as register usage,
1961 have changed. */
1962 void
1963 target_reinit (void)
1964 {
1965 struct rtl_data saved_x_rtl;
1966 rtx *saved_regno_reg_rtx;
1967 tree saved_optimization_current_node;
1968 struct target_optabs *saved_this_fn_optabs;
1969
1970 /* Temporarily switch to the default optimization node, so that
1971 *this_target_optabs is set to the default, not reflecting
1972 whatever a previous function used for the optimize
1973 attribute. */
1974 saved_optimization_current_node = optimization_current_node;
1975 saved_this_fn_optabs = this_fn_optabs;
1976 if (saved_optimization_current_node != optimization_default_node)
1977 {
1978 optimization_current_node = optimization_default_node;
1979 cl_optimization_restore
1980 (&global_options,
1981 TREE_OPTIMIZATION (optimization_default_node));
1982 }
1983 this_fn_optabs = this_target_optabs;
1984
1985 /* Save *crtl and regno_reg_rtx around the reinitialization
1986 to allow target_reinit being called even after prepare_function_start. */
1987 saved_regno_reg_rtx = regno_reg_rtx;
1988 if (saved_regno_reg_rtx)
1989 {
1990 saved_x_rtl = *crtl;
1991 memset (crtl, '\0', sizeof (*crtl));
1992 regno_reg_rtx = NULL;
1993 }
1994
1995 this_target_rtl->target_specific_initialized = false;
1996
1997 /* This initializes hard_frame_pointer, and calls init_reg_modes_target()
1998 to initialize reg_raw_mode[]. */
1999 init_emit_regs ();
2000
2001 /* This invokes target hooks to set fixed_reg[] etc, which is
2002 mode-dependent. */
2003 init_regs ();
2004
2005 /* Reinitialize lang-dependent parts. */
2006 lang_dependent_init_target ();
2007
2008 /* Restore the original optimization node. */
2009 if (saved_optimization_current_node != optimization_default_node)
2010 {
2011 optimization_current_node = saved_optimization_current_node;
2012 cl_optimization_restore (&global_options,
2013 TREE_OPTIMIZATION (optimization_current_node));
2014 }
2015 this_fn_optabs = saved_this_fn_optabs;
2016
2017 /* Restore regno_reg_rtx at the end, as free_after_compilation from
2018 expand_dummy_function_end clears it. */
2019 if (saved_regno_reg_rtx)
2020 {
2021 *crtl = saved_x_rtl;
2022 regno_reg_rtx = saved_regno_reg_rtx;
2023 saved_regno_reg_rtx = NULL;
2024 }
2025 }
2026
2027 void
2028 dump_memory_report (bool final)
2029 {
2030 dump_line_table_statistics ();
2031 ggc_print_statistics ();
2032 stringpool_statistics ();
2033 dump_tree_statistics ();
2034 dump_gimple_statistics ();
2035 dump_rtx_statistics ();
2036 dump_alloc_pool_statistics ();
2037 dump_bitmap_statistics ();
2038 dump_hash_table_loc_statistics ();
2039 dump_vec_loc_statistics ();
2040 dump_ggc_loc_statistics (final);
2041 dump_alias_stats (stderr);
2042 dump_pta_stats (stderr);
2043 }
2044
2045 /* Clean up: close opened files, etc. */
2046
2047 static void
2048 finalize (bool no_backend)
2049 {
2050 /* Close the dump files. */
2051 if (flag_gen_aux_info)
2052 {
2053 fclose (aux_info_file);
2054 aux_info_file = NULL;
2055 if (seen_error ())
2056 unlink (aux_info_file_name);
2057 }
2058
2059 /* Close non-debugging input and output files. Take special care to note
2060 whether fclose returns an error, since the pages might still be on the
2061 buffer chain while the file is open. */
2062
2063 if (asm_out_file)
2064 {
2065 if (ferror (asm_out_file) != 0)
2066 fatal_error (input_location, "error writing to %s: %m", asm_file_name);
2067 if (fclose (asm_out_file) != 0)
2068 fatal_error (input_location, "error closing %s: %m", asm_file_name);
2069 asm_out_file = NULL;
2070 }
2071
2072 if (stack_usage_file)
2073 {
2074 fclose (stack_usage_file);
2075 stack_usage_file = NULL;
2076 }
2077
2078 if (seen_error ())
2079 coverage_remove_note_file ();
2080
2081 if (!no_backend)
2082 {
2083 statistics_fini ();
2084
2085 g->get_passes ()->finish_optimization_passes ();
2086
2087 lra_finish_once ();
2088 }
2089
2090 if (mem_report)
2091 dump_memory_report (true);
2092
2093 if (profile_report)
2094 dump_profile_report ();
2095
2096 /* Language-specific end of compilation actions. */
2097 lang_hooks.finish ();
2098 }
2099
2100 static bool
2101 standard_type_bitsize (int bitsize)
2102 {
2103 /* As a special exception, we always want __int128 enabled if possible. */
2104 if (bitsize == 128)
2105 return false;
2106 if (bitsize == CHAR_TYPE_SIZE
2107 || bitsize == SHORT_TYPE_SIZE
2108 || bitsize == INT_TYPE_SIZE
2109 || bitsize == LONG_TYPE_SIZE
2110 || bitsize == LONG_LONG_TYPE_SIZE)
2111 return true;
2112 return false;
2113 }
2114
2115 /* Initialize the compiler, and compile the input file. */
2116 static void
2117 do_compile ()
2118 {
2119 process_options ();
2120
2121 /* Don't do any more if an error has already occurred. */
2122 if (!seen_error ())
2123 {
2124 int i;
2125
2126 timevar_start (TV_PHASE_SETUP);
2127
2128 optimization_records_start ();
2129
2130 /* This must be run always, because it is needed to compute the FP
2131 predefined macros, such as __LDBL_MAX__, for targets using non
2132 default FP formats. */
2133 init_adjust_machine_modes ();
2134 init_derived_machine_modes ();
2135
2136 /* This must happen after the backend has a chance to process
2137 command line options, but before the parsers are
2138 initialized. */
2139 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2140 if (targetm.scalar_mode_supported_p (int_n_data[i].m)
2141 && ! standard_type_bitsize (int_n_data[i].bitsize))
2142 int_n_enabled_p[i] = true;
2143 else
2144 int_n_enabled_p[i] = false;
2145
2146 /* Set up the back-end if requested. */
2147 if (!no_backend)
2148 backend_init ();
2149
2150 /* Language-dependent initialization. Returns true on success. */
2151 if (lang_dependent_init (main_input_filename))
2152 {
2153 /* Initialize yet another pass. */
2154
2155 ggc_protect_identifiers = true;
2156
2157 symtab->initialize ();
2158 init_final (main_input_filename);
2159 coverage_init (aux_base_name);
2160 statistics_init ();
2161 invoke_plugin_callbacks (PLUGIN_START_UNIT, NULL);
2162
2163 timevar_stop (TV_PHASE_SETUP);
2164
2165 compile_file ();
2166 }
2167 else
2168 {
2169 timevar_stop (TV_PHASE_SETUP);
2170 }
2171
2172 timevar_start (TV_PHASE_FINALIZE);
2173
2174 finalize (no_backend);
2175
2176 timevar_stop (TV_PHASE_FINALIZE);
2177 }
2178 }
2179
2180 toplev::toplev (timer *external_timer,
2181 bool init_signals)
2182 : m_use_TV_TOTAL (external_timer == NULL),
2183 m_init_signals (init_signals)
2184 {
2185 if (external_timer)
2186 g_timer = external_timer;
2187 }
2188
2189 toplev::~toplev ()
2190 {
2191 if (g_timer && m_use_TV_TOTAL)
2192 {
2193 g_timer->stop (TV_TOTAL);
2194 g_timer->print (stderr);
2195 delete g_timer;
2196 g_timer = NULL;
2197 }
2198 }
2199
2200 /* Potentially call timevar_init (which will create g_timevars if it
2201 doesn't already exist). */
2202
2203 void
2204 toplev::start_timevars ()
2205 {
2206 if (time_report || !quiet_flag || flag_detailed_statistics)
2207 timevar_init ();
2208
2209 timevar_start (TV_TOTAL);
2210 }
2211
2212 /* Handle -fself-test. */
2213
2214 void
2215 toplev::run_self_tests ()
2216 {
2217 if (no_backend)
2218 {
2219 error_at (UNKNOWN_LOCATION, "self-tests incompatible with -E");
2220 return;
2221 }
2222 #if CHECKING_P
2223 /* Reset some state. */
2224 input_location = UNKNOWN_LOCATION;
2225 bitmap_obstack_initialize (NULL);
2226
2227 /* Run the tests; any failures will lead to an abort of the process.
2228 Use "make selftests-gdb" to run under the debugger. */
2229 ::selftest::run_tests ();
2230
2231 /* Cleanup. */
2232 bitmap_obstack_release (NULL);
2233 #else
2234 inform (UNKNOWN_LOCATION, "self-tests are not enabled in this build");
2235 #endif /* #if CHECKING_P */
2236 }
2237
2238 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2239 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2240 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2241
2242 It is not safe to call this function more than once. */
2243
2244 int
2245 toplev::main (int argc, char **argv)
2246 {
2247 /* Parsing and gimplification sometimes need quite large stack.
2248 Increase stack size limits if possible. */
2249 stack_limit_increase (64 * 1024 * 1024);
2250
2251 expandargv (&argc, &argv);
2252
2253 /* Initialization of GCC's environment, and diagnostics. */
2254 general_init (argv[0], m_init_signals);
2255
2256 /* One-off initialization of options that does not need to be
2257 repeated when options are added for particular functions. */
2258 init_options_once ();
2259 init_opts_obstack ();
2260
2261 /* Initialize global options structures; this must be repeated for
2262 each structure used for parsing options. */
2263 init_options_struct (&global_options, &global_options_set);
2264 lang_hooks.init_options_struct (&global_options);
2265
2266 /* Convert the options to an array. */
2267 decode_cmdline_options_to_array_default_mask (argc,
2268 CONST_CAST2 (const char **,
2269 char **, argv),
2270 &save_decoded_options,
2271 &save_decoded_options_count);
2272
2273 /* Perform language-specific options initialization. */
2274 lang_hooks.init_options (save_decoded_options_count, save_decoded_options);
2275
2276 /* Parse the options and do minimal processing; basically just
2277 enough to default flags appropriately. */
2278 decode_options (&global_options, &global_options_set,
2279 save_decoded_options, save_decoded_options_count,
2280 UNKNOWN_LOCATION, global_dc,
2281 targetm.target_option.override);
2282
2283 handle_common_deferred_options ();
2284
2285 init_local_tick ();
2286
2287 initialize_plugins ();
2288
2289 if (version_flag)
2290 print_version (stderr, "", true);
2291
2292 if (help_flag)
2293 print_plugins_help (stderr, "");
2294
2295 /* Exit early if we can (e.g. -help). */
2296 if (!exit_after_options)
2297 {
2298 if (m_use_TV_TOTAL)
2299 start_timevars ();
2300 do_compile ();
2301 }
2302
2303 if (warningcount || errorcount || werrorcount)
2304 print_ignored_options ();
2305
2306 if (flag_self_test)
2307 run_self_tests ();
2308
2309 /* Invoke registered plugin callbacks if any. Some plugins could
2310 emit some diagnostics here. */
2311 invoke_plugin_callbacks (PLUGIN_FINISH, NULL);
2312
2313 if (flag_diagnostics_generate_patch)
2314 {
2315 gcc_assert (global_dc->edit_context_ptr);
2316
2317 pretty_printer pp;
2318 pp_show_color (&pp) = pp_show_color (global_dc->printer);
2319 global_dc->edit_context_ptr->print_diff (&pp, true);
2320 pp_flush (&pp);
2321 }
2322
2323 diagnostic_finish (global_dc);
2324
2325 finalize_plugins ();
2326
2327 after_memory_report = true;
2328
2329 if (seen_error () || werrorcount)
2330 return (FATAL_EXIT_CODE);
2331
2332 return (SUCCESS_EXIT_CODE);
2333 }
2334
2335 /* For those that want to, this function aims to clean up enough state that
2336 you can call toplev::main again. */
2337 void
2338 toplev::finalize (void)
2339 {
2340 rtl_initialized = false;
2341 this_target_rtl->target_specific_initialized = false;
2342
2343 /* Needs to be called before cgraph_c_finalize since it uses symtab. */
2344 ipa_reference_c_finalize ();
2345 ipa_fnsummary_c_finalize ();
2346
2347 cgraph_c_finalize ();
2348 cgraphunit_c_finalize ();
2349 dwarf2out_c_finalize ();
2350 gcse_c_finalize ();
2351 ipa_cp_c_finalize ();
2352 ira_costs_c_finalize ();
2353 params_c_finalize ();
2354
2355 finalize_options_struct (&global_options);
2356 finalize_options_struct (&global_options_set);
2357
2358 /* save_decoded_options uses opts_obstack, so these must
2359 be cleaned up together. */
2360 obstack_free (&opts_obstack, NULL);
2361 XDELETEVEC (save_decoded_options);
2362 save_decoded_options = NULL;
2363 save_decoded_options_count = 0;
2364
2365 /* Clean up the context (and pass_manager etc). */
2366 delete g;
2367 g = NULL;
2368
2369 }