OSDN Git Service

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