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