OSDN Git Service

* alias.c (mems_in_disjoint_alias_sets_p,
[pf3gnuchains/gcc-fork.git] / gcc / toplev.c
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
4    Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22 /* This is the top level of cc1/c++.
23    It parses command args, opens files, invokes the various passes
24    in the proper order, and counts the time used by each.
25    Error messages and low-level interface to malloc also handled here.  */
26
27 #include "config.h"
28 #undef FLOAT /* This is for hpux. They should change hpux.  */
29 #undef FFS  /* Some systems define this in param.h.  */
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include <signal.h>
34
35 #ifdef HAVE_SYS_RESOURCE_H
36 # include <sys/resource.h>
37 #endif
38
39 #ifdef HAVE_SYS_TIMES_H
40 # include <sys/times.h>
41 #endif
42
43 #include "line-map.h"
44 #include "input.h"
45 #include "tree.h"
46 #include "version.h"
47 #include "rtl.h"
48 #include "tm_p.h"
49 #include "flags.h"
50 #include "insn-attr.h"
51 #include "insn-config.h"
52 #include "insn-flags.h"
53 #include "hard-reg-set.h"
54 #include "recog.h"
55 #include "output.h"
56 #include "except.h"
57 #include "function.h"
58 #include "toplev.h"
59 #include "expr.h"
60 #include "basic-block.h"
61 #include "intl.h"
62 #include "ggc.h"
63 #include "graph.h"
64 #include "regs.h"
65 #include "timevar.h"
66 #include "diagnostic.h"
67 #include "params.h"
68 #include "reload.h"
69 #include "dwarf2asm.h"
70 #include "integrate.h"
71 #include "real.h"
72 #include "debug.h"
73 #include "target.h"
74 #include "langhooks.h"
75 #include "cfglayout.h"
76 #include "cfgloop.h"
77 #include "hosthooks.h"
78 #include "cgraph.h"
79 #include "opts.h"
80 #include "coverage.h"
81 #include "value-prof.h"
82 #include "alloc-pool.h"
83 #include "tree-mudflap.h"
84 #include "tree-pass.h"
85
86 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
87 #include "dwarf2out.h"
88 #endif
89
90 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
91 #include "dbxout.h"
92 #endif
93
94 #ifdef SDB_DEBUGGING_INFO
95 #include "sdbout.h"
96 #endif
97
98 #ifdef XCOFF_DEBUGGING_INFO
99 #include "xcoffout.h"           /* Needed for external data
100                                    declarations for e.g. AIX 4.x.  */
101 #endif
102
103 static void general_init (const char *);
104 static void do_compile (void);
105 static void process_options (void);
106 static void backend_init (void);
107 static int lang_dependent_init (const char *);
108 static void init_asm_output (const char *);
109 static void finalize (void);
110
111 static void crash_signal (int) ATTRIBUTE_NORETURN;
112 static void setup_core_dumping (void);
113 static void compile_file (void);
114
115 /* Nonzero to dump debug info whilst parsing (-dy option).  */
116 static int set_yydebug;
117
118 /* True if we don't need a backend (e.g. preprocessing only).  */
119 static bool no_backend;
120
121 /* Length of line when printing switch values.  */
122 #define MAX_LINE 75
123
124 /* Name of program invoked, sans directories.  */
125
126 const char *progname;
127
128 /* Copy of argument vector to toplev_main.  */
129 static const char **save_argv;
130
131 /* Name of top-level original source file (what was input to cpp).
132    This comes from the #-command at the beginning of the actual input.
133    If there isn't any there, then this is the cc1 input file name.  */
134
135 const char *main_input_filename;
136
137 #ifndef USE_MAPPED_LOCATION
138 location_t unknown_location = { NULL, 0 };
139 #endif
140
141 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
142    to optimize and default_debug_hooks in process_options ().  */
143 #define AUTODETECT_VALUE 2
144
145 /* Current position in real source file.  */
146
147 location_t input_location;
148
149 struct line_maps line_table;
150
151 /* Stack of currently pending input files.  */
152
153 struct file_stack *input_file_stack;
154
155 /* Incremented on each change to input_file_stack.  */
156 int input_file_stack_tick;
157
158 /* Record of input_file_stack at each tick.  */
159 typedef struct file_stack *fs_p;
160 DEF_VEC_P(fs_p);
161 DEF_VEC_ALLOC_P(fs_p,heap);
162 static VEC(fs_p,heap) *input_file_stack_history;
163
164 /* Whether input_file_stack has been restored to a previous state (in
165    which case there should be no more pushing).  */
166 static bool input_file_stack_restored;
167
168 /* Name to use as base of names for dump output files.  */
169
170 const char *dump_base_name;
171
172 /* Name to use as a base for auxiliary output files.  */
173
174 const char *aux_base_name;
175
176 /* Bit flags that specify the machine subtype we are compiling for.
177    Bits are tested using macros TARGET_... defined in the tm.h file
178    and set by `-m...' switches.  Must be defined in rtlanal.c.  */
179
180 extern int target_flags;
181
182 /* A mask of target_flags that includes bit X if X was set or cleared
183    on the command line.  */
184
185 int target_flags_explicit;
186
187 /* Debug hooks - dependent upon command line options.  */
188
189 const struct gcc_debug_hooks *debug_hooks;
190
191 /* Debug hooks - target default.  */
192
193 static const struct gcc_debug_hooks *default_debug_hooks;
194
195 /* Other flags saying which kinds of debugging dump have been requested.  */
196
197 int rtl_dump_and_exit;
198 int flag_print_asm_name;
199 enum graph_dump_types graph_dump_format;
200
201 /* Name for output file of assembly code, specified with -o.  */
202
203 const char *asm_file_name;
204
205 /* Nonzero means do optimizations.  -O.
206    Particular numeric values stand for particular amounts of optimization;
207    thus, -O2 stores 2 here.  However, the optimizations beyond the basic
208    ones are not controlled directly by this variable.  Instead, they are
209    controlled by individual `flag_...' variables that are defaulted
210    based on this variable.  */
211
212 int optimize = 0;
213
214 /* Nonzero means optimize for size.  -Os.
215    The only valid values are zero and nonzero. When optimize_size is
216    nonzero, optimize defaults to 2, but certain individual code
217    bloating optimizations are disabled.  */
218
219 int optimize_size = 0;
220
221 /* The FUNCTION_DECL for the function currently being compiled,
222    or 0 if between functions.  */
223 tree current_function_decl;
224
225 /* Set to the FUNC_BEGIN label of the current function, or NULL
226    if none.  */
227 const char * current_function_func_begin_label;
228
229 /* Temporarily suppress certain warnings.
230    This is set while reading code from a system header file.  */
231
232 int in_system_header = 0;
233
234 /* Nonzero means to collect statistics which might be expensive
235    and to print them when we are done.  */
236 int flag_detailed_statistics = 0;
237
238 /* A random sequence of characters, unless overridden by user.  */
239 static const char *flag_random_seed;
240
241 /* A local time stamp derived from the time of compilation. It will be
242    zero if the system cannot provide a time.  It will be -1u, if the
243    user has specified a particular random seed.  */
244 unsigned local_tick;
245
246 /* -f flags.  */
247
248 /* Nonzero means `char' should be signed.  */
249
250 int flag_signed_char;
251
252 /* Nonzero means give an enum type only as many bytes as it needs.  A value
253    of 2 means it has not yet been initialized.  */
254
255 int flag_short_enums;
256
257 /* Nonzero if structures and unions should be returned in memory.
258
259    This should only be defined if compatibility with another compiler or
260    with an ABI is needed, because it results in slower code.  */
261
262 #ifndef DEFAULT_PCC_STRUCT_RETURN
263 #define DEFAULT_PCC_STRUCT_RETURN 1
264 #endif
265
266 /* Nonzero for -fpcc-struct-return: return values the same way PCC does.  */
267
268 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
269
270 /* 0 means straightforward implementation of complex divide acceptable.
271    1 means wide ranges of inputs must work for complex divide.
272    2 means C99-like requirements for complex multiply and divide.  */
273
274 int flag_complex_method = 1;
275
276 /* Nonzero means that we don't want inlining by virtue of -fno-inline,
277    not just because the tree inliner turned us off.  */
278
279 int flag_really_no_inline = 2;
280
281 /* Nonzero means we should be saving declaration info into a .X file.  */
282
283 int flag_gen_aux_info = 0;
284
285 /* Specified name of aux-info file.  */
286
287 const char *aux_info_file_name;
288
289 /* Nonzero if we are compiling code for a shared library, zero for
290    executable.  */
291
292 int flag_shlib;
293
294 /* Generate code for GNU or NeXT Objective-C runtime environment.  */
295
296 #ifdef NEXT_OBJC_RUNTIME
297 int flag_next_runtime = 1;
298 #else
299 int flag_next_runtime = 0;
300 #endif
301
302 /* Set to the default thread-local storage (tls) model to use.  */
303
304 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
305
306 /* Nonzero means change certain warnings into errors.
307    Usually these are warnings about failure to conform to some standard.  */
308
309 int flag_pedantic_errors = 0;
310
311 /* -dA causes debug commentary information to be produced in
312    the generated assembly code (to make it more readable).  This option
313    is generally only of use to those who actually need to read the
314    generated assembly code (perhaps while debugging the compiler itself).
315    Currently, this switch is only used by dwarfout.c; however, it is intended
316    to be a catchall for printing debug information in the assembler file.  */
317
318 int flag_debug_asm = 0;
319
320 /* -dP causes the rtl to be emitted as a comment in assembly.  */
321
322 int flag_dump_rtl_in_asm = 0;
323
324 /* When non-NULL, indicates that whenever space is allocated on the
325    stack, the resulting stack pointer must not pass this
326    address---that is, for stacks that grow downward, the stack pointer
327    must always be greater than or equal to this address; for stacks
328    that grow upward, the stack pointer must be less than this address.
329    At present, the rtx may be either a REG or a SYMBOL_REF, although
330    the support provided depends on the backend.  */
331 rtx stack_limit_rtx;
332
333 /* Nonzero if we should track variables.  When
334    flag_var_tracking == AUTODETECT_VALUE it will be set according
335    to optimize, debug_info_level and debug_hooks in process_options ().  */
336 int flag_var_tracking = AUTODETECT_VALUE;
337
338 /* True if the user has tagged the function with the 'section'
339    attribute.  */
340
341 bool user_defined_section_attribute = false;
342
343 /* Values of the -falign-* flags: how much to align labels in code.
344    0 means `use default', 1 means `don't align'.
345    For each variable, there is an _log variant which is the power
346    of two not less than the variable, for .align output.  */
347
348 int align_loops_log;
349 int align_loops_max_skip;
350 int align_jumps_log;
351 int align_jumps_max_skip;
352 int align_labels_log;
353 int align_labels_max_skip;
354 int align_functions_log;
355
356 typedef struct
357 {
358   const char *const string;
359   int *const variable;
360   const int on_value;
361 }
362 lang_independent_options;
363
364 /* Nonzero if subexpressions must be evaluated from left-to-right.  */
365 int flag_evaluation_order = 0;
366
367 /* The user symbol prefix after having resolved same.  */
368 const char *user_label_prefix;
369
370 static const param_info lang_independent_params[] = {
371 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT, MIN, MAX) \
372   { OPTION, DEFAULT, false, MIN, MAX, HELP },
373 #include "params.def"
374 #undef DEFPARAM
375   { NULL, 0, false, 0, 0, NULL }
376 };
377
378 /* Output files for assembler code (real compiler output)
379    and debugging dumps.  */
380
381 FILE *asm_out_file;
382 FILE *aux_info_file;
383 FILE *dump_file = NULL;
384 const char *dump_file_name;
385
386 /* The current working directory of a translation.  It's generally the
387    directory from which compilation was initiated, but a preprocessed
388    file may specify the original directory in which it was
389    created.  */
390
391 static const char *src_pwd;
392
393 /* Initialize src_pwd with the given string, and return true.  If it
394    was already initialized, return false.  As a special case, it may
395    be called with a NULL argument to test whether src_pwd has NOT been
396    initialized yet.  */
397
398 bool
399 set_src_pwd (const char *pwd)
400 {
401   if (src_pwd)
402     {
403       if (strcmp (src_pwd, pwd) == 0)
404         return true;
405       else
406         return false;
407     }
408
409   src_pwd = xstrdup (pwd);
410   return true;
411 }
412
413 /* Return the directory from which the translation unit was initiated,
414    in case set_src_pwd() was not called before to assign it a
415    different value.  */
416
417 const char *
418 get_src_pwd (void)
419 {
420   if (! src_pwd)
421     {
422       src_pwd = getpwd ();
423       if (!src_pwd)
424         src_pwd = ".";
425     }
426
427    return src_pwd;
428 }
429
430 /* Called when the start of a function definition is parsed,
431    this function prints on stderr the name of the function.  */
432 void
433 announce_function (tree decl)
434 {
435   if (!quiet_flag)
436     {
437       if (rtl_dump_and_exit)
438         fprintf (stderr, "%s ", IDENTIFIER_POINTER (DECL_NAME (decl)));
439       else
440         fprintf (stderr, " %s", lang_hooks.decl_printable_name (decl, 2));
441       fflush (stderr);
442       pp_needs_newline (global_dc->printer) = true;
443       diagnostic_set_last_function (global_dc);
444     }
445 }
446
447 /* Initialize local_tick with the time of day, or -1 if
448    flag_random_seed is set.  */
449
450 static void
451 init_local_tick (void)
452 {
453   if (!flag_random_seed)
454     {
455       /* Get some more or less random data.  */
456 #ifdef HAVE_GETTIMEOFDAY
457       {
458         struct timeval tv;
459
460         gettimeofday (&tv, NULL);
461         local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
462       }
463 #else
464       {
465         time_t now = time (NULL);
466
467         if (now != (time_t)-1)
468           local_tick = (unsigned) now;
469       }
470 #endif
471     }
472   else
473     local_tick = -1;
474 }
475
476 /* Set up a default flag_random_seed and local_tick, unless the user
477    already specified one.  Must be called after init_local_tick.  */
478
479 static void
480 init_random_seed (void)
481 {
482   unsigned HOST_WIDE_INT value;
483   static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
484
485   value = local_tick ^ getpid ();
486
487   sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
488   flag_random_seed = random_seed;
489 }
490
491 /* Obtain the random_seed string.  Unless NOINIT, initialize it if
492    it's not provided in the command line.  */
493
494 const char *
495 get_random_seed (bool noinit)
496 {
497   if (!flag_random_seed && !noinit)
498     init_random_seed ();
499   return flag_random_seed;
500 }
501
502 /* Modify the random_seed string to VAL.  Return its previous
503    value.  */
504
505 const char *
506 set_random_seed (const char *val)
507 {
508   const char *old = flag_random_seed;
509   flag_random_seed = val;
510   return old;
511 }
512
513 /* Decode the string P as an integral parameter.
514    If the string is indeed an integer return its numeric value else
515    issue an Invalid Option error for the option PNAME and return DEFVAL.
516    If PNAME is zero just return DEFVAL, do not call error.  */
517
518 int
519 read_integral_parameter (const char *p, const char *pname, const int  defval)
520 {
521   const char *endp = p;
522
523   while (*endp)
524     {
525       if (ISDIGIT (*endp))
526         endp++;
527       else
528         break;
529     }
530
531   if (*endp != 0)
532     {
533       if (pname != 0)
534         error ("invalid option argument %qs", pname);
535       return defval;
536     }
537
538   return atoi (p);
539 }
540
541 /* When compiling with a recent enough GCC, we use the GNU C "extern inline"
542    for floor_log2 and exact_log2; see toplev.h.  That construct, however,
543    conflicts with the ISO C++ One Definition Rule.   */
544
545 #if GCC_VERSION < 3004 || !defined (__cplusplus)
546
547 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
548    If X is 0, return -1.  */
549
550 int
551 floor_log2 (unsigned HOST_WIDE_INT x)
552 {
553   int t = 0;
554
555   if (x == 0)
556     return -1;
557
558 #ifdef CLZ_HWI
559   t = HOST_BITS_PER_WIDE_INT - 1 - (int) CLZ_HWI (x);
560 #else
561   if (HOST_BITS_PER_WIDE_INT > 64)
562     if (x >= (unsigned HOST_WIDE_INT) 1 << (t + 64))
563       t += 64;
564   if (HOST_BITS_PER_WIDE_INT > 32)
565     if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 32))
566       t += 32;
567   if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 16))
568     t += 16;
569   if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 8))
570     t += 8;
571   if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 4))
572     t += 4;
573   if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 2))
574     t += 2;
575   if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 1))
576     t += 1;
577 #endif
578
579   return t;
580 }
581
582 /* Return the logarithm of X, base 2, considering X unsigned,
583    if X is a power of 2.  Otherwise, returns -1.  */
584
585 int
586 exact_log2 (unsigned HOST_WIDE_INT x)
587 {
588   if (x != (x & -x))
589     return -1;
590 #ifdef CTZ_HWI
591   return x ? CTZ_HWI (x) : -1;
592 #else
593   return floor_log2 (x);
594 #endif
595 }
596
597 #endif /*  GCC_VERSION < 3004 || !defined (__cplusplus)  */
598
599 /* Handler for fatal signals, such as SIGSEGV.  These are transformed
600    into ICE messages, which is much more user friendly.  In case the
601    error printer crashes, reset the signal to prevent infinite recursion.  */
602
603 static void
604 crash_signal (int signo)
605 {
606   signal (signo, SIG_DFL);
607
608   /* If we crashed while processing an ASM statement, then be a little more
609      graceful.  It's most likely the user's fault.  */
610   if (this_is_asm_operands)
611     {
612       output_operand_lossage ("unrecoverable error");
613       exit (FATAL_EXIT_CODE);
614     }
615
616   internal_error ("%s", strsignal (signo));
617 }
618
619 /* Arrange to dump core on error.  (The regular error message is still
620    printed first, except in the case of abort().)  */
621
622 static void
623 setup_core_dumping (void)
624 {
625 #ifdef SIGABRT
626   signal (SIGABRT, SIG_DFL);
627 #endif
628 #if defined(HAVE_SETRLIMIT)
629   {
630     struct rlimit rlim;
631     if (getrlimit (RLIMIT_CORE, &rlim) != 0)
632       fatal_error ("getting core file size maximum limit: %m");
633     rlim.rlim_cur = rlim.rlim_max;
634     if (setrlimit (RLIMIT_CORE, &rlim) != 0)
635       fatal_error ("setting core file size limit to maximum: %m");
636   }
637 #endif
638   diagnostic_abort_on_error (global_dc);
639 }
640
641
642 /* Strip off a legitimate source ending from the input string NAME of
643    length LEN.  Rather than having to know the names used by all of
644    our front ends, we strip off an ending of a period followed by
645    up to five characters.  (Java uses ".class".)  */
646
647 void
648 strip_off_ending (char *name, int len)
649 {
650   int i;
651   for (i = 2; i < 6 && len > i; i++)
652     {
653       if (name[len - i] == '.')
654         {
655           name[len - i] = '\0';
656           break;
657         }
658     }
659 }
660
661 /* Output a quoted string.  */
662
663 void
664 output_quoted_string (FILE *asm_file, const char *string)
665 {
666 #ifdef OUTPUT_QUOTED_STRING
667   OUTPUT_QUOTED_STRING (asm_file, string);
668 #else
669   char c;
670
671   putc ('\"', asm_file);
672   while ((c = *string++) != 0)
673     {
674       if (ISPRINT (c))
675         {
676           if (c == '\"' || c == '\\')
677             putc ('\\', asm_file);
678           putc (c, asm_file);
679         }
680       else
681         fprintf (asm_file, "\\%03o", (unsigned char) c);
682     }
683   putc ('\"', asm_file);
684 #endif
685 }
686
687 /* Output a file name in the form wanted by System V.  */
688
689 void
690 output_file_directive (FILE *asm_file, const char *input_name)
691 {
692   int len;
693   const char *na;
694
695   if (input_name == NULL)
696     input_name = "<stdin>";
697
698   len = strlen (input_name);
699   na = input_name + len;
700
701   /* NA gets INPUT_NAME sans directory names.  */
702   while (na > input_name)
703     {
704       if (IS_DIR_SEPARATOR (na[-1]))
705         break;
706       na--;
707     }
708
709 #ifdef ASM_OUTPUT_SOURCE_FILENAME
710   ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
711 #else
712   fprintf (asm_file, "\t.file\t");
713   output_quoted_string (asm_file, na);
714   fputc ('\n', asm_file);
715 #endif
716 }
717
718 /* A subroutine of wrapup_global_declarations.  We've come to the end of
719    the compilation unit.  All deferred variables should be undeferred,
720    and all incomplete decls should be finalized.  */
721
722 void
723 wrapup_global_declaration_1 (tree decl)
724 {
725   /* We're not deferring this any longer.  Assignment is conditional to
726      avoid needlessly dirtying PCH pages.  */
727   if (CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_WITH_VIS)
728       && DECL_DEFER_OUTPUT (decl) != 0)
729     DECL_DEFER_OUTPUT (decl) = 0;
730
731   if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
732     lang_hooks.finish_incomplete_decl (decl);
733 }
734
735 /* A subroutine of wrapup_global_declarations.  Decide whether or not DECL
736    needs to be output.  Return true if it is output.  */
737
738 bool
739 wrapup_global_declaration_2 (tree decl)
740 {
741   if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
742     return false;
743
744   /* Don't write out static consts, unless we still need them.
745
746      We also keep static consts if not optimizing (for debugging),
747      unless the user specified -fno-keep-static-consts.
748      ??? They might be better written into the debug information.
749      This is possible when using DWARF.
750
751      A language processor that wants static constants to be always
752      written out (even if it is not used) is responsible for
753      calling rest_of_decl_compilation itself.  E.g. the C front-end
754      calls rest_of_decl_compilation from finish_decl.
755      One motivation for this is that is conventional in some
756      environments to write things like:
757      static const char rcsid[] = "... version string ...";
758      intending to force the string to be in the executable.
759
760      A language processor that would prefer to have unneeded
761      static constants "optimized away" would just defer writing
762      them out until here.  E.g. C++ does this, because static
763      constants are often defined in header files.
764
765      ??? A tempting alternative (for both C and C++) would be
766      to force a constant to be written if and only if it is
767      defined in a main file, as opposed to an include file.  */
768
769   if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
770     {
771       struct varpool_node *node;
772       bool needed = true;
773       node = varpool_node (decl);
774
775       if (node->finalized)
776         needed = false;
777       else if (node->alias)
778         needed = false;
779       else if (!cgraph_global_info_ready
780                && (TREE_USED (decl)
781                    || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
782         /* needed */;
783       else if (node->needed)
784         /* needed */;
785       else if (DECL_COMDAT (decl))
786         needed = false;
787       else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
788                && (optimize || !flag_keep_static_consts
789                    || DECL_ARTIFICIAL (decl)))
790         needed = false;
791
792       if (needed)
793         {
794           rest_of_decl_compilation (decl, 1, 1);
795           return true;
796         }
797     }
798
799   return false;
800 }
801
802 /* Do any final processing required for the declarations in VEC, of
803    which there are LEN.  We write out inline functions and variables
804    that have been deferred until this point, but which are required.
805    Returns nonzero if anything was put out.  */
806
807 bool
808 wrapup_global_declarations (tree *vec, int len)
809 {
810   bool reconsider, output_something = false;
811   int i;
812
813   for (i = 0; i < len; i++)
814     wrapup_global_declaration_1 (vec[i]);
815
816   /* Now emit any global variables or functions that we have been
817      putting off.  We need to loop in case one of the things emitted
818      here references another one which comes earlier in the list.  */
819   do
820     {
821       reconsider = false;
822       for (i = 0; i < len; i++)
823         reconsider |= wrapup_global_declaration_2 (vec[i]);
824       if (reconsider)
825         output_something = true;
826     }
827   while (reconsider);
828
829   return output_something;
830 }
831
832 /* A subroutine of check_global_declarations.  Issue appropriate warnings
833    for the global declaration DECL.  */
834
835 void
836 check_global_declaration_1 (tree decl)
837 {
838   /* Warn about any function declared static but not defined.  We don't
839      warn about variables, because many programs have static variables
840      that exist only to get some text into the object file.  */
841   if (TREE_CODE (decl) == FUNCTION_DECL
842       && DECL_INITIAL (decl) == 0
843       && DECL_EXTERNAL (decl)
844       && ! DECL_ARTIFICIAL (decl)
845       && ! TREE_NO_WARNING (decl)
846       && ! TREE_PUBLIC (decl)
847       && (warn_unused_function
848           || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
849     {
850       if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
851         pedwarn ("%q+F used but never defined", decl);
852       else
853         warning (0, "%q+F declared %<static%> but never defined", decl);
854       /* This symbol is effectively an "extern" declaration now.  */
855       TREE_PUBLIC (decl) = 1;
856       assemble_external (decl);
857     }
858
859   /* Warn about static fns or vars defined but not used.  */
860   if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
861        /* We don't warn about "static const" variables because the
862           "rcs_id" idiom uses that construction.  */
863        || (warn_unused_variable
864            && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
865       && ! DECL_IN_SYSTEM_HEADER (decl)
866       && ! TREE_USED (decl)
867       /* The TREE_USED bit for file-scope decls is kept in the identifier,
868          to handle multiple external decls in different scopes.  */
869       && ! (DECL_NAME (decl) && TREE_USED (DECL_NAME (decl)))
870       && ! DECL_EXTERNAL (decl)
871       && ! TREE_PUBLIC (decl)
872       /* A volatile variable might be used in some non-obvious way.  */
873       && ! TREE_THIS_VOLATILE (decl)
874       /* Global register variables must be declared to reserve them.  */
875       && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
876       /* Otherwise, ask the language.  */
877       && lang_hooks.decls.warn_unused_global (decl))
878     warning (0, "%q+D defined but not used", decl);
879 }
880
881 /* Issue appropriate warnings for the global declarations in VEC (of
882    which there are LEN).  */
883
884 void
885 check_global_declarations (tree *vec, int len)
886 {
887   int i;
888
889   for (i = 0; i < len; i++)
890     check_global_declaration_1 (vec[i]);
891 }
892
893 /* Emit debugging information for all global declarations in VEC.  */
894
895 void
896 emit_debug_global_declarations (tree *vec, int len)
897 {
898   int i;
899
900   /* Avoid confusing the debug information machinery when there are errors.  */
901   if (errorcount != 0 || sorrycount != 0)
902     return;
903
904   timevar_push (TV_SYMOUT);
905   for (i = 0; i < len; i++)
906     debug_hooks->global_decl (vec[i]);
907   timevar_pop (TV_SYMOUT);
908 }
909
910 /* Warn about a use of an identifier which was marked deprecated.  */
911 void
912 warn_deprecated_use (tree node)
913 {
914   if (node == 0 || !warn_deprecated_decl)
915     return;
916
917   if (DECL_P (node))
918     {
919       expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node));
920       warning (OPT_Wdeprecated_declarations,
921                "%qD is deprecated (declared at %s:%d)",
922                node, xloc.file, xloc.line);
923     }
924   else if (TYPE_P (node))
925     {
926       const char *what = NULL;
927       tree decl = TYPE_STUB_DECL (node);
928
929       if (TYPE_NAME (node))
930         {
931           if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
932             what = IDENTIFIER_POINTER (TYPE_NAME (node));
933           else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
934                    && DECL_NAME (TYPE_NAME (node)))
935             what = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node)));
936         }
937
938       if (decl)
939         {
940           expanded_location xloc
941             = expand_location (DECL_SOURCE_LOCATION (decl));
942           if (what)
943             warning (OPT_Wdeprecated_declarations,
944                      "%qs is deprecated (declared at %s:%d)", what,
945                      xloc.file, xloc.line);
946           else
947             warning (OPT_Wdeprecated_declarations,
948                      "type is deprecated (declared at %s:%d)",
949                      xloc.file, xloc.line);
950         }
951       else
952         {
953           if (what)
954             warning (OPT_Wdeprecated_declarations, "%qs is deprecated", what);
955           else
956             warning (OPT_Wdeprecated_declarations, "type is deprecated");
957         }
958     }
959 }
960
961 /* Save the current INPUT_LOCATION on the top entry in the
962    INPUT_FILE_STACK.  Push a new entry for FILE and LINE, and set the
963    INPUT_LOCATION accordingly.  */
964
965 void
966 #ifdef USE_MAPPED_LOCATION
967 push_srcloc (location_t fline)
968 #else
969 push_srcloc (const char *file, int line)
970 #endif
971 {
972   struct file_stack *fs;
973
974   gcc_assert (!input_file_stack_restored);
975   if (input_file_stack_tick == (int) ((1U << INPUT_FILE_STACK_BITS) - 1))
976     sorry ("GCC supports only %d input file changes", input_file_stack_tick);
977
978   fs = XNEW (struct file_stack);
979   fs->location = input_location;
980   fs->next = input_file_stack;
981 #ifdef USE_MAPPED_LOCATION
982   input_location = fline;
983 #else
984   input_filename = file;
985   input_line = line;
986 #endif
987   input_file_stack = fs;
988   input_file_stack_tick++;
989   VEC_safe_push (fs_p, heap, input_file_stack_history, input_file_stack);
990 }
991
992 /* Pop the top entry off the stack of presently open source files.
993    Restore the INPUT_LOCATION from the new topmost entry on the
994    stack.  */
995
996 void
997 pop_srcloc (void)
998 {
999   struct file_stack *fs;
1000
1001   gcc_assert (!input_file_stack_restored);
1002   if (input_file_stack_tick == (int) ((1U << INPUT_FILE_STACK_BITS) - 1))
1003     sorry ("GCC supports only %d input file changes", input_file_stack_tick);
1004
1005   fs = input_file_stack;
1006   input_location = fs->location;
1007   input_file_stack = fs->next;
1008   input_file_stack_tick++;
1009   VEC_safe_push (fs_p, heap, input_file_stack_history, input_file_stack);
1010 }
1011
1012 /* Restore the input file stack to its state as of TICK, for the sake
1013    of diagnostics after processing the whole input.  Once this has
1014    been called, push_srcloc and pop_srcloc may no longer be
1015    called.  */
1016 void
1017 restore_input_file_stack (int tick)
1018 {
1019   if (tick == 0)
1020     input_file_stack = NULL;
1021   else
1022     input_file_stack = VEC_index (fs_p, input_file_stack_history, tick - 1);
1023   input_file_stack_tick = tick;
1024   input_file_stack_restored = true;
1025 }
1026
1027 /* Compile an entire translation unit.  Write a file of assembly
1028    output and various debugging dumps.  */
1029
1030 static void
1031 compile_file (void)
1032 {
1033   /* Initialize yet another pass.  */
1034
1035   init_cgraph ();
1036   init_final (main_input_filename);
1037   coverage_init (aux_base_name);
1038
1039   timevar_push (TV_PARSE);
1040
1041   /* Call the parser, which parses the entire file (calling
1042      rest_of_compilation for each function).  */
1043   lang_hooks.parse_file (set_yydebug);
1044
1045   /* In case there were missing block closers,
1046      get us back to the global binding level.  */
1047   lang_hooks.clear_binding_stack ();
1048
1049   /* Compilation is now finished except for writing
1050      what's left of the symbol table output.  */
1051   timevar_pop (TV_PARSE);
1052
1053   if (flag_syntax_only)
1054     return;
1055
1056   lang_hooks.decls.final_write_globals ();
1057
1058   if (errorcount || sorrycount)
1059     return;
1060
1061   varpool_assemble_pending_decls ();
1062   finish_aliases_2 ();
1063
1064   /* This must occur after the loop to output deferred functions.
1065      Else the coverage initializer would not be emitted if all the
1066      functions in this compilation unit were deferred.  */
1067   coverage_finish ();
1068
1069   /* Likewise for mudflap static object registrations.  */
1070   if (flag_mudflap)
1071     mudflap_finish_file ();
1072
1073   /* Likewise for emulated thread-local storage.  */
1074   if (!targetm.have_tls)
1075     emutls_finish ();
1076
1077   output_shared_constant_pool ();
1078   output_object_blocks ();
1079
1080   /* Write out any pending weak symbol declarations.  */
1081   weak_finish ();
1082
1083   /* Do dbx symbols.  */
1084   timevar_push (TV_SYMOUT);
1085
1086 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
1087   if (dwarf2out_do_frame ())
1088     dwarf2out_frame_finish ();
1089 #endif
1090
1091   (*debug_hooks->finish) (main_input_filename);
1092   timevar_pop (TV_SYMOUT);
1093
1094   /* Output some stuff at end of file if nec.  */
1095
1096   dw2_output_indirect_constants ();
1097
1098   /* Flush any pending external directives.  */
1099   process_pending_assemble_externals ();
1100
1101   /* Attach a special .ident directive to the end of the file to identify
1102      the version of GCC which compiled this code.  The format of the .ident
1103      string is patterned after the ones produced by native SVR4 compilers.  */
1104 #ifdef IDENT_ASM_OP
1105   if (!flag_no_ident)
1106     fprintf (asm_out_file, "%s\"GCC: (GNU) %s\"\n",
1107              IDENT_ASM_OP, version_string);
1108 #endif
1109
1110   /* This must be at the end.  Some target ports emit end of file directives
1111      into the assembly file here, and hence we can not output anything to the
1112      assembly file after this point.  */
1113   targetm.asm_out.file_end ();
1114 }
1115
1116 /* Parse a -d... command line switch.  */
1117
1118 void
1119 decode_d_option (const char *arg)
1120 {
1121   int c;
1122
1123   while (*arg)
1124     switch (c = *arg++)
1125       {
1126       case 'A':
1127         flag_debug_asm = 1;
1128         break;
1129       case 'p':
1130         flag_print_asm_name = 1;
1131         break;
1132       case 'P':
1133         flag_dump_rtl_in_asm = 1;
1134         flag_print_asm_name = 1;
1135         break;
1136       case 'v':
1137         graph_dump_format = vcg;
1138         break;
1139       case 'x':
1140         rtl_dump_and_exit = 1;
1141         break;
1142       case 'y':
1143         set_yydebug = 1;
1144         break;
1145       case 'D': /* These are handled by the preprocessor.  */
1146       case 'I':
1147         break;
1148       case 'H':
1149         setup_core_dumping();
1150         break;
1151
1152       case 'a':
1153       default:
1154         if (!enable_rtl_dump_file (c))
1155           warning (0, "unrecognized gcc debugging option: %c", c);
1156         break;
1157       }
1158 }
1159
1160 /* Indexed by enum debug_info_type.  */
1161 const char *const debug_type_names[] =
1162 {
1163   "none", "stabs", "coff", "dwarf-2", "xcoff", "vms"
1164 };
1165
1166 /* Print version information to FILE.
1167    Each line begins with INDENT (for the case where FILE is the
1168    assembler output file).  */
1169
1170 void
1171 print_version (FILE *file, const char *indent)
1172 {
1173   static const char fmt1[] =
1174 #ifdef __GNUC__
1175     N_("%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s, ")
1176 #else
1177     N_("%s%s%s version %s (%s) compiled by CC, ")
1178 #endif
1179     ;
1180   static const char fmt2[] =
1181     N_("GMP version %s, MPFR version %s.\n");
1182   static const char fmt3[] =
1183     N_("warning: %s header version %s differs from library version %s.\n");
1184   static const char fmt4[] =
1185     N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
1186 #ifndef __VERSION__
1187 #define __VERSION__ "[?]"
1188 #endif
1189   fprintf (file,
1190            file == stderr ? _(fmt1) : fmt1,
1191            indent, *indent != 0 ? " " : "",
1192            lang_hooks.name, version_string, TARGET_NAME,
1193            indent, __VERSION__);
1194
1195   /* We need to stringify the GMP macro values.  Ugh, gmp_version has
1196      two string formats, "i.j.k" and "i.j" when k is zero.  */
1197 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
1198 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3(X)
1199 #if __GNU_MP_VERSION_PATCHLEVEL == 0
1200 #define GCC_GMP_STRINGIFY_VERSION GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION) "." \
1201   GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_MINOR)
1202 #else
1203 #define GCC_GMP_STRINGIFY_VERSION GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION) "." \
1204   GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_MINOR) "." \
1205   GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_PATCHLEVEL)
1206 #endif
1207   fprintf (file,
1208            file == stderr ? _(fmt2) : fmt2,
1209            GCC_GMP_STRINGIFY_VERSION, MPFR_VERSION_STRING);
1210   if (strcmp (GCC_GMP_STRINGIFY_VERSION, gmp_version))
1211     fprintf (file,
1212              file == stderr ? _(fmt3) : fmt3,
1213              "GMP", GCC_GMP_STRINGIFY_VERSION, gmp_version);
1214   if (strcmp (MPFR_VERSION_STRING, mpfr_get_version ()))
1215     fprintf (file,
1216              file == stderr ? _(fmt3) : fmt3,
1217              "MPFR", MPFR_VERSION_STRING, mpfr_get_version ());
1218   fprintf (file,
1219            file == stderr ? _(fmt4) : fmt4,
1220            indent, *indent != 0 ? " " : "",
1221            PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
1222 }
1223
1224 #ifdef ASM_COMMENT_START
1225 static int
1226 print_to_asm_out_file (print_switch_type type, const char * text)
1227 {
1228   bool prepend_sep = true;
1229
1230   switch (type)
1231     {
1232     case SWITCH_TYPE_LINE_END:
1233       putc ('\n', asm_out_file);
1234       return 1;
1235
1236     case SWITCH_TYPE_LINE_START:
1237       fputs (ASM_COMMENT_START, asm_out_file);
1238       return strlen (ASM_COMMENT_START);
1239
1240     case SWITCH_TYPE_DESCRIPTIVE:
1241       if (ASM_COMMENT_START[0] == 0)
1242         prepend_sep = false;
1243       /* Drop through.  */
1244     case SWITCH_TYPE_PASSED:
1245     case SWITCH_TYPE_ENABLED:
1246       if (prepend_sep)
1247         fputc (' ', asm_out_file);
1248       fprintf (asm_out_file, text);
1249       /* No need to return the length here as
1250          print_single_switch has already done it.  */
1251       return 0;
1252
1253     default:
1254       return -1;
1255     }
1256 }
1257 #endif
1258
1259 static int
1260 print_to_stderr (print_switch_type type, const char * text)
1261 {
1262   switch (type)
1263     {
1264     case SWITCH_TYPE_LINE_END:
1265       putc ('\n', stderr);
1266       return 1;
1267
1268     case SWITCH_TYPE_LINE_START:
1269       return 0;
1270       
1271     case SWITCH_TYPE_PASSED:
1272     case SWITCH_TYPE_ENABLED:
1273       fputc (' ', stderr);
1274       /* Drop through.  */
1275
1276     case SWITCH_TYPE_DESCRIPTIVE:
1277       fprintf (stderr, text);
1278       /* No need to return the length here as
1279          print_single_switch has already done it.  */
1280       return 0;
1281
1282     default:
1283       return -1;
1284     }
1285 }
1286
1287 /* Print an option value and return the adjusted position in the line.
1288    ??? print_fn doesn't handle errors, eg disk full; presumably other
1289    code will catch a disk full though.  */
1290
1291 static int
1292 print_single_switch (print_switch_fn_type print_fn,
1293                      int pos,
1294                      print_switch_type type,
1295                      const char * text)
1296 {
1297   /* The ultrix fprintf returns 0 on success, so compute the result
1298      we want here since we need it for the following test.  The +1
1299      is for the separator character that will probably be emitted.  */
1300   int len = strlen (text) + 1;
1301
1302   if (pos != 0
1303       && pos + len > MAX_LINE)
1304     {
1305       print_fn (SWITCH_TYPE_LINE_END, NULL);
1306       pos = 0;
1307     }
1308
1309   if (pos == 0)
1310     pos += print_fn (SWITCH_TYPE_LINE_START, NULL);
1311
1312   print_fn (type, text);
1313   return pos + len;
1314 }
1315
1316 /* Print active target switches using PRINT_FN.
1317    POS is the current cursor position and MAX is the size of a "line".
1318    Each line begins with INDENT and ends with TERM.
1319    Each switch is separated from the next by SEP.  */
1320
1321 static void
1322 print_switch_values (print_switch_fn_type print_fn)
1323 {
1324   int pos = 0;
1325   size_t j;
1326   const char **p;
1327
1328   /* Fill in the -frandom-seed option, if the user didn't pass it, so
1329      that it can be printed below.  This helps reproducibility.  */
1330   if (!flag_random_seed)
1331     init_random_seed ();
1332
1333   /* Print the options as passed.  */
1334   pos = print_single_switch (print_fn, pos,
1335                              SWITCH_TYPE_DESCRIPTIVE, _("options passed: "));
1336
1337   for (p = &save_argv[1]; *p != NULL; p++)
1338     {
1339       if (**p == '-')
1340         {
1341           /* Ignore these.  */
1342           if (strcmp (*p, "-o") == 0
1343               || strcmp (*p, "-dumpbase") == 0
1344               || strcmp (*p, "-auxbase") == 0)
1345             {
1346               if (p[1] != NULL)
1347                 p++;
1348               continue;
1349             }
1350
1351           if (strcmp (*p, "-quiet") == 0
1352               || strcmp (*p, "-version") == 0)
1353             continue;
1354
1355           if ((*p)[1] == 'd')
1356             continue;
1357         }
1358
1359       pos = print_single_switch (print_fn, pos, SWITCH_TYPE_PASSED, *p);
1360     }
1361
1362   if (pos > 0)
1363     print_fn (SWITCH_TYPE_LINE_END, NULL);
1364
1365   /* Print the -f and -m options that have been enabled.
1366      We don't handle language specific options but printing argv
1367      should suffice.  */
1368   pos = print_single_switch (print_fn, 0,
1369                              SWITCH_TYPE_DESCRIPTIVE, _("options enabled: "));
1370
1371   for (j = 0; j < cl_options_count; j++)
1372     if ((cl_options[j].flags & CL_REPORT)
1373         && option_enabled (j) > 0)
1374       pos = print_single_switch (print_fn, pos,
1375                                  SWITCH_TYPE_ENABLED, cl_options[j].opt_text);
1376
1377   print_fn (SWITCH_TYPE_LINE_END, NULL);
1378 }
1379
1380 /* Open assembly code output file.  Do this even if -fsyntax-only is
1381    on, because then the driver will have provided the name of a
1382    temporary file or bit bucket for us.  NAME is the file specified on
1383    the command line, possibly NULL.  */
1384 static void
1385 init_asm_output (const char *name)
1386 {
1387   if (name == NULL && asm_file_name == 0)
1388     asm_out_file = stdout;
1389   else
1390     {
1391       if (asm_file_name == 0)
1392         {
1393           int len = strlen (dump_base_name);
1394           char *dumpname = XNEWVEC (char, len + 6);
1395
1396           memcpy (dumpname, dump_base_name, len + 1);
1397           strip_off_ending (dumpname, len);
1398           strcat (dumpname, ".s");
1399           asm_file_name = dumpname;
1400         }
1401       if (!strcmp (asm_file_name, "-"))
1402         asm_out_file = stdout;
1403       else
1404         asm_out_file = fopen (asm_file_name, "w+b");
1405       if (asm_out_file == 0)
1406         fatal_error ("can%'t open %s for writing: %m", asm_file_name);
1407     }
1408
1409   if (!flag_syntax_only)
1410     {
1411       targetm.asm_out.file_start ();
1412
1413       if (flag_record_gcc_switches)
1414         {
1415           if (targetm.asm_out.record_gcc_switches)
1416             {
1417               /* Let the target know that we are about to start recording.  */
1418               targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
1419                                                    NULL);
1420               /* Now record the switches.  */
1421               print_switch_values (targetm.asm_out.record_gcc_switches);
1422               /* Let the target know that the recording is over.  */
1423               targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
1424                                                    NULL);
1425             }
1426           else
1427             inform ("-frecord-gcc-switches is not supported by the current target");
1428         }
1429
1430 #ifdef ASM_COMMENT_START
1431       if (flag_verbose_asm)
1432         {
1433           /* Print the list of switches in effect
1434              into the assembler file as comments.  */
1435           print_version (asm_out_file, ASM_COMMENT_START);
1436           print_switch_values (print_to_asm_out_file);
1437           fprintf (asm_out_file, "\n");
1438         }
1439 #endif
1440     }
1441 }
1442
1443 /* Return true if the state of option OPTION should be stored in PCH files
1444    and checked by default_pch_valid_p.  Store the option's current state
1445    in STATE if so.  */
1446
1447 static inline bool
1448 option_affects_pch_p (int option, struct cl_option_state *state)
1449 {
1450   if ((cl_options[option].flags & CL_TARGET) == 0)
1451     return false;
1452   if (cl_options[option].flag_var == &target_flags)
1453     if (targetm.check_pch_target_flags)
1454       return false;
1455   return get_option_state (option, state);
1456 }
1457
1458 /* Default version of get_pch_validity.
1459    By default, every flag difference is fatal; that will be mostly right for
1460    most targets, but completely right for very few.  */
1461
1462 void *
1463 default_get_pch_validity (size_t *len)
1464 {
1465   struct cl_option_state state;
1466   size_t i;
1467   char *result, *r;
1468
1469   *len = 2;
1470   if (targetm.check_pch_target_flags)
1471     *len += sizeof (target_flags);
1472   for (i = 0; i < cl_options_count; i++)
1473     if (option_affects_pch_p (i, &state))
1474       *len += state.size;
1475
1476   result = r = XNEWVEC (char, *len);
1477   r[0] = flag_pic;
1478   r[1] = flag_pie;
1479   r += 2;
1480   if (targetm.check_pch_target_flags)
1481     {
1482       memcpy (r, &target_flags, sizeof (target_flags));
1483       r += sizeof (target_flags);
1484     }
1485
1486   for (i = 0; i < cl_options_count; i++)
1487     if (option_affects_pch_p (i, &state))
1488       {
1489         memcpy (r, state.data, state.size);
1490         r += state.size;
1491       }
1492
1493   return result;
1494 }
1495
1496 /* Return a message which says that a PCH file was created with a different
1497    setting of OPTION.  */
1498
1499 static const char *
1500 pch_option_mismatch (const char *option)
1501 {
1502   char *r;
1503
1504   asprintf (&r, _("created and used with differing settings of '%s'"), option);
1505   if (r == NULL)
1506     return _("out of memory");
1507   return r;
1508 }
1509
1510 /* Default version of pch_valid_p.  */
1511
1512 const char *
1513 default_pch_valid_p (const void *data_p, size_t len)
1514 {
1515   struct cl_option_state state;
1516   const char *data = (const char *)data_p;
1517   size_t i;
1518
1519   /* -fpic and -fpie also usually make a PCH invalid.  */
1520   if (data[0] != flag_pic)
1521     return _("created and used with different settings of -fpic");
1522   if (data[1] != flag_pie)
1523     return _("created and used with different settings of -fpie");
1524   data += 2;
1525
1526   /* Check target_flags.  */
1527   if (targetm.check_pch_target_flags)
1528     {
1529       int tf;
1530       const char *r;
1531
1532       memcpy (&tf, data, sizeof (target_flags));
1533       data += sizeof (target_flags);
1534       len -= sizeof (target_flags);
1535       r = targetm.check_pch_target_flags (tf);
1536       if (r != NULL)
1537         return r;
1538     }
1539
1540   for (i = 0; i < cl_options_count; i++)
1541     if (option_affects_pch_p (i, &state))
1542       {
1543         if (memcmp (data, state.data, state.size) != 0)
1544           return pch_option_mismatch (cl_options[i].opt_text);
1545         data += state.size;
1546         len -= state.size;
1547       }
1548
1549   return NULL;
1550 }
1551
1552 /* Default tree printer.   Handles declarations only.  */
1553 static bool
1554 default_tree_printer (pretty_printer * pp, text_info *text, const char *spec,
1555                       int precision, bool wide, bool set_locus, bool hash)
1556 {
1557   tree t;
1558
1559   /* FUTURE: %+x should set the locus.  */
1560   if (precision != 0 || wide || hash)
1561     return false;
1562
1563   switch (*spec)
1564     {
1565     case 'D':
1566       t = va_arg (*text->args_ptr, tree);
1567       if (DECL_DEBUG_EXPR_IS_FROM (t) && DECL_DEBUG_EXPR (t))
1568         t = DECL_DEBUG_EXPR (t);
1569       break;
1570
1571     case 'F':
1572     case 'T':
1573       t = va_arg (*text->args_ptr, tree);
1574       break;
1575
1576     default:
1577       return false;
1578     }
1579
1580   if (set_locus && text->locus)
1581     *text->locus = DECL_SOURCE_LOCATION (t);
1582
1583   if (DECL_P (t))
1584     {
1585       const char *n = DECL_NAME (t)
1586         ? lang_hooks.decl_printable_name (t, 2)
1587         : "<anonymous>";
1588       pp_string (pp, n);
1589     }
1590   else
1591     dump_generic_node (pp, t, 0, TDF_DIAGNOSTIC, 0);
1592
1593   return true;
1594 }
1595
1596 /* Initialization of the front end environment, before command line
1597    options are parsed.  Signal handlers, internationalization etc.
1598    ARGV0 is main's argv[0].  */
1599 static void
1600 general_init (const char *argv0)
1601 {
1602   const char *p;
1603
1604   p = argv0 + strlen (argv0);
1605   while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1606     --p;
1607   progname = p;
1608
1609   xmalloc_set_program_name (progname);
1610
1611   hex_init ();
1612
1613   /* Unlock the stdio streams.  */
1614   unlock_std_streams ();
1615
1616   gcc_init_libintl ();
1617
1618   /* Initialize the diagnostics reporting machinery, so option parsing
1619      can give warnings and errors.  */
1620   diagnostic_initialize (global_dc);
1621   /* Set a default printer.  Language specific initializations will
1622      override it later.  */
1623   pp_format_decoder (global_dc->printer) = &default_tree_printer;
1624
1625   /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages.  */
1626 #ifdef SIGSEGV
1627   signal (SIGSEGV, crash_signal);
1628 #endif
1629 #ifdef SIGILL
1630   signal (SIGILL, crash_signal);
1631 #endif
1632 #ifdef SIGBUS
1633   signal (SIGBUS, crash_signal);
1634 #endif
1635 #ifdef SIGABRT
1636   signal (SIGABRT, crash_signal);
1637 #endif
1638 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1639   signal (SIGIOT, crash_signal);
1640 #endif
1641 #ifdef SIGFPE
1642   signal (SIGFPE, crash_signal);
1643 #endif
1644
1645   /* Other host-specific signal setup.  */
1646   (*host_hooks.extra_signals)();
1647
1648   /* Initialize the garbage-collector, string pools and tree type hash
1649      table.  */
1650   init_ggc ();
1651   init_stringpool ();
1652   linemap_init (&line_table);
1653   init_ttree ();
1654
1655   /* Initialize register usage now so switches may override.  */
1656   init_reg_sets ();
1657
1658   /* Register the language-independent parameters.  */
1659   add_params (lang_independent_params, LAST_PARAM);
1660
1661   /* This must be done after add_params but before argument processing.  */
1662   init_ggc_heuristics();
1663   init_optimization_passes ();
1664 }
1665
1666 /* Return true if the current target supports -fsection-anchors.  */
1667
1668 static bool
1669 target_supports_section_anchors_p (void)
1670 {
1671   if (targetm.min_anchor_offset == 0 && targetm.max_anchor_offset == 0)
1672     return false;
1673
1674   if (targetm.asm_out.output_anchor == NULL)
1675     return false;
1676
1677   return true;
1678 }
1679
1680 /* Process the options that have been parsed.  */
1681 static void
1682 process_options (void)
1683 {
1684   /* Just in case lang_hooks.post_options ends up calling a debug_hook.
1685      This can happen with incorrect pre-processed input. */
1686   debug_hooks = &do_nothing_debug_hooks;
1687
1688   /* Allow the front end to perform consistency checks and do further
1689      initialization based on the command line options.  This hook also
1690      sets the original filename if appropriate (e.g. foo.i -> foo.c)
1691      so we can correctly initialize debug output.  */
1692   no_backend = lang_hooks.post_options (&main_input_filename);
1693 #ifndef USE_MAPPED_LOCATION
1694   input_filename = main_input_filename;
1695 #endif
1696
1697 #ifdef OVERRIDE_OPTIONS
1698   /* Some machines may reject certain combinations of options.  */
1699   OVERRIDE_OPTIONS;
1700 #endif
1701
1702   if (flag_section_anchors && !target_supports_section_anchors_p ())
1703     {
1704       warning (OPT_fsection_anchors,
1705                "this target does not support %qs", "-fsection-anchors");
1706       flag_section_anchors = 0;
1707     }
1708
1709   if (flag_short_enums == 2)
1710     flag_short_enums = targetm.default_short_enums ();
1711
1712   /* Set aux_base_name if not already set.  */
1713   if (aux_base_name)
1714     ;
1715   else if (main_input_filename)
1716     {
1717       char *name = xstrdup (lbasename (main_input_filename));
1718
1719       strip_off_ending (name, strlen (name));
1720       aux_base_name = name;
1721     }
1722   else
1723     aux_base_name = "gccaux";
1724
1725   /* Set up the align_*_log variables, defaulting them to 1 if they
1726      were still unset.  */
1727   if (align_loops <= 0) align_loops = 1;
1728   if (align_loops_max_skip > align_loops || !align_loops)
1729     align_loops_max_skip = align_loops - 1;
1730   align_loops_log = floor_log2 (align_loops * 2 - 1);
1731   if (align_jumps <= 0) align_jumps = 1;
1732   if (align_jumps_max_skip > align_jumps || !align_jumps)
1733     align_jumps_max_skip = align_jumps - 1;
1734   align_jumps_log = floor_log2 (align_jumps * 2 - 1);
1735   if (align_labels <= 0) align_labels = 1;
1736   align_labels_log = floor_log2 (align_labels * 2 - 1);
1737   if (align_labels_max_skip > align_labels || !align_labels)
1738     align_labels_max_skip = align_labels - 1;
1739   if (align_functions <= 0) align_functions = 1;
1740   align_functions_log = floor_log2 (align_functions * 2 - 1);
1741
1742   /* Unrolling all loops implies that standard loop unrolling must also
1743      be done.  */
1744   if (flag_unroll_all_loops)
1745     flag_unroll_loops = 1;
1746
1747   /* The loop unrolling code assumes that cse will be run after loop.
1748      web and rename-registers also help when run after loop unrolling.  */
1749
1750   if (flag_rerun_cse_after_loop == AUTODETECT_VALUE)
1751     flag_rerun_cse_after_loop = flag_unroll_loops || flag_peel_loops;
1752   if (flag_web == AUTODETECT_VALUE)
1753     flag_web = flag_unroll_loops || flag_peel_loops;
1754   if (flag_rename_registers == AUTODETECT_VALUE)
1755     flag_rename_registers = flag_unroll_loops || flag_peel_loops;
1756
1757   if (flag_non_call_exceptions)
1758     flag_asynchronous_unwind_tables = 1;
1759   if (flag_asynchronous_unwind_tables)
1760     flag_unwind_tables = 1;
1761
1762   /* Disable unit-at-a-time mode for frontends not supporting callgraph
1763      interface.  */
1764   if (flag_unit_at_a_time && ! lang_hooks.callgraph.expand_function)
1765     flag_unit_at_a_time = 0;
1766
1767   if (!flag_unit_at_a_time)
1768     flag_section_anchors = 0;
1769
1770   if (flag_value_profile_transformations)
1771     flag_profile_values = 1;
1772
1773   /* Warn about options that are not supported on this machine.  */
1774 #ifndef INSN_SCHEDULING
1775   if (flag_schedule_insns || flag_schedule_insns_after_reload)
1776     warning (0, "instruction scheduling not supported on this target machine");
1777 #endif
1778 #ifndef DELAY_SLOTS
1779   if (flag_delayed_branch)
1780     warning (0, "this target machine does not have delayed branches");
1781 #endif
1782
1783   user_label_prefix = USER_LABEL_PREFIX;
1784   if (flag_leading_underscore != -1)
1785     {
1786       /* If the default prefix is more complicated than "" or "_",
1787          issue a warning and ignore this option.  */
1788       if (user_label_prefix[0] == 0 ||
1789           (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1790         {
1791           user_label_prefix = flag_leading_underscore ? "_" : "";
1792         }
1793       else
1794         warning (0, "-f%sleading-underscore not supported on this target machine",
1795                  flag_leading_underscore ? "" : "no-");
1796     }
1797
1798   /* If we are in verbose mode, write out the version and maybe all the
1799      option flags in use.  */
1800   if (version_flag)
1801     {
1802       print_version (stderr, "");
1803       if (! quiet_flag)
1804         print_switch_values (print_to_stderr);
1805     }
1806
1807   if (flag_syntax_only)
1808     {
1809       write_symbols = NO_DEBUG;
1810       profile_flag = 0;
1811     }
1812
1813   /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1814      level is 0.  */
1815   if (debug_info_level == DINFO_LEVEL_NONE)
1816     write_symbols = NO_DEBUG;
1817
1818   /* Now we know write_symbols, set up the debug hooks based on it.
1819      By default we do nothing for debug output.  */
1820   if (PREFERRED_DEBUGGING_TYPE == NO_DEBUG)
1821     default_debug_hooks = &do_nothing_debug_hooks;
1822 #if defined(DBX_DEBUGGING_INFO)
1823   else if (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG)
1824     default_debug_hooks = &dbx_debug_hooks;
1825 #endif
1826 #if defined(XCOFF_DEBUGGING_INFO)
1827   else if (PREFERRED_DEBUGGING_TYPE == XCOFF_DEBUG)
1828     default_debug_hooks = &xcoff_debug_hooks;
1829 #endif
1830 #ifdef SDB_DEBUGGING_INFO
1831   else if (PREFERRED_DEBUGGING_TYPE == SDB_DEBUG)
1832     default_debug_hooks = &sdb_debug_hooks;
1833 #endif
1834 #ifdef DWARF2_DEBUGGING_INFO
1835   else if (PREFERRED_DEBUGGING_TYPE == DWARF2_DEBUG)
1836     default_debug_hooks = &dwarf2_debug_hooks;
1837 #endif
1838 #ifdef VMS_DEBUGGING_INFO
1839   else if (PREFERRED_DEBUGGING_TYPE == VMS_DEBUG
1840            || PREFERRED_DEBUGGING_TYPE == VMS_AND_DWARF2_DEBUG)
1841     default_debug_hooks = &vmsdbg_debug_hooks;
1842 #endif
1843
1844   if (write_symbols == NO_DEBUG)
1845     ;
1846 #if defined(DBX_DEBUGGING_INFO)
1847   else if (write_symbols == DBX_DEBUG)
1848     debug_hooks = &dbx_debug_hooks;
1849 #endif
1850 #if defined(XCOFF_DEBUGGING_INFO)
1851   else if (write_symbols == XCOFF_DEBUG)
1852     debug_hooks = &xcoff_debug_hooks;
1853 #endif
1854 #ifdef SDB_DEBUGGING_INFO
1855   else if (write_symbols == SDB_DEBUG)
1856     debug_hooks = &sdb_debug_hooks;
1857 #endif
1858 #ifdef DWARF2_DEBUGGING_INFO
1859   else if (write_symbols == DWARF2_DEBUG)
1860     debug_hooks = &dwarf2_debug_hooks;
1861 #endif
1862 #ifdef VMS_DEBUGGING_INFO
1863   else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1864     debug_hooks = &vmsdbg_debug_hooks;
1865 #endif
1866   else
1867     error ("target system does not support the \"%s\" debug format",
1868            debug_type_names[write_symbols]);
1869
1870   /* Now we know which debug output will be used so we can set
1871      flag_var_tracking, flag_rename_registers if the user has
1872      not specified them.  */
1873   if (debug_info_level < DINFO_LEVEL_NORMAL
1874       || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1875     {
1876       if (flag_var_tracking == 1
1877           || flag_var_tracking_uninit == 1)
1878         {
1879           if (debug_info_level < DINFO_LEVEL_NORMAL)
1880             warning (0, "variable tracking requested, but useless unless "
1881                      "producing debug info");
1882           else
1883             warning (0, "variable tracking requested, but not supported "
1884                      "by this debug format");
1885         }
1886       flag_var_tracking = 0;
1887       flag_var_tracking_uninit = 0;
1888     }
1889
1890   if (flag_rename_registers == AUTODETECT_VALUE)
1891     flag_rename_registers = default_debug_hooks->var_location
1892                             != do_nothing_debug_hooks.var_location;
1893
1894   if (flag_var_tracking == AUTODETECT_VALUE)
1895     flag_var_tracking = optimize >= 1;
1896
1897   /* If the user specifically requested variable tracking with tagging
1898      uninitialized variables, we need to turn on variable tracking.
1899      (We already determined above that variable tracking is feasible.)  */
1900   if (flag_var_tracking_uninit)
1901     flag_var_tracking = 1;
1902
1903   /* If auxiliary info generation is desired, open the output file.
1904      This goes in the same directory as the source file--unlike
1905      all the other output files.  */
1906   if (flag_gen_aux_info)
1907     {
1908       aux_info_file = fopen (aux_info_file_name, "w");
1909       if (aux_info_file == 0)
1910         fatal_error ("can%'t open %s: %m", aux_info_file_name);
1911     }
1912
1913   if (! targetm.have_named_sections)
1914     {
1915       if (flag_function_sections)
1916         {
1917           warning (0, "-ffunction-sections not supported for this target");
1918           flag_function_sections = 0;
1919         }
1920       if (flag_data_sections)
1921         {
1922           warning (0, "-fdata-sections not supported for this target");
1923           flag_data_sections = 0;
1924         }
1925     }
1926
1927   if (flag_function_sections && profile_flag)
1928     {
1929       warning (0, "-ffunction-sections disabled; it makes profiling impossible");
1930       flag_function_sections = 0;
1931     }
1932
1933 #ifndef HAVE_prefetch
1934   if (flag_prefetch_loop_arrays)
1935     {
1936       warning (0, "-fprefetch-loop-arrays not supported for this target");
1937       flag_prefetch_loop_arrays = 0;
1938     }
1939 #else
1940   if (flag_prefetch_loop_arrays && !HAVE_prefetch)
1941     {
1942       warning (0, "-fprefetch-loop-arrays not supported for this target (try -march switches)");
1943       flag_prefetch_loop_arrays = 0;
1944     }
1945 #endif
1946
1947   /* This combination of options isn't handled for i386 targets and doesn't
1948      make much sense anyway, so don't allow it.  */
1949   if (flag_prefetch_loop_arrays && optimize_size)
1950     {
1951       warning (0, "-fprefetch-loop-arrays is not supported with -Os");
1952       flag_prefetch_loop_arrays = 0;
1953     }
1954
1955 #ifndef OBJECT_FORMAT_ELF
1956 #ifndef OBJECT_FORMAT_MACHO
1957   if (flag_function_sections && write_symbols != NO_DEBUG)
1958     warning (0, "-ffunction-sections may affect debugging on some targets");
1959 #endif
1960 #endif
1961
1962   /* The presence of IEEE signaling NaNs, implies all math can trap.  */
1963   if (flag_signaling_nans)
1964     flag_trapping_math = 1;
1965
1966   /* With -fcx-limited-range, we do cheap and quick complex arithmetic.  */
1967   if (flag_cx_limited_range)
1968     flag_complex_method = 0;
1969
1970   /* Targets must be able to place spill slots at lower addresses.  If the
1971      target already uses a soft frame pointer, the transition is trivial.  */
1972   if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
1973     {
1974       warning (0, "-fstack-protector not supported for this target");
1975       flag_stack_protect = 0;
1976     }
1977   if (!flag_stack_protect)
1978     warn_stack_protect = 0;
1979
1980   /* ??? Unwind info is not correct around the CFG unless either a frame
1981      pointer is present or A_O_A is set.  Fixing this requires rewriting
1982      unwind info generation to be aware of the CFG and propagating states
1983      around edges.  */
1984   if (flag_unwind_tables && !ACCUMULATE_OUTGOING_ARGS
1985       && flag_omit_frame_pointer)
1986     {
1987       warning (0, "unwind tables currently requires a frame pointer "
1988                "for correctness");
1989       flag_omit_frame_pointer = 0;
1990     }
1991 }
1992
1993 /* Initialize the compiler back end.  */
1994 static void
1995 backend_init (void)
1996 {
1997   init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
1998                   || debug_info_level == DINFO_LEVEL_VERBOSE
1999 #ifdef VMS_DEBUGGING_INFO
2000                     /* Enable line number info for traceback.  */
2001                     || debug_info_level > DINFO_LEVEL_NONE
2002 #endif
2003                     || flag_test_coverage);
2004
2005   init_rtlanal ();
2006   init_regs ();
2007   init_fake_stack_mems ();
2008   init_alias_once ();
2009   init_inline_once ();
2010   init_reload ();
2011   init_varasm_once ();
2012
2013   /* The following initialization functions need to generate rtl, so
2014      provide a dummy function context for them.  */
2015   init_dummy_function_start ();
2016   init_expmed ();
2017   if (flag_caller_saves)
2018     init_caller_save ();
2019   expand_dummy_function_end ();
2020 }
2021
2022 /* Language-dependent initialization.  Returns nonzero on success.  */
2023 static int
2024 lang_dependent_init (const char *name)
2025 {
2026   location_t save_loc = input_location;
2027   if (dump_base_name == 0)
2028     dump_base_name = name && name[0] ? name : "gccdump";
2029
2030   /* Other front-end initialization.  */
2031 #ifdef USE_MAPPED_LOCATION
2032   input_location = BUILTINS_LOCATION;
2033 #else
2034   input_filename = "<built-in>";
2035   input_line = 0;
2036 #endif
2037   if (lang_hooks.init () == 0)
2038     return 0;
2039   input_location = save_loc;
2040
2041   init_asm_output (name);
2042
2043   /* These create various _DECL nodes, so need to be called after the
2044      front end is initialized.  */
2045   init_eh ();
2046   init_optabs ();
2047
2048   /* The following initialization functions need to generate rtl, so
2049      provide a dummy function context for them.  */
2050   init_dummy_function_start ();
2051   init_expr_once ();
2052
2053   /* Although the actions of init_set_costs are language-independent,
2054      it uses optabs, so we cannot call it from backend_init.  */
2055   init_set_costs ();
2056
2057   expand_dummy_function_end ();
2058
2059   /* If dbx symbol table desired, initialize writing it and output the
2060      predefined types.  */
2061   timevar_push (TV_SYMOUT);
2062
2063 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
2064   if (dwarf2out_do_frame ())
2065     dwarf2out_frame_init ();
2066 #endif
2067
2068   /* Now we have the correct original filename, we can initialize
2069      debug output.  */
2070   (*debug_hooks->init) (name);
2071
2072   timevar_pop (TV_SYMOUT);
2073
2074   return 1;
2075 }
2076
2077 void
2078 dump_memory_report (bool final)
2079 {
2080   ggc_print_statistics ();
2081   stringpool_statistics ();
2082   dump_tree_statistics ();
2083   dump_rtx_statistics ();
2084   dump_varray_statistics ();
2085   dump_alloc_pool_statistics ();
2086   dump_bitmap_statistics ();
2087   dump_ggc_loc_statistics (final);
2088 }
2089
2090 /* Clean up: close opened files, etc.  */
2091
2092 static void
2093 finalize (void)
2094 {
2095   /* Close the dump files.  */
2096   if (flag_gen_aux_info)
2097     {
2098       fclose (aux_info_file);
2099       if (errorcount)
2100         unlink (aux_info_file_name);
2101     }
2102
2103   /* Close non-debugging input and output files.  Take special care to note
2104      whether fclose returns an error, since the pages might still be on the
2105      buffer chain while the file is open.  */
2106
2107   if (asm_out_file)
2108     {
2109       if (ferror (asm_out_file) != 0)
2110         fatal_error ("error writing to %s: %m", asm_file_name);
2111       if (fclose (asm_out_file) != 0)
2112         fatal_error ("error closing %s: %m", asm_file_name);
2113     }
2114
2115   finish_optimization_passes ();
2116
2117   if (mem_report)
2118     dump_memory_report (true);
2119
2120   /* Language-specific end of compilation actions.  */
2121   lang_hooks.finish ();
2122 }
2123
2124 /* Initialize the compiler, and compile the input file.  */
2125 static void
2126 do_compile (void)
2127 {
2128   /* Initialize timing first.  The C front ends read the main file in
2129      the post_options hook, and C++ does file timings.  */
2130   if (time_report || !quiet_flag  || flag_detailed_statistics)
2131     timevar_init ();
2132   timevar_start (TV_TOTAL);
2133
2134   process_options ();
2135
2136   /* Don't do any more if an error has already occurred.  */
2137   if (!errorcount)
2138     {
2139       /* This must be run always, because it is needed to compute the FP
2140          predefined macros, such as __LDBL_MAX__, for targets using non
2141          default FP formats.  */
2142       init_adjust_machine_modes ();
2143
2144       /* Set up the back-end if requested.  */
2145       if (!no_backend)
2146         backend_init ();
2147
2148       /* Language-dependent initialization.  Returns true on success.  */
2149       if (lang_dependent_init (main_input_filename))
2150         compile_file ();
2151
2152       finalize ();
2153     }
2154
2155   /* Stop timing and print the times.  */
2156   timevar_stop (TV_TOTAL);
2157   timevar_print (stderr);
2158 }
2159
2160 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2161    Exit code is FATAL_EXIT_CODE if can't open files or if there were
2162    any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2163
2164    It is not safe to call this function more than once.  */
2165
2166 int
2167 toplev_main (unsigned int argc, const char **argv)
2168 {
2169   save_argv = argv;
2170
2171   /* Initialization of GCC's environment, and diagnostics.  */
2172   general_init (argv[0]);
2173
2174   /* Parse the options and do minimal processing; basically just
2175      enough to default flags appropriately.  */
2176   decode_options (argc, argv);
2177
2178   init_local_tick ();
2179
2180   /* Exit early if we can (e.g. -help).  */
2181   if (!exit_after_options)
2182     do_compile ();
2183
2184   if (errorcount || sorrycount)
2185     return (FATAL_EXIT_CODE);
2186
2187   return (SUCCESS_EXIT_CODE);
2188 }