re PR c/7652 (-Wswitch-break : Warn if a switch case falls through)
[platform/upstream/gcc.git] / gcc / toplev.c
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2    Copyright (C) 1987-2016 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 "tm_p.h"
36 #include "optabs-libfuncs.h"
37 #include "insn-config.h"
38 #include "ira.h"
39 #include "recog.h"
40 #include "cgraph.h"
41 #include "coverage.h"
42 #include "diagnostic.h"
43 #include "varasm.h"
44 #include "tree-inline.h"
45 #include "realmpfr.h"   /* For GMP/MPFR/MPC versions, in print_version.  */
46 #include "version.h"
47 #include "flags.h"
48 #include "insn-attr.h"
49 #include "output.h"
50 #include "toplev.h"
51 #include "expr.h"
52 #include "intl.h"
53 #include "tree-diagnostic.h"
54 #include "params.h"
55 #include "reload.h"
56 #include "lra.h"
57 #include "dwarf2asm.h"
58 #include "debug.h"
59 #include "common/common-target.h"
60 #include "langhooks.h"
61 #include "cfgloop.h" /* for init_set_costs */
62 #include "hosthooks.h"
63 #include "opts.h"
64 #include "opts-diagnostic.h"
65 #include "asan.h"
66 #include "tsan.h"
67 #include "plugin.h"
68 #include "context.h"
69 #include "pass_manager.h"
70 #include "auto-profile.h"
71 #include "dwarf2out.h"
72 #include "ipa-reference.h"
73 #include "symbol-summary.h"
74 #include "ipa-prop.h"
75 #include "gcse.h"
76 #include "tree-chkp.h"
77 #include "omp-low.h"
78 #include "hsa.h"
79
80 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
81 #include "dbxout.h"
82 #endif
83
84 #include "sdbout.h"
85
86 #ifdef XCOFF_DEBUGGING_INFO
87 #include "xcoffout.h"           /* Needed for external data declarations. */
88 #endif
89
90 #include "selftest.h"
91
92 static void general_init (const char *, bool);
93 static void do_compile ();
94 static void process_options (void);
95 static void backend_init (void);
96 static int lang_dependent_init (const char *);
97 static void init_asm_output (const char *);
98 static void finalize (bool);
99
100 static void crash_signal (int) ATTRIBUTE_NORETURN;
101 static void compile_file (void);
102
103 /* True if we don't need a backend (e.g. preprocessing only).  */
104 static bool no_backend;
105
106 /* Length of line when printing switch values.  */
107 #define MAX_LINE 75
108
109 /* Decoded options, and number of such options.  */
110 struct cl_decoded_option *save_decoded_options;
111 unsigned int save_decoded_options_count;
112
113 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
114    to optimize in process_options ().  */
115 #define AUTODETECT_VALUE 2
116
117 /* Debug hooks - dependent upon command line options.  */
118
119 const struct gcc_debug_hooks *debug_hooks;
120
121 /* The FUNCTION_DECL for the function currently being compiled,
122    or 0 if between functions.  */
123 tree current_function_decl;
124
125 /* Set to the FUNC_BEGIN label of the current function, or NULL
126    if none.  */
127 const char * current_function_func_begin_label;
128
129 /* A random sequence of characters, unless overridden by user.  */
130 static const char *flag_random_seed;
131
132 /* A local time stamp derived from the time of compilation. It will be
133    zero if the system cannot provide a time.  It will be -1u, if the
134    user has specified a particular random seed.  */
135 unsigned local_tick;
136
137 /* Random number for this compilation */
138 HOST_WIDE_INT random_seed;
139
140 /* -f flags.  */
141
142 /* When non-NULL, indicates that whenever space is allocated on the
143    stack, the resulting stack pointer must not pass this
144    address---that is, for stacks that grow downward, the stack pointer
145    must always be greater than or equal to this address; for stacks
146    that grow upward, the stack pointer must be less than this address.
147    At present, the rtx may be either a REG or a SYMBOL_REF, although
148    the support provided depends on the backend.  */
149 rtx stack_limit_rtx;
150
151 /* True if the user has tagged the function with the 'section'
152    attribute.  */
153
154 bool user_defined_section_attribute = false;
155
156 struct target_flag_state default_target_flag_state;
157 #if SWITCHABLE_TARGET
158 struct target_flag_state *this_target_flag_state = &default_target_flag_state;
159 #else
160 #define this_target_flag_state (&default_target_flag_state)
161 #endif
162
163 /* The user symbol prefix after having resolved same.  */
164 const char *user_label_prefix;
165
166 /* Output files for assembler code (real compiler output)
167    and debugging dumps.  */
168
169 FILE *asm_out_file;
170 FILE *aux_info_file;
171 FILE *stack_usage_file = NULL;
172
173 /* The current working directory of a translation.  It's generally the
174    directory from which compilation was initiated, but a preprocessed
175    file may specify the original directory in which it was
176    created.  */
177
178 static const char *src_pwd;
179
180 /* Initialize src_pwd with the given string, and return true.  If it
181    was already initialized, return false.  As a special case, it may
182    be called with a NULL argument to test whether src_pwd has NOT been
183    initialized yet.  */
184
185 bool
186 set_src_pwd (const char *pwd)
187 {
188   if (src_pwd)
189     {
190       if (strcmp (src_pwd, pwd) == 0)
191         return true;
192       else
193         return false;
194     }
195
196   src_pwd = xstrdup (pwd);
197   return true;
198 }
199
200 /* Return the directory from which the translation unit was initiated,
201    in case set_src_pwd() was not called before to assign it a
202    different value.  */
203
204 const char *
205 get_src_pwd (void)
206 {
207   if (! src_pwd)
208     {
209       src_pwd = getpwd ();
210       if (!src_pwd)
211         src_pwd = ".";
212     }
213
214    return src_pwd;
215 }
216
217 /* Called when the start of a function definition is parsed,
218    this function prints on stderr the name of the function.  */
219 void
220 announce_function (tree decl)
221 {
222   if (!quiet_flag)
223     {
224       if (rtl_dump_and_exit)
225         fprintf (stderr, "%s ",
226                  identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl))));
227       else
228         fprintf (stderr, " %s",
229                  identifier_to_locale (lang_hooks.decl_printable_name (decl, 2)));
230       fflush (stderr);
231       pp_needs_newline (global_dc->printer) = true;
232       diagnostic_set_last_function (global_dc, (diagnostic_info *) NULL);
233     }
234 }
235
236 /* Initialize local_tick with a random number or -1 if
237    flag_random_seed is set.  */
238
239 static void
240 init_local_tick (void)
241 {
242   if (!flag_random_seed)
243     {
244       /* Try urandom first. Time of day is too likely to collide. 
245          In case of any error we just use the local tick. */
246
247       int fd = open ("/dev/urandom", O_RDONLY);
248       if (fd >= 0)
249         {
250           if (read (fd, &random_seed, sizeof (random_seed))
251               != sizeof (random_seed))
252             random_seed = 0;
253           close (fd);
254         }
255
256       /* Now get the tick anyways  */
257 #ifdef HAVE_GETTIMEOFDAY
258       {
259         struct timeval tv;
260
261         gettimeofday (&tv, NULL);
262         local_tick = (unsigned) tv.tv_sec * 1000 + tv.tv_usec / 1000;
263       }
264 #else
265       {
266         time_t now = time (NULL);
267
268         if (now != (time_t)-1)
269           local_tick = (unsigned) now;
270       }
271 #endif
272     }
273   else
274     local_tick = -1;
275 }
276
277 /* Set up a default flag_random_seed and local_tick, unless the user
278    already specified one.  Must be called after init_local_tick.  */
279
280 static void
281 init_random_seed (void)
282 {
283   if (!random_seed)
284     random_seed = local_tick ^ getpid ();  /* Old racey fallback method */
285 }
286
287 /* Obtain the random_seed.  Unless NOINIT, initialize it if
288    it's not provided in the command line.  */
289
290 HOST_WIDE_INT
291 get_random_seed (bool noinit)
292 {
293   if (!flag_random_seed && !noinit)
294     init_random_seed ();
295   return random_seed;
296 }
297
298 /* Modify the random_seed string to VAL.  Return its previous
299    value.  */
300
301 const char *
302 set_random_seed (const char *val)
303 {
304   const char *old = flag_random_seed;
305   flag_random_seed = val;
306   if (flag_random_seed)
307     {
308       char *endp;
309
310       /* When the driver passed in a hex number don't crc it again */
311       random_seed = strtoul (flag_random_seed, &endp, 0);
312       if (!(endp > flag_random_seed && *endp == 0))
313         random_seed = crc32_string (0, flag_random_seed);
314     }
315   return old;
316 }
317
318 /* Handler for fatal signals, such as SIGSEGV.  These are transformed
319    into ICE messages, which is much more user friendly.  In case the
320    error printer crashes, reset the signal to prevent infinite recursion.  */
321
322 static void
323 crash_signal (int signo)
324 {
325   signal (signo, SIG_DFL);
326
327   /* If we crashed while processing an ASM statement, then be a little more
328      graceful.  It's most likely the user's fault.  */
329   if (this_is_asm_operands)
330     {
331       output_operand_lossage ("unrecoverable error");
332       exit (FATAL_EXIT_CODE);
333     }
334
335   internal_error ("%s", strsignal (signo));
336 }
337
338 /* A subroutine of wrapup_global_declarations.  We've come to the end of
339    the compilation unit.  All deferred variables should be undeferred,
340    and all incomplete decls should be finalized.  */
341
342 void
343 wrapup_global_declaration_1 (tree decl)
344 {
345   /* We're not deferring this any longer.  Assignment is conditional to
346      avoid needlessly dirtying PCH pages.  */
347   if (CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_WITH_VIS)
348       && DECL_DEFER_OUTPUT (decl) != 0)
349     DECL_DEFER_OUTPUT (decl) = 0;
350
351   if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
352     lang_hooks.finish_incomplete_decl (decl);
353 }
354
355 /* A subroutine of wrapup_global_declarations.  Decide whether or not DECL
356    needs to be output.  Return true if it is output.  */
357
358 bool
359 wrapup_global_declaration_2 (tree decl)
360 {
361   if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl)
362       || (TREE_CODE (decl) == VAR_DECL && DECL_HAS_VALUE_EXPR_P (decl)))
363     return false;
364
365   /* Don't write out static consts, unless we still need them.
366
367      We also keep static consts if not optimizing (for debugging),
368      unless the user specified -fno-keep-static-consts.
369      ??? They might be better written into the debug information.
370      This is possible when using DWARF.
371
372      A language processor that wants static constants to be always
373      written out (even if it is not used) is responsible for
374      calling rest_of_decl_compilation itself.  E.g. the C front-end
375      calls rest_of_decl_compilation from finish_decl.
376      One motivation for this is that is conventional in some
377      environments to write things like:
378      static const char rcsid[] = "... version string ...";
379      intending to force the string to be in the executable.
380
381      A language processor that would prefer to have unneeded
382      static constants "optimized away" would just defer writing
383      them out until here.  E.g. C++ does this, because static
384      constants are often defined in header files.
385
386      ??? A tempting alternative (for both C and C++) would be
387      to force a constant to be written if and only if it is
388      defined in a main file, as opposed to an include file.  */
389
390   if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
391     {
392       varpool_node *node;
393       bool needed = true;
394       node = varpool_node::get (decl);
395
396       if (!node && flag_ltrans)
397         needed = false;
398       else if (node && node->definition)
399         needed = false;
400       else if (node && node->alias)
401         needed = false;
402       else if (!symtab->global_info_ready
403                && (TREE_USED (decl)
404                    || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
405         /* needed */;
406       else if (node && node->analyzed)
407         /* needed */;
408       else if (DECL_COMDAT (decl))
409         needed = false;
410       else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
411                && (optimize || !flag_keep_static_consts
412                    || DECL_ARTIFICIAL (decl)))
413         needed = false;
414
415       if (needed)
416         {
417           rest_of_decl_compilation (decl, 1, 1);
418           return true;
419         }
420     }
421
422   return false;
423 }
424
425 /* Do any final processing required for the declarations in VEC, of
426    which there are LEN.  We write out inline functions and variables
427    that have been deferred until this point, but which are required.
428    Returns nonzero if anything was put out.  */
429
430 bool
431 wrapup_global_declarations (tree *vec, int len)
432 {
433   bool reconsider, output_something = false;
434   int i;
435
436   for (i = 0; i < len; i++)
437     wrapup_global_declaration_1 (vec[i]);
438
439   /* Now emit any global variables or functions that we have been
440      putting off.  We need to loop in case one of the things emitted
441      here references another one which comes earlier in the list.  */
442   do
443     {
444       reconsider = false;
445       for (i = 0; i < len; i++)
446         reconsider |= wrapup_global_declaration_2 (vec[i]);
447       if (reconsider)
448         output_something = true;
449     }
450   while (reconsider);
451
452   return output_something;
453 }
454
455 /* Compile an entire translation unit.  Write a file of assembly
456    output and various debugging dumps.  */
457
458 static void
459 compile_file (void)
460 {
461   timevar_start (TV_PHASE_PARSING);
462   timevar_push (TV_PARSE_GLOBAL);
463
464   /* Parse entire file and generate initial debug information.  */
465   lang_hooks.parse_file ();
466
467   timevar_pop (TV_PARSE_GLOBAL);
468   timevar_stop (TV_PHASE_PARSING);
469
470   if (flag_dump_locations)
471     dump_location_info (stderr);
472
473   /* Compilation is now finished except for writing
474      what's left of the symbol table output.  */
475
476   if (flag_syntax_only || flag_wpa)
477     return;
478  
479   /* Reset maximum_field_alignment, it can be adjusted by #pragma pack
480      and this shouldn't influence any types built by the middle-end
481      from now on (like gcov_info_type).  */
482   maximum_field_alignment = initial_max_fld_align * BITS_PER_UNIT;
483
484   ggc_protect_identifiers = false;
485
486   /* Run the actual compilation process.  */
487   if (!in_lto_p)
488     {
489       timevar_start (TV_PHASE_OPT_GEN);
490       symtab->finalize_compilation_unit ();
491       timevar_stop (TV_PHASE_OPT_GEN);
492     }
493
494   /* Perform any post compilation-proper parser cleanups and
495      processing.  This is currently only needed for the C++ parser,
496      which can be hopefully cleaned up so this hook is no longer
497      necessary.  */
498   if (lang_hooks.decls.post_compilation_parsing_cleanups)
499     lang_hooks.decls.post_compilation_parsing_cleanups ();
500
501   if (seen_error ())
502     return;
503
504   timevar_start (TV_PHASE_LATE_ASM);
505
506   /* Compilation unit is finalized.  When producing non-fat LTO object, we are
507      basically finished.  */
508   if (in_lto_p || !flag_lto || flag_fat_lto_objects)
509     {
510       /* File-scope initialization for AddressSanitizer.  */
511       if (flag_sanitize & SANITIZE_ADDRESS)
512         asan_finish_file ();
513
514       if (flag_sanitize & SANITIZE_THREAD)
515         tsan_finish_file ();
516
517       if (flag_check_pointer_bounds)
518         chkp_finish_file ();
519
520       omp_finish_file ();
521
522       hsa_output_brig ();
523
524       output_shared_constant_pool ();
525       output_object_blocks ();
526       finish_tm_clone_pairs ();
527
528       /* Write out any pending weak symbol declarations.  */
529       weak_finish ();
530
531       /* This must be at the end before unwind and debug info.
532          Some target ports emit PIC setup thunks here.  */
533       targetm.asm_out.code_end ();
534
535       /* Do dbx symbols.  */
536       timevar_push (TV_SYMOUT);
537
538     #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
539       if (dwarf2out_do_frame ())
540         dwarf2out_frame_finish ();
541     #endif
542
543       (*debug_hooks->finish) (main_input_filename);
544       timevar_pop (TV_SYMOUT);
545
546       /* Output some stuff at end of file if nec.  */
547
548       dw2_output_indirect_constants ();
549
550       /* Flush any pending external directives.  */
551       process_pending_assemble_externals ();
552    }
553
554   /* Emit LTO marker if LTO info has been previously emitted.  This is
555      used by collect2 to determine whether an object file contains IL.
556      We used to emit an undefined reference here, but this produces
557      link errors if an object file with IL is stored into a shared
558      library without invoking lto1.  */
559   if (flag_generate_lto || flag_generate_offload)
560     {
561 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
562       ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, NULL_TREE,
563                                       "__gnu_lto_v1",
564                                       HOST_WIDE_INT_1U, 8);
565 #elif defined ASM_OUTPUT_ALIGNED_COMMON
566       ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, "__gnu_lto_v1",
567                                  HOST_WIDE_INT_1U, 8);
568 #else
569       ASM_OUTPUT_COMMON (asm_out_file, "__gnu_lto_v1",
570                          HOST_WIDE_INT_1U,
571                          HOST_WIDE_INT_1U);
572 #endif
573     }
574
575   /* Let linker plugin know that this is a slim object and must be LTOed
576      even when user did not ask for it.  */
577   if (flag_generate_lto && !flag_fat_lto_objects)
578     {
579 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
580       ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, NULL_TREE, "__gnu_lto_slim",
581                                       HOST_WIDE_INT_1U, 8);
582 #elif defined ASM_OUTPUT_ALIGNED_COMMON
583       ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, "__gnu_lto_slim",
584                                  HOST_WIDE_INT_1U, 8);
585 #else
586       ASM_OUTPUT_COMMON (asm_out_file, "__gnu_lto_slim",
587                          HOST_WIDE_INT_1U,
588                          HOST_WIDE_INT_1U);
589 #endif
590     }
591
592   /* Attach a special .ident directive to the end of the file to identify
593      the version of GCC which compiled this code.  The format of the .ident
594      string is patterned after the ones produced by native SVR4 compilers.  */
595   if (!flag_no_ident)
596     {
597       const char *pkg_version = "(GNU) ";
598       char *ident_str;
599
600       if (strcmp ("(GCC) ", pkgversion_string))
601         pkg_version = pkgversion_string;
602
603       ident_str = ACONCAT (("GCC: ", pkg_version, version_string, NULL));
604       targetm.asm_out.output_ident (ident_str);
605     }
606
607   /* Auto profile finalization. */
608   if (flag_auto_profile)
609     end_auto_profile ();
610
611   /* Invoke registered plugin callbacks.  */
612   invoke_plugin_callbacks (PLUGIN_FINISH_UNIT, NULL);
613
614   /* This must be at the end.  Some target ports emit end of file directives
615      into the assembly file here, and hence we can not output anything to the
616      assembly file after this point.  */
617   targetm.asm_out.file_end ();
618
619   timevar_stop (TV_PHASE_LATE_ASM);
620 }
621
622 /* Print version information to FILE.
623    Each line begins with INDENT (for the case where FILE is the
624    assembler output file).
625
626    If SHOW_GLOBAL_STATE is true (for cc1 etc), we are within the compiler
627    proper and can print pertinent state (e.g. params and plugins).
628
629    If SHOW_GLOBAL_STATE is false (for use by libgccjit), we are outside the
630    compiler, and we don't hold the mutex on the compiler's global state:
631    we can't print params and plugins, since they might not be initialized,
632    or might be being manipulated by a compile running in another
633    thread.  */
634
635 void
636 print_version (FILE *file, const char *indent, bool show_global_state)
637 {
638   static const char fmt1[] =
639 #ifdef __GNUC__
640     N_("%s%s%s %sversion %s (%s)\n%s\tcompiled by GNU C version %s, ")
641 #else
642     N_("%s%s%s %sversion %s (%s) compiled by CC, ")
643 #endif
644     ;
645   static const char fmt2[] =
646     N_("GMP version %s, MPFR version %s, MPC version %s, isl version %s\n");
647   static const char fmt3[] =
648     N_("%s%swarning: %s header version %s differs from library version %s.\n");
649   static const char fmt4[] =
650     N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
651 #ifndef __VERSION__
652 #define __VERSION__ "[?]"
653 #endif
654   fprintf (file,
655            file == stderr ? _(fmt1) : fmt1,
656            indent, *indent != 0 ? " " : "",
657            lang_hooks.name, pkgversion_string, version_string, TARGET_NAME,
658            indent, __VERSION__);
659
660   /* We need to stringify the GMP macro values.  Ugh, gmp_version has
661      two string formats, "i.j.k" and "i.j" when k is zero.  As of
662      gmp-4.3.0, GMP always uses the 3 number format.  */
663 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
664 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3 (X)
665 #define GCC_GMP_VERSION_NUM(X,Y,Z) (((X) << 16L) | ((Y) << 8) | (Z))
666 #define GCC_GMP_VERSION \
667   GCC_GMP_VERSION_NUM(__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL)
668 #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,3,0) && __GNU_MP_VERSION_PATCHLEVEL == 0
669 #define GCC_GMP_STRINGIFY_VERSION \
670   GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
671   GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR)
672 #else
673 #define GCC_GMP_STRINGIFY_VERSION \
674   GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
675   GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR) "." \
676   GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_PATCHLEVEL)
677 #endif
678   fprintf (file,
679            file == stderr ? _(fmt2) : fmt2,
680            GCC_GMP_STRINGIFY_VERSION, MPFR_VERSION_STRING, MPC_VERSION_STRING,
681 #ifndef HAVE_isl
682            "none"
683 #elif HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS
684            "0.15"
685 #else
686            "0.14 or 0.13"
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.
1158      Doing so also creates the pass manager and with it the passes.  */
1159   g = new gcc::context ();
1160   symtab = new (ggc_cleared_alloc <symbol_table> ()) symbol_table ();
1161
1162   statistics_early_init ();
1163   finish_params ();
1164 }
1165
1166 /* Return true if the current target supports -fsection-anchors.  */
1167
1168 static bool
1169 target_supports_section_anchors_p (void)
1170 {
1171   if (targetm.min_anchor_offset == 0 && targetm.max_anchor_offset == 0)
1172     return false;
1173
1174   if (targetm.asm_out.output_anchor == NULL)
1175     return false;
1176
1177   return true;
1178 }
1179
1180 /* Default the align_* variables to 1 if they're still unset, and
1181    set up the align_*_log variables.  */
1182 static void
1183 init_alignments (void)
1184 {
1185   if (align_loops <= 0)
1186     align_loops = 1;
1187   if (align_loops_max_skip > align_loops)
1188     align_loops_max_skip = align_loops - 1;
1189   align_loops_log = floor_log2 (align_loops * 2 - 1);
1190   if (align_jumps <= 0)
1191     align_jumps = 1;
1192   if (align_jumps_max_skip > align_jumps)
1193     align_jumps_max_skip = align_jumps - 1;
1194   align_jumps_log = floor_log2 (align_jumps * 2 - 1);
1195   if (align_labels <= 0)
1196     align_labels = 1;
1197   align_labels_log = floor_log2 (align_labels * 2 - 1);
1198   if (align_labels_max_skip > align_labels)
1199     align_labels_max_skip = align_labels - 1;
1200   if (align_functions <= 0)
1201     align_functions = 1;
1202   align_functions_log = floor_log2 (align_functions * 2 - 1);
1203 }
1204
1205 /* Process the options that have been parsed.  */
1206 static void
1207 process_options (void)
1208 {
1209   /* Just in case lang_hooks.post_options ends up calling a debug_hook.
1210      This can happen with incorrect pre-processed input. */
1211   debug_hooks = &do_nothing_debug_hooks;
1212
1213   maximum_field_alignment = initial_max_fld_align * BITS_PER_UNIT;
1214
1215   /* Allow the front end to perform consistency checks and do further
1216      initialization based on the command line options.  This hook also
1217      sets the original filename if appropriate (e.g. foo.i -> foo.c)
1218      so we can correctly initialize debug output.  */
1219   no_backend = lang_hooks.post_options (&main_input_filename);
1220
1221   /* Some machines may reject certain combinations of options.  */
1222   targetm.target_option.override ();
1223
1224   /* Avoid any informative notes in the second run of -fcompare-debug.  */
1225   if (flag_compare_debug) 
1226     diagnostic_inhibit_notes (global_dc);
1227
1228   if (flag_section_anchors && !target_supports_section_anchors_p ())
1229     {
1230       warning_at (UNKNOWN_LOCATION, OPT_fsection_anchors,
1231                   "this target does not support %qs",
1232                   "-fsection-anchors");
1233       flag_section_anchors = 0;
1234     }
1235
1236   if (flag_short_enums == 2)
1237     flag_short_enums = targetm.default_short_enums ();
1238
1239   /* Set aux_base_name if not already set.  */
1240   if (aux_base_name)
1241     ;
1242   else if (main_input_filename)
1243     {
1244       char *name = xstrdup (lbasename (main_input_filename));
1245
1246       strip_off_ending (name, strlen (name));
1247       aux_base_name = name;
1248     }
1249   else
1250     aux_base_name = "gccaux";
1251
1252 #ifndef HAVE_isl
1253   if (flag_graphite
1254       || flag_loop_nest_optimize
1255       || flag_graphite_identity
1256       || flag_loop_parallelize_all)
1257     sorry ("Graphite loop optimizations cannot be used (isl is not available)"
1258            "(-fgraphite, -fgraphite-identity, -floop-block, "
1259            "-floop-interchange, -floop-strip-mine, -floop-parallelize-all, "
1260            "-floop-unroll-and-jam, and -ftree-loop-linear)");
1261 #endif
1262
1263   if (flag_check_pointer_bounds)
1264     {
1265       if (targetm.chkp_bound_mode () == VOIDmode)
1266         {
1267           error_at (UNKNOWN_LOCATION,
1268                     "-fcheck-pointer-bounds is not supported for this target");
1269           flag_check_pointer_bounds = 0;
1270         }
1271
1272       if (flag_sanitize & SANITIZE_ADDRESS)
1273         {
1274           error_at (UNKNOWN_LOCATION,
1275                     "-fcheck-pointer-bounds is not supported with "
1276                     "Address Sanitizer");
1277           flag_check_pointer_bounds = 0;
1278         }
1279
1280       if (flag_sanitize & SANITIZE_BOUNDS)
1281         {
1282           error_at (UNKNOWN_LOCATION,
1283                     "-fcheck-pointer-bounds is not supported with "
1284                     "-fsanitize=bounds");
1285           flag_check_pointer_bounds = 0;
1286         }
1287
1288     }
1289
1290   /* One region RA really helps to decrease the code size.  */
1291   if (flag_ira_region == IRA_REGION_AUTODETECT)
1292     flag_ira_region
1293       = optimize_size || !optimize ? IRA_REGION_ONE : IRA_REGION_MIXED;
1294
1295   if (!abi_version_at_least (2))
1296     {
1297       /* -fabi-version=1 support was removed after GCC 4.9.  */
1298       error_at (UNKNOWN_LOCATION,
1299                 "%<-fabi-version=1%> is no longer supported");
1300       flag_abi_version = 2;
1301     }
1302
1303   /* Unrolling all loops implies that standard loop unrolling must also
1304      be done.  */
1305   if (flag_unroll_all_loops)
1306     flag_unroll_loops = 1;
1307
1308   /* web and rename-registers help when run after loop unrolling.  */
1309   if (flag_web == AUTODETECT_VALUE)
1310     flag_web = flag_unroll_loops;
1311
1312   if (flag_rename_registers == AUTODETECT_VALUE)
1313     flag_rename_registers = flag_unroll_loops;
1314
1315   if (flag_non_call_exceptions)
1316     flag_asynchronous_unwind_tables = 1;
1317   if (flag_asynchronous_unwind_tables)
1318     flag_unwind_tables = 1;
1319
1320   if (flag_value_profile_transformations)
1321     flag_profile_values = 1;
1322
1323   /* Warn about options that are not supported on this machine.  */
1324 #ifndef INSN_SCHEDULING
1325   if (flag_schedule_insns || flag_schedule_insns_after_reload)
1326     warning_at (UNKNOWN_LOCATION, 0,
1327                 "instruction scheduling not supported on this target machine");
1328 #endif
1329   if (!DELAY_SLOTS && flag_delayed_branch)
1330     warning_at (UNKNOWN_LOCATION, 0,
1331                 "this target machine does not have delayed branches");
1332
1333   user_label_prefix = USER_LABEL_PREFIX;
1334   if (flag_leading_underscore != -1)
1335     {
1336       /* If the default prefix is more complicated than "" or "_",
1337          issue a warning and ignore this option.  */
1338       if (user_label_prefix[0] == 0 ||
1339           (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1340         {
1341           user_label_prefix = flag_leading_underscore ? "_" : "";
1342         }
1343       else
1344         warning_at (UNKNOWN_LOCATION, 0,
1345                     "-f%sleading-underscore not supported on this "
1346                     "target machine", flag_leading_underscore ? "" : "no-");
1347     }
1348
1349   /* If we are in verbose mode, write out the version and maybe all the
1350      option flags in use.  */
1351   if (version_flag)
1352     {
1353       print_version (stderr, "", true);
1354       if (! quiet_flag)
1355         print_switch_values (print_to_stderr);
1356     }
1357
1358   if (flag_syntax_only)
1359     {
1360       write_symbols = NO_DEBUG;
1361       profile_flag = 0;
1362     }
1363
1364   if (flag_gtoggle)
1365     {
1366       if (debug_info_level == DINFO_LEVEL_NONE)
1367         {
1368           debug_info_level = DINFO_LEVEL_NORMAL;
1369
1370           if (write_symbols == NO_DEBUG)
1371             write_symbols = PREFERRED_DEBUGGING_TYPE;
1372         }
1373       else
1374         debug_info_level = DINFO_LEVEL_NONE;
1375     }
1376
1377   if (flag_dump_final_insns && !flag_syntax_only && !no_backend)
1378     {
1379       FILE *final_output = fopen (flag_dump_final_insns, "w");
1380       if (!final_output)
1381         {
1382           error_at (UNKNOWN_LOCATION,
1383                     "could not open final insn dump file %qs: %m",
1384                     flag_dump_final_insns);
1385           flag_dump_final_insns = NULL;
1386         }
1387       else if (fclose (final_output))
1388         {
1389           error_at (UNKNOWN_LOCATION,
1390                     "could not close zeroed insn dump file %qs: %m",
1391                     flag_dump_final_insns);
1392           flag_dump_final_insns = NULL;
1393         }
1394     }
1395
1396   /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1397      level is 0.  */
1398   if (debug_info_level == DINFO_LEVEL_NONE)
1399     write_symbols = NO_DEBUG;
1400
1401   if (write_symbols == NO_DEBUG)
1402     ;
1403 #if defined(DBX_DEBUGGING_INFO)
1404   else if (write_symbols == DBX_DEBUG)
1405     debug_hooks = &dbx_debug_hooks;
1406 #endif
1407 #if defined(XCOFF_DEBUGGING_INFO)
1408   else if (write_symbols == XCOFF_DEBUG)
1409     debug_hooks = &xcoff_debug_hooks;
1410 #endif
1411   else if (SDB_DEBUGGING_INFO && write_symbols == SDB_DEBUG)
1412     debug_hooks = &sdb_debug_hooks;
1413 #ifdef DWARF2_DEBUGGING_INFO
1414   else if (write_symbols == DWARF2_DEBUG)
1415     debug_hooks = &dwarf2_debug_hooks;
1416 #endif
1417 #ifdef VMS_DEBUGGING_INFO
1418   else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1419     debug_hooks = &vmsdbg_debug_hooks;
1420 #endif
1421 #ifdef DWARF2_LINENO_DEBUGGING_INFO
1422   else if (write_symbols == DWARF2_DEBUG)
1423     debug_hooks = &dwarf2_lineno_debug_hooks;
1424 #endif
1425   else
1426     error_at (UNKNOWN_LOCATION,
1427               "target system does not support the %qs debug format",
1428               debug_type_names[write_symbols]);
1429
1430   /* We know which debug output will be used so we can set flag_var_tracking
1431      and flag_var_tracking_uninit if the user has not specified them.  */
1432   if (debug_info_level < DINFO_LEVEL_NORMAL
1433       || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1434     {
1435       if (flag_var_tracking == 1
1436           || flag_var_tracking_uninit == 1)
1437         {
1438           if (debug_info_level < DINFO_LEVEL_NORMAL)
1439             warning_at (UNKNOWN_LOCATION, 0,
1440                         "variable tracking requested, but useless unless "
1441                         "producing debug info");
1442           else
1443             warning_at (UNKNOWN_LOCATION, 0,
1444                         "variable tracking requested, but not supported "
1445                         "by this debug format");
1446         }
1447       flag_var_tracking = 0;
1448       flag_var_tracking_uninit = 0;
1449     }
1450
1451   /* The debug hooks are used to implement -fdump-go-spec because it
1452      gives a simple and stable API for all the information we need to
1453      dump.  */
1454   if (flag_dump_go_spec != NULL)
1455     debug_hooks = dump_go_spec_init (flag_dump_go_spec, debug_hooks);
1456
1457   /* If the user specifically requested variable tracking with tagging
1458      uninitialized variables, we need to turn on variable tracking.
1459      (We already determined above that variable tracking is feasible.)  */
1460   if (flag_var_tracking_uninit == 1)
1461     flag_var_tracking = 1;
1462
1463   if (flag_var_tracking == AUTODETECT_VALUE)
1464     flag_var_tracking = optimize >= 1;
1465
1466   if (flag_var_tracking_uninit == AUTODETECT_VALUE)
1467     flag_var_tracking_uninit = flag_var_tracking;
1468
1469   if (flag_var_tracking_assignments == AUTODETECT_VALUE)
1470     flag_var_tracking_assignments = flag_var_tracking
1471       && !(flag_selective_scheduling || flag_selective_scheduling2);
1472
1473   if (flag_var_tracking_assignments_toggle)
1474     flag_var_tracking_assignments = !flag_var_tracking_assignments;
1475
1476   if (flag_var_tracking_assignments && !flag_var_tracking)
1477     flag_var_tracking = flag_var_tracking_assignments = -1;
1478
1479   if (flag_var_tracking_assignments
1480       && (flag_selective_scheduling || flag_selective_scheduling2))
1481     warning_at (UNKNOWN_LOCATION, 0,
1482                 "var-tracking-assignments changes selective scheduling");
1483
1484   if (flag_tree_cselim == AUTODETECT_VALUE)
1485     {
1486       if (HAVE_conditional_move)
1487         flag_tree_cselim = 1;
1488       else
1489         flag_tree_cselim = 0;
1490     }
1491
1492   /* If auxiliary info generation is desired, open the output file.
1493      This goes in the same directory as the source file--unlike
1494      all the other output files.  */
1495   if (flag_gen_aux_info)
1496     {
1497       aux_info_file = fopen (aux_info_file_name, "w");
1498       if (aux_info_file == 0)
1499         fatal_error (UNKNOWN_LOCATION,
1500                      "can%'t open %s: %m", aux_info_file_name);
1501     }
1502
1503   if (!targetm_common.have_named_sections)
1504     {
1505       if (flag_function_sections)
1506         {
1507           warning_at (UNKNOWN_LOCATION, 0,
1508                       "-ffunction-sections not supported for this target");
1509           flag_function_sections = 0;
1510         }
1511       if (flag_data_sections)
1512         {
1513           warning_at (UNKNOWN_LOCATION, 0,
1514                       "-fdata-sections not supported for this target");
1515           flag_data_sections = 0;
1516         }
1517     }
1518
1519   if (flag_prefetch_loop_arrays > 0 && !targetm.code_for_prefetch)
1520     {
1521       warning_at (UNKNOWN_LOCATION, 0,
1522                   "-fprefetch-loop-arrays not supported for this target");
1523       flag_prefetch_loop_arrays = 0;
1524     }
1525   else if (flag_prefetch_loop_arrays > 0 && !targetm.have_prefetch ())
1526     {
1527       warning_at (UNKNOWN_LOCATION, 0,
1528                   "-fprefetch-loop-arrays not supported for this target "
1529                   "(try -march switches)");
1530       flag_prefetch_loop_arrays = 0;
1531     }
1532
1533   /* This combination of options isn't handled for i386 targets and doesn't
1534      make much sense anyway, so don't allow it.  */
1535   if (flag_prefetch_loop_arrays > 0 && optimize_size)
1536     {
1537       warning_at (UNKNOWN_LOCATION, 0,
1538                   "-fprefetch-loop-arrays is not supported with -Os");
1539       flag_prefetch_loop_arrays = 0;
1540     }
1541
1542   /* The presence of IEEE signaling NaNs, implies all math can trap.  */
1543   if (flag_signaling_nans)
1544     flag_trapping_math = 1;
1545
1546   /* We cannot reassociate if we want traps or signed zeros.  */
1547   if (flag_associative_math && (flag_trapping_math || flag_signed_zeros))
1548     {
1549       warning_at (UNKNOWN_LOCATION, 0,
1550                   "-fassociative-math disabled; other options take "
1551                   "precedence");
1552       flag_associative_math = 0;
1553     }
1554
1555   /* With -fcx-limited-range, we do cheap and quick complex arithmetic.  */
1556   if (flag_cx_limited_range)
1557     flag_complex_method = 0;
1558
1559   /* With -fcx-fortran-rules, we do something in-between cheap and C99.  */
1560   if (flag_cx_fortran_rules)
1561     flag_complex_method = 1;
1562
1563   /* Targets must be able to place spill slots at lower addresses.  If the
1564      target already uses a soft frame pointer, the transition is trivial.  */
1565   if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
1566     {
1567       warning_at (UNKNOWN_LOCATION, 0,
1568                   "-fstack-protector not supported for this target");
1569       flag_stack_protect = 0;
1570     }
1571   if (!flag_stack_protect)
1572     warn_stack_protect = 0;
1573
1574   /* Address Sanitizer needs porting to each target architecture.  */
1575
1576   if ((flag_sanitize & SANITIZE_ADDRESS)
1577       && !FRAME_GROWS_DOWNWARD)
1578     {
1579       warning_at (UNKNOWN_LOCATION, 0,
1580                   "-fsanitize=address and -fsanitize=kernel-address "
1581                   "are not supported for this target");
1582       flag_sanitize &= ~SANITIZE_ADDRESS;
1583     }
1584
1585   if ((flag_sanitize & SANITIZE_USER_ADDRESS)
1586       && targetm.asan_shadow_offset == NULL)
1587     {
1588       warning_at (UNKNOWN_LOCATION, 0,
1589                   "-fsanitize=address not supported for this target");
1590       flag_sanitize &= ~SANITIZE_ADDRESS;
1591     }
1592
1593  /* Do not use IPA optimizations for register allocation if profiler is active
1594     or port does not emit prologue and epilogue as RTL.  */
1595   if (profile_flag || !targetm.have_prologue () || !targetm.have_epilogue ())
1596     flag_ipa_ra = 0;
1597
1598   /* Enable -Werror=coverage-mismatch when -Werror and -Wno-error
1599      have not been set.  */
1600   if (!global_options_set.x_warnings_are_errors
1601       && warn_coverage_mismatch
1602       && (global_dc->classify_diagnostic[OPT_Wcoverage_mismatch] ==
1603           DK_UNSPECIFIED))
1604     diagnostic_classify_diagnostic (global_dc, OPT_Wcoverage_mismatch,
1605                                     DK_ERROR, UNKNOWN_LOCATION);
1606
1607   /* Save the current optimization options.  */
1608   optimization_default_node = build_optimization_node (&global_options);
1609   optimization_current_node = optimization_default_node;
1610
1611   /* Please don't change global_options after this point, those changes won't
1612      be reflected in optimization_{default,current}_node.  */
1613 }
1614
1615 /* This function can be called multiple times to reinitialize the compiler
1616    back end when register classes or instruction sets have changed,
1617    before each function.  */
1618 static void
1619 backend_init_target (void)
1620 {
1621   /* Initialize alignment variables.  */
1622   init_alignments ();
1623
1624   /* This depends on stack_pointer_rtx.  */
1625   init_fake_stack_mems ();
1626
1627   /* Sets static_base_value[HARD_FRAME_POINTER_REGNUM], which is
1628      mode-dependent.  */
1629   init_alias_target ();
1630
1631   /* Depends on HARD_FRAME_POINTER_REGNUM.  */
1632   if (!ira_use_lra_p)
1633     init_reload ();
1634
1635   /* Depends on the enabled attribute.  */
1636   recog_init ();
1637
1638   /* The following initialization functions need to generate rtl, so
1639      provide a dummy function context for them.  */
1640   init_dummy_function_start ();
1641
1642   /* rtx_cost is mode-dependent, so cached values need to be recomputed
1643      on a mode change.  */
1644   init_expmed ();
1645   init_lower_subreg ();
1646   init_set_costs ();
1647
1648   init_expr_target ();
1649   ira_init ();
1650
1651   /* We may need to recompute regno_save_code[] and regno_restore_code[]
1652      after a mode change as well.  */
1653   caller_save_initialized_p = false;
1654
1655   expand_dummy_function_end ();
1656 }
1657
1658 /* Initialize the compiler back end.  This function is called only once,
1659    when starting the compiler.  */
1660 static void
1661 backend_init (void)
1662 {
1663   init_emit_once ();
1664
1665   init_rtlanal ();
1666   init_inline_once ();
1667   init_varasm_once ();
1668   save_register_info ();
1669
1670   /* Middle end needs this initialization for default mem attributes
1671      used by early calls to make_decl_rtl.  */
1672   init_emit_regs ();
1673
1674   /* Middle end needs this initialization for mode tables used to assign
1675      modes to vector variables.  */
1676   init_regs ();
1677 }
1678
1679 /* Initialize excess precision settings.  */
1680 static void
1681 init_excess_precision (void)
1682 {
1683   /* Adjust excess precision handling based on the target options.  If
1684      the front end cannot handle it, flag_excess_precision_cmdline
1685      will already have been set accordingly in the post_options
1686      hook.  */
1687   gcc_assert (flag_excess_precision_cmdline != EXCESS_PRECISION_DEFAULT);
1688   flag_excess_precision = flag_excess_precision_cmdline;
1689   if (flag_unsafe_math_optimizations)
1690     flag_excess_precision = EXCESS_PRECISION_FAST;
1691   if (flag_excess_precision == EXCESS_PRECISION_STANDARD)
1692     {
1693       int flt_eval_method = TARGET_FLT_EVAL_METHOD;
1694       switch (flt_eval_method)
1695         {
1696         case -1:
1697         case 0:
1698           /* Either the target acts unpredictably (-1) or has all the
1699              operations required not to have excess precision (0).  */
1700           flag_excess_precision = EXCESS_PRECISION_FAST;
1701           break;
1702         case 1:
1703         case 2:
1704           /* In these cases, predictable excess precision makes
1705              sense.  */
1706           break;
1707         default:
1708           /* Any other implementation-defined FLT_EVAL_METHOD values
1709              require the compiler to handle the associated excess
1710              precision rules in excess_precision_type.  */
1711           gcc_unreachable ();
1712         }
1713     }
1714 }
1715
1716 /* Initialize things that are both lang-dependent and target-dependent.
1717    This function can be called more than once if target parameters change.  */
1718 static void
1719 lang_dependent_init_target (void)
1720 {
1721   /* This determines excess precision settings.  */
1722   init_excess_precision ();
1723
1724   /* This creates various _DECL nodes, so needs to be called after the
1725      front end is initialized.  It also depends on the HAVE_xxx macros
1726      generated from the target machine description.  */
1727   init_optabs ();
1728
1729   gcc_assert (!this_target_rtl->target_specific_initialized);
1730 }
1731
1732 /* Perform initializations that are lang-dependent or target-dependent.
1733    but matters only for late optimizations and RTL generation.  */
1734
1735 static int rtl_initialized;
1736
1737 void
1738 initialize_rtl (void)
1739 {
1740   auto_timevar tv (g_timer, TV_INITIALIZE_RTL);
1741
1742   /* Initialization done just once per compilation, but delayed
1743      till code generation.  */
1744   if (!rtl_initialized)
1745     ira_init_once ();
1746   rtl_initialized = true;
1747
1748   /* Target specific RTL backend initialization.  */
1749   if (!this_target_rtl->target_specific_initialized)
1750     {
1751       backend_init_target ();
1752       this_target_rtl->target_specific_initialized = true;
1753     }
1754 }
1755
1756 /* Language-dependent initialization.  Returns nonzero on success.  */
1757 static int
1758 lang_dependent_init (const char *name)
1759 {
1760   location_t save_loc = input_location;
1761   if (dump_base_name == 0)
1762     dump_base_name = name && name[0] ? name : "gccdump";
1763
1764   /* Other front-end initialization.  */
1765   input_location = BUILTINS_LOCATION;
1766   if (lang_hooks.init () == 0)
1767     return 0;
1768   input_location = save_loc;
1769
1770   if (!flag_wpa)
1771     {
1772       init_asm_output (name);
1773
1774       /* If stack usage information is desired, open the output file.  */
1775       if (flag_stack_usage)
1776         stack_usage_file = open_auxiliary_file ("su");
1777     }
1778
1779   /* This creates various _DECL nodes, so needs to be called after the
1780      front end is initialized.  */
1781   init_eh ();
1782
1783   /* Do the target-specific parts of the initialization.  */
1784   lang_dependent_init_target ();
1785
1786   if (!flag_wpa)
1787     {
1788       /* If dbx symbol table desired, initialize writing it and output the
1789          predefined types.  */
1790       timevar_push (TV_SYMOUT);
1791
1792       /* Now we have the correct original filename, we can initialize
1793          debug output.  */
1794       (*debug_hooks->init) (name);
1795
1796       timevar_pop (TV_SYMOUT);
1797     }
1798
1799   return 1;
1800 }
1801
1802
1803 /* Reinitialize everything when target parameters, such as register usage,
1804    have changed.  */
1805 void
1806 target_reinit (void)
1807 {
1808   struct rtl_data saved_x_rtl;
1809   rtx *saved_regno_reg_rtx;
1810   tree saved_optimization_current_node;
1811   struct target_optabs *saved_this_fn_optabs;
1812
1813   /* Temporarily switch to the default optimization node, so that
1814      *this_target_optabs is set to the default, not reflecting
1815      whatever a previous function used for the optimize
1816      attribute.  */
1817   saved_optimization_current_node = optimization_current_node;
1818   saved_this_fn_optabs = this_fn_optabs;
1819   if (saved_optimization_current_node != optimization_default_node)
1820     {
1821       optimization_current_node = optimization_default_node;
1822       cl_optimization_restore
1823         (&global_options,
1824          TREE_OPTIMIZATION (optimization_default_node));
1825     }
1826   this_fn_optabs = this_target_optabs;
1827
1828   /* Save *crtl and regno_reg_rtx around the reinitialization
1829      to allow target_reinit being called even after prepare_function_start.  */
1830   saved_regno_reg_rtx = regno_reg_rtx;
1831   if (saved_regno_reg_rtx)
1832     {  
1833       saved_x_rtl = *crtl;
1834       memset (crtl, '\0', sizeof (*crtl));
1835       regno_reg_rtx = NULL;
1836     }
1837
1838   this_target_rtl->target_specific_initialized = false;
1839
1840   /* This initializes hard_frame_pointer, and calls init_reg_modes_target()
1841      to initialize reg_raw_mode[].  */
1842   init_emit_regs ();
1843
1844   /* This invokes target hooks to set fixed_reg[] etc, which is
1845      mode-dependent.  */
1846   init_regs ();
1847
1848   /* Reinitialize lang-dependent parts.  */
1849   lang_dependent_init_target ();
1850
1851   /* Restore the original optimization node.  */
1852   if (saved_optimization_current_node != optimization_default_node)
1853     {
1854       optimization_current_node = saved_optimization_current_node;
1855       cl_optimization_restore (&global_options,
1856                                TREE_OPTIMIZATION (optimization_current_node));
1857     }
1858   this_fn_optabs = saved_this_fn_optabs;
1859
1860   /* Restore regno_reg_rtx at the end, as free_after_compilation from
1861      expand_dummy_function_end clears it.  */
1862   if (saved_regno_reg_rtx)
1863     {
1864       *crtl = saved_x_rtl;
1865       regno_reg_rtx = saved_regno_reg_rtx;
1866       saved_regno_reg_rtx = NULL;
1867     }
1868 }
1869
1870 void
1871 dump_memory_report (bool final)
1872 {
1873   dump_line_table_statistics ();
1874   ggc_print_statistics ();
1875   stringpool_statistics ();
1876   dump_tree_statistics ();
1877   dump_gimple_statistics ();
1878   dump_rtx_statistics ();
1879   dump_alloc_pool_statistics ();
1880   dump_bitmap_statistics ();
1881   dump_hash_table_loc_statistics ();
1882   dump_vec_loc_statistics ();
1883   dump_ggc_loc_statistics (final);
1884   dump_alias_stats (stderr);
1885   dump_pta_stats (stderr);
1886 }
1887
1888 /* Clean up: close opened files, etc.  */
1889
1890 static void
1891 finalize (bool no_backend)
1892 {
1893   /* Close the dump files.  */
1894   if (flag_gen_aux_info)
1895     {
1896       fclose (aux_info_file);
1897       aux_info_file = NULL;
1898       if (seen_error ())
1899         unlink (aux_info_file_name);
1900     }
1901
1902   /* Close non-debugging input and output files.  Take special care to note
1903      whether fclose returns an error, since the pages might still be on the
1904      buffer chain while the file is open.  */
1905
1906   if (asm_out_file)
1907     {
1908       if (ferror (asm_out_file) != 0)
1909         fatal_error (input_location, "error writing to %s: %m", asm_file_name);
1910       if (fclose (asm_out_file) != 0)
1911         fatal_error (input_location, "error closing %s: %m", asm_file_name);
1912       asm_out_file = NULL;
1913     }
1914
1915   if (stack_usage_file)
1916     {
1917       fclose (stack_usage_file);
1918       stack_usage_file = NULL;
1919     }
1920
1921   if (!no_backend)
1922     {
1923       statistics_fini ();
1924
1925       g->get_passes ()->finish_optimization_passes ();
1926
1927       lra_finish_once ();
1928     }
1929
1930   if (mem_report)
1931     dump_memory_report (true);
1932
1933   if (profile_report)
1934     dump_profile_report ();
1935
1936   /* Language-specific end of compilation actions.  */
1937   lang_hooks.finish ();
1938 }
1939
1940 static bool
1941 standard_type_bitsize (int bitsize)
1942 {
1943   /* As a special exception, we always want __int128 enabled if possible.  */
1944   if (bitsize == 128)
1945     return false;
1946   if (bitsize == CHAR_TYPE_SIZE
1947       || bitsize == SHORT_TYPE_SIZE
1948       || bitsize == INT_TYPE_SIZE
1949       || bitsize == LONG_TYPE_SIZE
1950       || bitsize == LONG_LONG_TYPE_SIZE)
1951     return true;
1952   return false;
1953 }
1954
1955 /* Initialize the compiler, and compile the input file.  */
1956 static void
1957 do_compile ()
1958 {
1959   process_options ();
1960
1961   /* Don't do any more if an error has already occurred.  */
1962   if (!seen_error ())
1963     {
1964       int i;
1965
1966       timevar_start (TV_PHASE_SETUP);
1967
1968       /* This must be run always, because it is needed to compute the FP
1969          predefined macros, such as __LDBL_MAX__, for targets using non
1970          default FP formats.  */
1971       init_adjust_machine_modes ();
1972       init_derived_machine_modes ();
1973
1974       /* This must happen after the backend has a chance to process
1975          command line options, but before the parsers are
1976          initialized.  */
1977       for (i = 0; i < NUM_INT_N_ENTS; i ++)
1978         if (targetm.scalar_mode_supported_p (int_n_data[i].m)
1979             && ! standard_type_bitsize (int_n_data[i].bitsize))
1980           int_n_enabled_p[i] = true;
1981         else
1982           int_n_enabled_p[i] = false;
1983
1984       /* Set up the back-end if requested.  */
1985       if (!no_backend)
1986         backend_init ();
1987
1988       /* Language-dependent initialization.  Returns true on success.  */
1989       if (lang_dependent_init (main_input_filename))
1990         {
1991           /* Initialize yet another pass.  */
1992
1993           ggc_protect_identifiers = true;
1994
1995           symtab->initialize ();
1996           init_final (main_input_filename);
1997           coverage_init (aux_base_name);
1998           statistics_init ();
1999           invoke_plugin_callbacks (PLUGIN_START_UNIT, NULL);
2000
2001           timevar_stop (TV_PHASE_SETUP);
2002
2003           compile_file ();
2004         }
2005       else
2006         {
2007           timevar_stop (TV_PHASE_SETUP);
2008         }
2009
2010       timevar_start (TV_PHASE_FINALIZE);
2011
2012       finalize (no_backend);
2013
2014       timevar_stop (TV_PHASE_FINALIZE);
2015     }
2016 }
2017
2018 toplev::toplev (timer *external_timer,
2019                 bool init_signals)
2020   : m_use_TV_TOTAL (external_timer == NULL),
2021     m_init_signals (init_signals)
2022 {
2023   if (external_timer)
2024     g_timer = external_timer;
2025 }
2026
2027 toplev::~toplev ()
2028 {
2029   if (g_timer && m_use_TV_TOTAL)
2030     {
2031       g_timer->stop (TV_TOTAL);
2032       g_timer->print (stderr);
2033       delete g_timer;
2034       g_timer = NULL;
2035     }
2036 }
2037
2038 /* Potentially call timevar_init (which will create g_timevars if it
2039    doesn't already exist).  */
2040
2041 void
2042 toplev::start_timevars ()
2043 {
2044   if (time_report || !quiet_flag  || flag_detailed_statistics)
2045     timevar_init ();
2046
2047   timevar_start (TV_TOTAL);
2048 }
2049
2050 /* Handle -fself-test.   */
2051
2052 void
2053 toplev::run_self_tests ()
2054 {
2055   if (no_backend)
2056     {
2057       error_at (UNKNOWN_LOCATION, "self-tests incompatible with -E");
2058       return;
2059     }
2060 #if CHECKING_P
2061   /* Reset some state.  */
2062   input_location = UNKNOWN_LOCATION;
2063   bitmap_obstack_initialize (NULL);
2064
2065   /* Run the tests; any failures will lead to an abort of the process.
2066      Use "make selftests-gdb" to run under the debugger.  */
2067   ::selftest::run_tests ();
2068
2069   /* Cleanup.  */
2070   bitmap_obstack_release (NULL);
2071 #else
2072   inform (UNKNOWN_LOCATION, "self-tests are not enabled in this build");
2073 #endif /* #if CHECKING_P */
2074 }
2075
2076 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2077    Exit code is FATAL_EXIT_CODE if can't open files or if there were
2078    any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2079
2080    It is not safe to call this function more than once.  */
2081
2082 int
2083 toplev::main (int argc, char **argv)
2084 {
2085   /* Parsing and gimplification sometimes need quite large stack.
2086      Increase stack size limits if possible.  */
2087   stack_limit_increase (64 * 1024 * 1024);
2088
2089   expandargv (&argc, &argv);
2090
2091   /* Initialization of GCC's environment, and diagnostics.  */
2092   general_init (argv[0], m_init_signals);
2093
2094   /* One-off initialization of options that does not need to be
2095      repeated when options are added for particular functions.  */
2096   init_options_once ();
2097   init_opts_obstack ();
2098
2099   /* Initialize global options structures; this must be repeated for
2100      each structure used for parsing options.  */
2101   init_options_struct (&global_options, &global_options_set);
2102   lang_hooks.init_options_struct (&global_options);
2103
2104   /* Convert the options to an array.  */
2105   decode_cmdline_options_to_array_default_mask (argc,
2106                                                 CONST_CAST2 (const char **,
2107                                                              char **, argv),
2108                                                 &save_decoded_options,
2109                                                 &save_decoded_options_count);
2110
2111   /* Perform language-specific options initialization.  */
2112   lang_hooks.init_options (save_decoded_options_count, save_decoded_options);
2113
2114   /* Parse the options and do minimal processing; basically just
2115      enough to default flags appropriately.  */
2116   decode_options (&global_options, &global_options_set,
2117                   save_decoded_options, save_decoded_options_count,
2118                   UNKNOWN_LOCATION, global_dc);
2119
2120   handle_common_deferred_options ();
2121
2122   init_local_tick ();
2123
2124   initialize_plugins ();
2125
2126   if (version_flag)
2127     print_version (stderr, "", true);
2128
2129   if (help_flag)
2130     print_plugins_help (stderr, "");
2131
2132   /* Exit early if we can (e.g. -help).  */
2133   if (!exit_after_options)
2134     {
2135       if (m_use_TV_TOTAL)
2136         start_timevars ();
2137       do_compile ();
2138     }
2139
2140   if (warningcount || errorcount || werrorcount)
2141     print_ignored_options ();
2142
2143   if (flag_self_test)
2144     run_self_tests ();
2145
2146   /* Invoke registered plugin callbacks if any.  Some plugins could
2147      emit some diagnostics here.  */
2148   invoke_plugin_callbacks (PLUGIN_FINISH, NULL);
2149
2150   diagnostic_finish (global_dc);
2151
2152   finalize_plugins ();
2153   location_adhoc_data_fini (line_table);
2154
2155   after_memory_report = true;
2156
2157   if (seen_error () || werrorcount)
2158     return (FATAL_EXIT_CODE);
2159
2160   return (SUCCESS_EXIT_CODE);
2161 }
2162
2163 /* For those that want to, this function aims to clean up enough state that
2164    you can call toplev::main again. */
2165 void
2166 toplev::finalize (void)
2167 {
2168   rtl_initialized = false;
2169   this_target_rtl->target_specific_initialized = false;
2170
2171   /* Needs to be called before cgraph_c_finalize since it uses symtab.  */
2172   ipa_reference_c_finalize ();
2173
2174   cgraph_c_finalize ();
2175   cgraphunit_c_finalize ();
2176   dwarf2out_c_finalize ();
2177   gcse_c_finalize ();
2178   ipa_cp_c_finalize ();
2179   ira_costs_c_finalize ();
2180   params_c_finalize ();
2181
2182   finalize_options_struct (&global_options);
2183   finalize_options_struct (&global_options_set);
2184
2185   /* save_decoded_options uses opts_obstack, so these must
2186      be cleaned up together.  */
2187   obstack_free (&opts_obstack, NULL);
2188   XDELETEVEC (save_decoded_options);
2189   save_decoded_options = NULL;
2190   save_decoded_options_count = 0;
2191
2192   /* Clean up the context (and pass_manager etc). */
2193   delete g;
2194   g = NULL;
2195
2196 }