OSDN Git Service

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