OSDN Git Service

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