OSDN Git Service

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