OSDN Git Service

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