OSDN Git Service

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