OSDN Git Service

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