OSDN Git Service

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