OSDN Git Service

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