OSDN Git Service

364a2aafcf59ccfb2ff1ca0e0da07233223113d1
[pf3gnuchains/gcc-fork.git] / gcc / toplev.c
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4    Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
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 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include <signal.h>
32
33 #ifdef HAVE_SYS_RESOURCE_H
34 # include <sys/resource.h>
35 #endif
36
37 #ifdef HAVE_SYS_TIMES_H
38 # include <sys/times.h>
39 #endif
40
41 #include "line-map.h"
42 #include "input.h"
43 #include "tree.h"
44 #include "realmpfr.h"   /* For GMP/MPFR/MPC versions, in print_version.  */
45 #include "version.h"
46 #include "rtl.h"
47 #include "tm_p.h"
48 #include "flags.h"
49 #include "insn-attr.h"
50 #include "insn-config.h"
51 #include "insn-flags.h"
52 #include "hard-reg-set.h"
53 #include "recog.h"
54 #include "output.h"
55 #include "except.h"
56 #include "function.h"
57 #include "toplev.h"
58 #include "expr.h"
59 #include "basic-block.h"
60 #include "intl.h"
61 #include "ggc.h"
62 #include "graph.h"
63 #include "regs.h"
64 #include "timevar.h"
65 #include "diagnostic.h"
66 #include "params.h"
67 #include "reload.h"
68 #include "ira.h"
69 #include "dwarf2asm.h"
70 #include "integrate.h"
71 #include "debug.h"
72 #include "target.h"
73 #include "langhooks.h"
74 #include "cfglayout.h"
75 #include "cfgloop.h"
76 #include "hosthooks.h"
77 #include "cgraph.h"
78 #include "opts.h"
79 #include "coverage.h"
80 #include "value-prof.h"
81 #include "alloc-pool.h"
82 #include "tree-mudflap.h"
83 #include "tree-pass.h"
84 #include "gimple.h"
85 #include "tree-ssa-alias.h"
86 #include "plugin.h"
87
88 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
89 #include "dwarf2out.h"
90 #endif
91
92 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
93 #include "dbxout.h"
94 #endif
95
96 #ifdef SDB_DEBUGGING_INFO
97 #include "sdbout.h"
98 #endif
99
100 #ifdef XCOFF_DEBUGGING_INFO
101 #include "xcoffout.h"           /* Needed for external data
102                                    declarations for e.g. AIX 4.x.  */
103 #endif
104
105 static void general_init (const char *);
106 static void do_compile (void);
107 static void process_options (void);
108 static void backend_init (void);
109 static int lang_dependent_init (const char *);
110 static void init_asm_output (const char *);
111 static void finalize (void);
112
113 static void crash_signal (int) ATTRIBUTE_NORETURN;
114 static void setup_core_dumping (void);
115 static void compile_file (void);
116
117 /* Nonzero to dump debug info whilst parsing (-dy option).  */
118 static int set_yydebug;
119
120 /* True if we don't need a backend (e.g. preprocessing only).  */
121 static bool no_backend;
122
123 /* Length of line when printing switch values.  */
124 #define MAX_LINE 75
125
126 /* Name of program invoked, sans directories.  */
127
128 const char *progname;
129
130 /* Copy of argument vector to toplev_main.  */
131 static const char **save_argv;
132
133 /* Name of top-level original source file (what was input to cpp).
134    This comes from the #-command at the beginning of the actual input.
135    If there isn't any there, then this is the cc1 input file name.  */
136
137 const char *main_input_filename;
138
139 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
140    to optimize in process_options ().  */
141 #define AUTODETECT_VALUE 2
142
143 /* Current position in real source file.  */
144
145 location_t input_location;
146
147 struct line_maps *line_table;
148
149 /* Name to use as base of names for dump output files.  */
150
151 const char *dump_base_name;
152
153 /* Directory used for dump output files.  */
154
155 const char *dump_dir_name;
156
157 /* Name to use as a base for auxiliary output files.  */
158
159 const char *aux_base_name;
160
161 /* Prefix for profile data files */
162 const char *profile_data_prefix;
163
164 /* A mask of target_flags that includes bit X if X was set or cleared
165    on the command line.  */
166
167 int target_flags_explicit;
168
169 /* Debug hooks - dependent upon command line options.  */
170
171 const struct gcc_debug_hooks *debug_hooks;
172
173 /* Other flags saying which kinds of debugging dump have been requested.  */
174
175 int rtl_dump_and_exit;
176 int flag_print_asm_name;
177 enum graph_dump_types graph_dump_format;
178
179 /* Name for output file of assembly code, specified with -o.  */
180
181 const char *asm_file_name;
182
183 /* Nonzero means do optimizations.  -O.
184    Particular numeric values stand for particular amounts of optimization;
185    thus, -O2 stores 2 here.  However, the optimizations beyond the basic
186    ones are not controlled directly by this variable.  Instead, they are
187    controlled by individual `flag_...' variables that are defaulted
188    based on this variable.  */
189
190 int optimize = 0;
191
192 /* Nonzero means optimize for size.  -Os.
193    The only valid values are zero and nonzero. When optimize_size is
194    nonzero, optimize defaults to 2, but certain individual code
195    bloating optimizations are disabled.  */
196
197 int optimize_size = 0;
198
199 /* True if this is the lto front end.  This is used to disable
200    gimple generation and lowering passes that are normally run on the
201    output of a front end.  These passes must be bypassed for lto since
202    they have already been done before the gimple was written.  */
203
204 bool in_lto_p = false;
205
206 /* Nonzero if we should write GIMPLE bytecode for link-time optimization.  */
207
208 int flag_generate_lto;
209
210 /* The FUNCTION_DECL for the function currently being compiled,
211    or 0 if between functions.  */
212 tree current_function_decl;
213
214 /* Set to the FUNC_BEGIN label of the current function, or NULL
215    if none.  */
216 const char * current_function_func_begin_label;
217
218 /* Nonzero means to collect statistics which might be expensive
219    and to print them when we are done.  */
220 int flag_detailed_statistics = 0;
221
222 /* A random sequence of characters, unless overridden by user.  */
223 static const char *flag_random_seed;
224
225 /* A local time stamp derived from the time of compilation. It will be
226    zero if the system cannot provide a time.  It will be -1u, if the
227    user has specified a particular random seed.  */
228 unsigned local_tick;
229
230 /* -f flags.  */
231
232 /* Nonzero means `char' should be signed.  */
233
234 int flag_signed_char;
235
236 /* Nonzero means give an enum type only as many bytes as it needs.  A value
237    of 2 means it has not yet been initialized.  */
238
239 int flag_short_enums;
240
241 /* Nonzero if structures and unions should be returned in memory.
242
243    This should only be defined if compatibility with another compiler or
244    with an ABI is needed, because it results in slower code.  */
245
246 #ifndef DEFAULT_PCC_STRUCT_RETURN
247 #define DEFAULT_PCC_STRUCT_RETURN 1
248 #endif
249
250 /* Nonzero for -fpcc-struct-return: return values the same way PCC does.  */
251
252 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
253
254 /* 0 means straightforward implementation of complex divide acceptable.
255    1 means wide ranges of inputs must work for complex divide.
256    2 means C99-like requirements for complex multiply and divide.  */
257
258 int flag_complex_method = 1;
259
260 /* Nonzero means we should be saving declaration info into a .X file.  */
261
262 int flag_gen_aux_info = 0;
263
264 /* Specified name of aux-info file.  */
265
266 const char *aux_info_file_name;
267
268 /* Nonzero if we are compiling code for a shared library, zero for
269    executable.  */
270
271 int flag_shlib;
272
273 /* Generate code for GNU or NeXT Objective-C runtime environment.  */
274
275 #ifdef NEXT_OBJC_RUNTIME
276 int flag_next_runtime = 1;
277 #else
278 int flag_next_runtime = 0;
279 #endif
280
281 /* Set to the default thread-local storage (tls) model to use.  */
282
283 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
284
285 /* Set the default region and algorithm for the integrated register
286    allocator.  */
287
288 enum ira_algorithm flag_ira_algorithm = IRA_ALGORITHM_CB;
289 enum ira_region flag_ira_region = IRA_REGION_MIXED;
290
291 /* Set the default value for -fira-verbose.  */
292
293 unsigned int flag_ira_verbose = 5;
294
295 /* Set the default for excess precision.  */
296
297 enum excess_precision flag_excess_precision_cmdline = EXCESS_PRECISION_DEFAULT;
298 enum excess_precision flag_excess_precision = EXCESS_PRECISION_DEFAULT;
299
300 /* Nonzero means change certain warnings into errors.
301    Usually these are warnings about failure to conform to some standard.  */
302
303 int flag_pedantic_errors = 0;
304
305 /* Nonzero means make permerror produce warnings instead of errors.  */
306
307 int flag_permissive = 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 /* Positive if we should track variables, negative if we should run
332    the var-tracking pass only to discard debug annotations, zero if
333    we're not to run it.  When flag_var_tracking == AUTODETECT_VALUE it
334    will be set according to optimize, debug_info_level and debug_hooks
335    in process_options ().  */
336 int flag_var_tracking = AUTODETECT_VALUE;
337
338 /* Positive if we should track variables at assignments, negative if
339    we should run the var-tracking pass only to discard debug
340    annotations.  When flag_var_tracking_assignments ==
341    AUTODETECT_VALUE it will be set according to flag_var_tracking.  */
342 int flag_var_tracking_assignments = AUTODETECT_VALUE;
343
344 /* Nonzero if we should toggle flag_var_tracking_assignments after
345    processing options and computing its default.  */
346 int flag_var_tracking_assignments_toggle = 0;
347
348 /* Type of stack check.  */
349 enum stack_check_type flag_stack_check = NO_STACK_CHECK;
350
351 /* True if the user has tagged the function with the 'section'
352    attribute.  */
353
354 bool user_defined_section_attribute = false;
355
356 /* Values of the -falign-* flags: how much to align labels in code.
357    0 means `use default', 1 means `don't align'.
358    For each variable, there is an _log variant which is the power
359    of two not less than the variable, for .align output.  */
360
361 int align_loops_log;
362 int align_loops_max_skip;
363 int align_jumps_log;
364 int align_jumps_max_skip;
365 int align_labels_log;
366 int align_labels_max_skip;
367 int align_functions_log;
368
369 typedef struct
370 {
371   const char *const string;
372   int *const variable;
373   const int on_value;
374 }
375 lang_independent_options;
376
377 /* Nonzero if subexpressions must be evaluated from left-to-right.  */
378 int flag_evaluation_order = 0;
379
380 /* The user symbol prefix after having resolved same.  */
381 const char *user_label_prefix;
382
383 static const param_info lang_independent_params[] = {
384 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT, MIN, MAX) \
385   { OPTION, DEFAULT, false, MIN, MAX, HELP },
386 #include "params.def"
387 #undef DEFPARAM
388   { NULL, 0, false, 0, 0, NULL }
389 };
390
391 /* Output files for assembler code (real compiler output)
392    and debugging dumps.  */
393
394 FILE *asm_out_file;
395 FILE *aux_info_file;
396 FILE *dump_file = NULL;
397 const char *dump_file_name;
398
399 /* The current working directory of a translation.  It's generally the
400    directory from which compilation was initiated, but a preprocessed
401    file may specify the original directory in which it was
402    created.  */
403
404 static const char *src_pwd;
405
406 /* Initialize src_pwd with the given string, and return true.  If it
407    was already initialized, return false.  As a special case, it may
408    be called with a NULL argument to test whether src_pwd has NOT been
409    initialized yet.  */
410
411 bool
412 set_src_pwd (const char *pwd)
413 {
414   if (src_pwd)
415     {
416       if (strcmp (src_pwd, pwd) == 0)
417         return true;
418       else
419         return false;
420     }
421
422   src_pwd = xstrdup (pwd);
423   return true;
424 }
425
426 /* Return the directory from which the translation unit was initiated,
427    in case set_src_pwd() was not called before to assign it a
428    different value.  */
429
430 const char *
431 get_src_pwd (void)
432 {
433   if (! src_pwd)
434     {
435       src_pwd = getpwd ();
436       if (!src_pwd)
437         src_pwd = ".";
438     }
439
440    return src_pwd;
441 }
442
443 /* Called when the start of a function definition is parsed,
444    this function prints on stderr the name of the function.  */
445 void
446 announce_function (tree decl)
447 {
448   if (!quiet_flag)
449     {
450       if (rtl_dump_and_exit)
451         fprintf (stderr, "%s ",
452                  identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl))));
453       else
454         fprintf (stderr, " %s",
455                  identifier_to_locale (lang_hooks.decl_printable_name (decl, 2)));
456       fflush (stderr);
457       pp_needs_newline (global_dc->printer) = true;
458       diagnostic_set_last_function (global_dc, (diagnostic_info *) NULL);
459     }
460 }
461
462 /* Initialize local_tick with the time of day, or -1 if
463    flag_random_seed is set.  */
464
465 static void
466 init_local_tick (void)
467 {
468   if (!flag_random_seed)
469     {
470       /* Get some more or less random data.  */
471 #ifdef HAVE_GETTIMEOFDAY
472       {
473         struct timeval tv;
474
475         gettimeofday (&tv, NULL);
476         local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
477       }
478 #else
479       {
480         time_t now = time (NULL);
481
482         if (now != (time_t)-1)
483           local_tick = (unsigned) now;
484       }
485 #endif
486     }
487   else
488     local_tick = -1;
489 }
490
491 /* Set up a default flag_random_seed and local_tick, unless the user
492    already specified one.  Must be called after init_local_tick.  */
493
494 static void
495 init_random_seed (void)
496 {
497   unsigned HOST_WIDE_INT value;
498   static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
499
500   value = local_tick ^ getpid ();
501
502   sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
503   flag_random_seed = random_seed;
504 }
505
506 /* Obtain the random_seed string.  Unless NOINIT, initialize it if
507    it's not provided in the command line.  */
508
509 const char *
510 get_random_seed (bool noinit)
511 {
512   if (!flag_random_seed && !noinit)
513     init_random_seed ();
514   return flag_random_seed;
515 }
516
517 /* Modify the random_seed string to VAL.  Return its previous
518    value.  */
519
520 const char *
521 set_random_seed (const char *val)
522 {
523   const char *old = flag_random_seed;
524   flag_random_seed = val;
525   return old;
526 }
527
528 /* Decode the string P as an integral parameter.
529    If the string is indeed an integer return its numeric value else
530    issue an Invalid Option error for the option PNAME and return DEFVAL.
531    If PNAME is zero just return DEFVAL, do not call error.  */
532
533 int
534 read_integral_parameter (const char *p, const char *pname, const int  defval)
535 {
536   const char *endp = p;
537
538   while (*endp)
539     {
540       if (ISDIGIT (*endp))
541         endp++;
542       else
543         break;
544     }
545
546   if (*endp != 0)
547     {
548       if (pname != 0)
549         error ("invalid option argument %qs", pname);
550       return defval;
551     }
552
553   return atoi (p);
554 }
555
556 #if GCC_VERSION < 3004
557
558 /* The functions floor_log2 and exact_log2 are defined as inline
559    functions in toplev.h if GCC_VERSION >= 3004.  The definitions here
560    are used for older versions of gcc.  */
561
562 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
563    If X is 0, return -1.  */
564
565 int
566 floor_log2 (unsigned HOST_WIDE_INT x)
567 {
568   int t = 0;
569
570   if (x == 0)
571     return -1;
572
573   if (HOST_BITS_PER_WIDE_INT > 64)
574     if (x >= (unsigned HOST_WIDE_INT) 1 << (t + 64))
575       t += 64;
576   if (HOST_BITS_PER_WIDE_INT > 32)
577     if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 32))
578       t += 32;
579   if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 16))
580     t += 16;
581   if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 8))
582     t += 8;
583   if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 4))
584     t += 4;
585   if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 2))
586     t += 2;
587   if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 1))
588     t += 1;
589
590   return t;
591 }
592
593 /* Return the logarithm of X, base 2, considering X unsigned,
594    if X is a power of 2.  Otherwise, returns -1.  */
595
596 int
597 exact_log2 (unsigned HOST_WIDE_INT x)
598 {
599   if (x != (x & -x))
600     return -1;
601   return floor_log2 (x);
602 }
603
604 #endif /* GCC_VERSION < 3004 */
605
606 /* Handler for fatal signals, such as SIGSEGV.  These are transformed
607    into ICE messages, which is much more user friendly.  In case the
608    error printer crashes, reset the signal to prevent infinite recursion.  */
609
610 static void
611 crash_signal (int signo)
612 {
613   signal (signo, SIG_DFL);
614
615   /* If we crashed while processing an ASM statement, then be a little more
616      graceful.  It's most likely the user's fault.  */
617   if (this_is_asm_operands)
618     {
619       output_operand_lossage ("unrecoverable error");
620       exit (FATAL_EXIT_CODE);
621     }
622
623   internal_error ("%s", strsignal (signo));
624 }
625
626 /* Arrange to dump core on error.  (The regular error message is still
627    printed first, except in the case of abort().)  */
628
629 static void
630 setup_core_dumping (void)
631 {
632 #ifdef SIGABRT
633   signal (SIGABRT, SIG_DFL);
634 #endif
635 #if defined(HAVE_SETRLIMIT)
636   {
637     struct rlimit rlim;
638     if (getrlimit (RLIMIT_CORE, &rlim) != 0)
639       fatal_error ("getting core file size maximum limit: %m");
640     rlim.rlim_cur = rlim.rlim_max;
641     if (setrlimit (RLIMIT_CORE, &rlim) != 0)
642       fatal_error ("setting core file size limit to maximum: %m");
643   }
644 #endif
645   diagnostic_abort_on_error (global_dc);
646 }
647
648
649 /* Strip off a legitimate source ending from the input string NAME of
650    length LEN.  Rather than having to know the names used by all of
651    our front ends, we strip off an ending of a period followed by
652    up to five characters.  (Java uses ".class".)  */
653
654 void
655 strip_off_ending (char *name, int len)
656 {
657   int i;
658   for (i = 2; i < 6 && len > i; i++)
659     {
660       if (name[len - i] == '.')
661         {
662           name[len - i] = '\0';
663           break;
664         }
665     }
666 }
667
668 /* Output a quoted string.  */
669
670 void
671 output_quoted_string (FILE *asm_file, const char *string)
672 {
673 #ifdef OUTPUT_QUOTED_STRING
674   OUTPUT_QUOTED_STRING (asm_file, string);
675 #else
676   char c;
677
678   putc ('\"', asm_file);
679   while ((c = *string++) != 0)
680     {
681       if (ISPRINT (c))
682         {
683           if (c == '\"' || c == '\\')
684             putc ('\\', asm_file);
685           putc (c, asm_file);
686         }
687       else
688         fprintf (asm_file, "\\%03o", (unsigned char) c);
689     }
690   putc ('\"', asm_file);
691 #endif
692 }
693
694 /* Output a file name in the form wanted by System V.  */
695
696 void
697 output_file_directive (FILE *asm_file, const char *input_name)
698 {
699   int len;
700   const char *na;
701
702   if (input_name == NULL)
703     input_name = "<stdin>";
704   else
705     input_name = remap_debug_filename (input_name);
706
707   len = strlen (input_name);
708   na = input_name + len;
709
710   /* NA gets INPUT_NAME sans directory names.  */
711   while (na > input_name)
712     {
713       if (IS_DIR_SEPARATOR (na[-1]))
714         break;
715       na--;
716     }
717
718 #ifdef ASM_OUTPUT_SOURCE_FILENAME
719   ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
720 #else
721   fprintf (asm_file, "\t.file\t");
722   output_quoted_string (asm_file, na);
723   putc ('\n', asm_file);
724 #endif
725 }
726
727 /* A subroutine of wrapup_global_declarations.  We've come to the end of
728    the compilation unit.  All deferred variables should be undeferred,
729    and all incomplete decls should be finalized.  */
730
731 void
732 wrapup_global_declaration_1 (tree decl)
733 {
734   /* We're not deferring this any longer.  Assignment is conditional to
735      avoid needlessly dirtying PCH pages.  */
736   if (CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_WITH_VIS)
737       && DECL_DEFER_OUTPUT (decl) != 0)
738     DECL_DEFER_OUTPUT (decl) = 0;
739
740   if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
741     lang_hooks.finish_incomplete_decl (decl);
742 }
743
744 /* A subroutine of wrapup_global_declarations.  Decide whether or not DECL
745    needs to be output.  Return true if it is output.  */
746
747 bool
748 wrapup_global_declaration_2 (tree decl)
749 {
750   if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
751     return false;
752
753   /* Don't write out static consts, unless we still need them.
754
755      We also keep static consts if not optimizing (for debugging),
756      unless the user specified -fno-keep-static-consts.
757      ??? They might be better written into the debug information.
758      This is possible when using DWARF.
759
760      A language processor that wants static constants to be always
761      written out (even if it is not used) is responsible for
762      calling rest_of_decl_compilation itself.  E.g. the C front-end
763      calls rest_of_decl_compilation from finish_decl.
764      One motivation for this is that is conventional in some
765      environments to write things like:
766      static const char rcsid[] = "... version string ...";
767      intending to force the string to be in the executable.
768
769      A language processor that would prefer to have unneeded
770      static constants "optimized away" would just defer writing
771      them out until here.  E.g. C++ does this, because static
772      constants are often defined in header files.
773
774      ??? A tempting alternative (for both C and C++) would be
775      to force a constant to be written if and only if it is
776      defined in a main file, as opposed to an include file.  */
777
778   if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
779     {
780       struct varpool_node *node;
781       bool needed = true;
782       node = varpool_node (decl);
783
784       if (node->finalized)
785         needed = false;
786       else if (node->alias)
787         needed = false;
788       else if (!cgraph_global_info_ready
789                && (TREE_USED (decl)
790                    || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
791         /* needed */;
792       else if (node->needed)
793         /* needed */;
794       else if (DECL_COMDAT (decl))
795         needed = false;
796       else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
797                && (optimize || !flag_keep_static_consts
798                    || DECL_ARTIFICIAL (decl)))
799         needed = false;
800
801       if (needed)
802         {
803           rest_of_decl_compilation (decl, 1, 1);
804           return true;
805         }
806     }
807
808   return false;
809 }
810
811 /* Do any final processing required for the declarations in VEC, of
812    which there are LEN.  We write out inline functions and variables
813    that have been deferred until this point, but which are required.
814    Returns nonzero if anything was put out.  */
815
816 bool
817 wrapup_global_declarations (tree *vec, int len)
818 {
819   bool reconsider, output_something = false;
820   int i;
821
822   for (i = 0; i < len; i++)
823     wrapup_global_declaration_1 (vec[i]);
824
825   /* Now emit any global variables or functions that we have been
826      putting off.  We need to loop in case one of the things emitted
827      here references another one which comes earlier in the list.  */
828   do
829     {
830       reconsider = false;
831       for (i = 0; i < len; i++)
832         reconsider |= wrapup_global_declaration_2 (vec[i]);
833       if (reconsider)
834         output_something = true;
835     }
836   while (reconsider);
837
838   return output_something;
839 }
840
841 /* A subroutine of check_global_declarations.  Issue appropriate warnings
842    for the global declaration DECL.  */
843
844 void
845 check_global_declaration_1 (tree decl)
846 {
847   /* Warn about any function declared static but not defined.  We don't
848      warn about variables, because many programs have static variables
849      that exist only to get some text into the object file.  */
850   if (TREE_CODE (decl) == FUNCTION_DECL
851       && DECL_INITIAL (decl) == 0
852       && DECL_EXTERNAL (decl)
853       && ! DECL_ARTIFICIAL (decl)
854       && ! TREE_NO_WARNING (decl)
855       && ! TREE_PUBLIC (decl)
856       && (warn_unused_function
857           || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
858     {
859       if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
860         pedwarn (input_location, 0, "%q+F used but never defined", decl);
861       else
862         warning (OPT_Wunused_function, "%q+F declared %<static%> but never defined", decl);
863       /* This symbol is effectively an "extern" declaration now.  */
864       TREE_PUBLIC (decl) = 1;
865       assemble_external (decl);
866     }
867
868   /* Warn about static fns or vars defined but not used.  */
869   if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
870        /* We don't warn about "static const" variables because the
871           "rcs_id" idiom uses that construction.  */
872        || (warn_unused_variable
873            && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
874       && ! DECL_IN_SYSTEM_HEADER (decl)
875       && ! TREE_USED (decl)
876       /* The TREE_USED bit for file-scope decls is kept in the identifier,
877          to handle multiple external decls in different scopes.  */
878       && ! (DECL_NAME (decl) && TREE_USED (DECL_NAME (decl)))
879       && ! DECL_EXTERNAL (decl)
880       && ! TREE_PUBLIC (decl)
881       /* A volatile variable might be used in some non-obvious way.  */
882       && ! TREE_THIS_VOLATILE (decl)
883       /* Global register variables must be declared to reserve them.  */
884       && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
885       /* Otherwise, ask the language.  */
886       && lang_hooks.decls.warn_unused_global (decl))
887     warning ((TREE_CODE (decl) == FUNCTION_DECL)
888              ? OPT_Wunused_function
889              : OPT_Wunused_variable,
890              "%q+D defined but not used", decl);
891 }
892
893 /* Issue appropriate warnings for the global declarations in VEC (of
894    which there are LEN).  */
895
896 void
897 check_global_declarations (tree *vec, int len)
898 {
899   int i;
900
901   for (i = 0; i < len; i++)
902     check_global_declaration_1 (vec[i]);
903 }
904
905 /* Emit debugging information for all global declarations in VEC.  */
906
907 void
908 emit_debug_global_declarations (tree *vec, int len)
909 {
910   int i;
911
912   /* Avoid confusing the debug information machinery when there are errors.  */
913   if (errorcount != 0 || sorrycount != 0)
914     return;
915
916   timevar_push (TV_SYMOUT);
917   for (i = 0; i < len; i++)
918     debug_hooks->global_decl (vec[i]);
919   timevar_pop (TV_SYMOUT);
920 }
921
922 /* Warn about a use of an identifier which was marked deprecated.  */
923 void
924 warn_deprecated_use (tree node, tree attr)
925 {
926   const char *msg;
927
928   if (node == 0 || !warn_deprecated_decl)
929     return;
930
931   if (!attr)
932     {
933       if (DECL_P (node))
934         attr = DECL_ATTRIBUTES (node);
935       else if (TYPE_P (node))
936         {
937           tree decl = TYPE_STUB_DECL (node);
938           if (decl)
939             attr = lookup_attribute ("deprecated",
940                                      TYPE_ATTRIBUTES (TREE_TYPE (decl)));
941         }
942     }
943
944   if (attr)
945     attr = lookup_attribute ("deprecated", attr);
946
947   if (attr)
948     msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
949   else
950     msg = NULL;
951
952   if (DECL_P (node))
953     {
954       expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node));
955       if (msg)
956         warning (OPT_Wdeprecated_declarations,
957                  "%qD is deprecated (declared at %s:%d): %s",
958                  node, xloc.file, xloc.line, msg);
959       else
960         warning (OPT_Wdeprecated_declarations,
961                  "%qD is deprecated (declared at %s:%d)",
962                  node, xloc.file, xloc.line);
963     }
964   else if (TYPE_P (node))
965     {
966       tree what = NULL_TREE;
967       tree decl = TYPE_STUB_DECL (node);
968
969       if (TYPE_NAME (node))
970         {
971           if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
972             what = TYPE_NAME (node);
973           else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
974                    && DECL_NAME (TYPE_NAME (node)))
975             what = DECL_NAME (TYPE_NAME (node));
976         }
977
978       if (decl)
979         {
980           expanded_location xloc
981             = expand_location (DECL_SOURCE_LOCATION (decl));
982           if (what)
983             {
984               if (msg)
985                 warning (OPT_Wdeprecated_declarations,
986                          "%qE is deprecated (declared at %s:%d): %s",
987                          what, xloc.file, xloc.line, msg);
988               else
989                 warning (OPT_Wdeprecated_declarations,
990                          "%qE is deprecated (declared at %s:%d)", what,
991                          xloc.file, xloc.line);
992             }
993           else
994             {
995               if (msg)
996                 warning (OPT_Wdeprecated_declarations,
997                          "type is deprecated (declared at %s:%d): %s",
998                          xloc.file, xloc.line, msg);
999               else
1000                 warning (OPT_Wdeprecated_declarations,
1001                          "type is deprecated (declared at %s:%d)",
1002                          xloc.file, xloc.line);
1003             }
1004         }
1005       else
1006         {
1007           if (what)
1008             {
1009               if (msg)
1010                 warning (OPT_Wdeprecated_declarations, "%qE is deprecated: %s",
1011                          what, msg);
1012               else
1013                 warning (OPT_Wdeprecated_declarations, "%qE is deprecated", what);
1014             }
1015           else
1016             {
1017               if (msg)
1018                 warning (OPT_Wdeprecated_declarations, "type is deprecated: %s",
1019                          msg);
1020               else
1021                 warning (OPT_Wdeprecated_declarations, "type is deprecated");
1022             }
1023         }
1024     }
1025 }
1026
1027 /* Compile an entire translation unit.  Write a file of assembly
1028    output and various debugging dumps.  */
1029
1030 static void
1031 compile_file (void)
1032 {
1033   /* Initialize yet another pass.  */
1034
1035   ggc_protect_identifiers = true;
1036
1037   init_cgraph ();
1038   init_final (main_input_filename);
1039   coverage_init (aux_base_name);
1040   statistics_init ();
1041   invoke_plugin_callbacks (PLUGIN_START_UNIT, NULL);
1042
1043   timevar_push (TV_PARSE);
1044
1045   /* Call the parser, which parses the entire file (calling
1046      rest_of_compilation for each function).  */
1047   lang_hooks.parse_file (set_yydebug);
1048
1049   /* Compilation is now finished except for writing
1050      what's left of the symbol table output.  */
1051   timevar_pop (TV_PARSE);
1052
1053   if (flag_syntax_only || flag_wpa)
1054     return;
1055
1056   ggc_protect_identifiers = false;
1057
1058   /* This must also call cgraph_finalize_compilation_unit.  */
1059   lang_hooks.decls.final_write_globals ();
1060
1061   if (errorcount || sorrycount)
1062     return;
1063
1064   varpool_assemble_pending_decls ();
1065   finish_aliases_2 ();
1066
1067   /* Likewise for mudflap static object registrations.  */
1068   if (flag_mudflap)
1069     mudflap_finish_file ();
1070
1071   /* Likewise for emulated thread-local storage.  */
1072   if (!targetm.have_tls)
1073     emutls_finish ();
1074
1075   output_shared_constant_pool ();
1076   output_object_blocks ();
1077
1078   /* Write out any pending weak symbol declarations.  */
1079   weak_finish ();
1080
1081   /* This must be at the end before unwind and debug info.
1082      Some target ports emit PIC setup thunks here.  */
1083   targetm.asm_out.code_end ();
1084
1085   /* Do dbx symbols.  */
1086   timevar_push (TV_SYMOUT);
1087
1088 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
1089   if (dwarf2out_do_frame ())
1090     dwarf2out_frame_finish ();
1091 #endif
1092
1093   (*debug_hooks->finish) (main_input_filename);
1094   timevar_pop (TV_SYMOUT);
1095
1096   /* Output some stuff at end of file if nec.  */
1097
1098   dw2_output_indirect_constants ();
1099
1100   /* Flush any pending external directives.  */
1101   process_pending_assemble_externals ();
1102
1103   /* Emit LTO marker if LTO info has been previously emitted.  This is
1104      used by collect2 to determine whether an object file contains IL.
1105      We used to emit an undefined reference here, but this produces
1106      link errors if an object file with IL is stored into a shared
1107      library without invoking lto1.  */
1108   if (flag_generate_lto)
1109     {
1110 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1111       ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, NULL_TREE,
1112                                       "__gnu_lto_v1",
1113                                       (unsigned HOST_WIDE_INT) 1, 8);
1114 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1115       ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, "__gnu_lto_v1",
1116                                  (unsigned HOST_WIDE_INT) 1, 8);
1117 #else
1118       ASM_OUTPUT_COMMON (asm_out_file, "__gnu_lto_v1",
1119                          (unsigned HOST_WIDE_INT) 1,
1120                          (unsigned HOST_WIDE_INT) 1);
1121 #endif
1122     }
1123
1124   /* Attach a special .ident directive to the end of the file to identify
1125      the version of GCC which compiled this code.  The format of the .ident
1126      string is patterned after the ones produced by native SVR4 compilers.  */
1127 #ifdef IDENT_ASM_OP
1128   if (!flag_no_ident)
1129     {
1130       const char *pkg_version = "(GNU) ";
1131
1132       if (strcmp ("(GCC) ", pkgversion_string))
1133         pkg_version = pkgversion_string;
1134       fprintf (asm_out_file, "%s\"GCC: %s%s\"\n",
1135                IDENT_ASM_OP, pkg_version, version_string);
1136     }
1137 #endif
1138
1139   /* Invoke registered plugin callbacks.  */
1140   invoke_plugin_callbacks (PLUGIN_FINISH_UNIT, NULL);
1141
1142   /* This must be at the end.  Some target ports emit end of file directives
1143      into the assembly file here, and hence we can not output anything to the
1144      assembly file after this point.  */
1145   targetm.asm_out.file_end ();
1146 }
1147
1148 /* Parse a -d... command line switch.  */
1149
1150 void
1151 decode_d_option (const char *arg)
1152 {
1153   int c;
1154
1155   while (*arg)
1156     switch (c = *arg++)
1157       {
1158       case 'A':
1159         flag_debug_asm = 1;
1160         break;
1161       case 'p':
1162         flag_print_asm_name = 1;
1163         break;
1164       case 'P':
1165         flag_dump_rtl_in_asm = 1;
1166         flag_print_asm_name = 1;
1167         break;
1168       case 'v':
1169         graph_dump_format = vcg;
1170         break;
1171       case 'x':
1172         rtl_dump_and_exit = 1;
1173         break;
1174       case 'y':
1175         set_yydebug = 1;
1176         break;
1177       case 'D': /* These are handled by the preprocessor.  */
1178       case 'I':
1179       case 'M':
1180       case 'N':
1181       case 'U':
1182         break;
1183       case 'H':
1184         setup_core_dumping();
1185         break;
1186       case 'a':
1187         enable_rtl_dump_file ();
1188         break;
1189
1190       default:
1191           warning (0, "unrecognized gcc debugging option: %c", c);
1192         break;
1193       }
1194 }
1195
1196 /* Indexed by enum debug_info_type.  */
1197 const char *const debug_type_names[] =
1198 {
1199   "none", "stabs", "coff", "dwarf-2", "xcoff", "vms"
1200 };
1201
1202 /* Print version information to FILE.
1203    Each line begins with INDENT (for the case where FILE is the
1204    assembler output file).  */
1205
1206 void
1207 print_version (FILE *file, const char *indent)
1208 {
1209   static const char fmt1[] =
1210 #ifdef __GNUC__
1211     N_("%s%s%s %sversion %s (%s)\n%s\tcompiled by GNU C version %s, ")
1212 #else
1213     N_("%s%s%s %sversion %s (%s) compiled by CC, ")
1214 #endif
1215     ;
1216   static const char fmt2[] =
1217     N_("GMP version %s, MPFR version %s, MPC version %s\n");
1218   static const char fmt3[] =
1219     N_("%s%swarning: %s header version %s differs from library version %s.\n");
1220   static const char fmt4[] =
1221     N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
1222 #ifndef __VERSION__
1223 #define __VERSION__ "[?]"
1224 #endif
1225   fprintf (file,
1226            file == stderr ? _(fmt1) : fmt1,
1227            indent, *indent != 0 ? " " : "",
1228            lang_hooks.name, pkgversion_string, version_string, TARGET_NAME,
1229            indent, __VERSION__);
1230
1231   /* We need to stringify the GMP macro values.  Ugh, gmp_version has
1232      two string formats, "i.j.k" and "i.j" when k is zero.  As of
1233      gmp-4.3.0, GMP always uses the 3 number format.  */
1234 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
1235 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3(X)
1236 #define GCC_GMP_VERSION_NUM(X,Y,Z) (((X) << 16L) | ((Y) << 8) | (Z))
1237 #define GCC_GMP_VERSION \
1238   GCC_GMP_VERSION_NUM(__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL)
1239 #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,3,0) && __GNU_MP_VERSION_PATCHLEVEL == 0
1240 #define GCC_GMP_STRINGIFY_VERSION GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION) "." \
1241   GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_MINOR)
1242 #else
1243 #define GCC_GMP_STRINGIFY_VERSION GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION) "." \
1244   GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_MINOR) "." \
1245   GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_PATCHLEVEL)
1246 #endif
1247   fprintf (file,
1248            file == stderr ? _(fmt2) : fmt2,
1249            GCC_GMP_STRINGIFY_VERSION, MPFR_VERSION_STRING, MPC_VERSION_STRING);
1250   if (strcmp (GCC_GMP_STRINGIFY_VERSION, gmp_version))
1251     fprintf (file,
1252              file == stderr ? _(fmt3) : fmt3,
1253              indent, *indent != 0 ? " " : "",
1254              "GMP", GCC_GMP_STRINGIFY_VERSION, gmp_version);
1255   if (strcmp (MPFR_VERSION_STRING, mpfr_get_version ()))
1256     fprintf (file,
1257              file == stderr ? _(fmt3) : fmt3,
1258              indent, *indent != 0 ? " " : "",
1259              "MPFR", MPFR_VERSION_STRING, mpfr_get_version ());
1260   if (strcmp (MPC_VERSION_STRING, mpc_get_version ()))
1261     fprintf (file,
1262              file == stderr ? _(fmt3) : fmt3,
1263              indent, *indent != 0 ? " " : "",
1264              "MPC", MPC_VERSION_STRING, mpc_get_version ());
1265   fprintf (file,
1266            file == stderr ? _(fmt4) : fmt4,
1267            indent, *indent != 0 ? " " : "",
1268            PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
1269
1270   print_plugins_versions (file, indent);
1271 }
1272
1273 #ifdef ASM_COMMENT_START
1274 static int
1275 print_to_asm_out_file (print_switch_type type, const char * text)
1276 {
1277   bool prepend_sep = true;
1278
1279   switch (type)
1280     {
1281     case SWITCH_TYPE_LINE_END:
1282       putc ('\n', asm_out_file);
1283       return 1;
1284
1285     case SWITCH_TYPE_LINE_START:
1286       fputs (ASM_COMMENT_START, asm_out_file);
1287       return strlen (ASM_COMMENT_START);
1288
1289     case SWITCH_TYPE_DESCRIPTIVE:
1290       if (ASM_COMMENT_START[0] == 0)
1291         prepend_sep = false;
1292       /* Drop through.  */
1293     case SWITCH_TYPE_PASSED:
1294     case SWITCH_TYPE_ENABLED:
1295       if (prepend_sep)
1296         fputc (' ', asm_out_file);
1297       fputs (text, asm_out_file);
1298       /* No need to return the length here as
1299          print_single_switch has already done it.  */
1300       return 0;
1301
1302     default:
1303       return -1;
1304     }
1305 }
1306 #endif
1307
1308 static int
1309 print_to_stderr (print_switch_type type, const char * text)
1310 {
1311   switch (type)
1312     {
1313     case SWITCH_TYPE_LINE_END:
1314       putc ('\n', stderr);
1315       return 1;
1316
1317     case SWITCH_TYPE_LINE_START:
1318       return 0;
1319
1320     case SWITCH_TYPE_PASSED:
1321     case SWITCH_TYPE_ENABLED:
1322       fputc (' ', stderr);
1323       /* Drop through.  */
1324
1325     case SWITCH_TYPE_DESCRIPTIVE:
1326       fputs (text, stderr);
1327       /* No need to return the length here as
1328          print_single_switch has already done it.  */
1329       return 0;
1330
1331     default:
1332       return -1;
1333     }
1334 }
1335
1336 /* Print an option value and return the adjusted position in the line.
1337    ??? print_fn doesn't handle errors, eg disk full; presumably other
1338    code will catch a disk full though.  */
1339
1340 static int
1341 print_single_switch (print_switch_fn_type print_fn,
1342                      int pos,
1343                      print_switch_type type,
1344                      const char * text)
1345 {
1346   /* The ultrix fprintf returns 0 on success, so compute the result
1347      we want here since we need it for the following test.  The +1
1348      is for the separator character that will probably be emitted.  */
1349   int len = strlen (text) + 1;
1350
1351   if (pos != 0
1352       && pos + len > MAX_LINE)
1353     {
1354       print_fn (SWITCH_TYPE_LINE_END, NULL);
1355       pos = 0;
1356     }
1357
1358   if (pos == 0)
1359     pos += print_fn (SWITCH_TYPE_LINE_START, NULL);
1360
1361   print_fn (type, text);
1362   return pos + len;
1363 }
1364
1365 /* Print active target switches using PRINT_FN.
1366    POS is the current cursor position and MAX is the size of a "line".
1367    Each line begins with INDENT and ends with TERM.
1368    Each switch is separated from the next by SEP.  */
1369
1370 static void
1371 print_switch_values (print_switch_fn_type print_fn)
1372 {
1373   int pos = 0;
1374   size_t j;
1375   const char **p;
1376
1377   /* Fill in the -frandom-seed option, if the user didn't pass it, so
1378      that it can be printed below.  This helps reproducibility.  */
1379   if (!flag_random_seed)
1380     init_random_seed ();
1381
1382   /* Print the options as passed.  */
1383   pos = print_single_switch (print_fn, pos,
1384                              SWITCH_TYPE_DESCRIPTIVE, _("options passed: "));
1385
1386   for (p = &save_argv[1]; *p != NULL; p++)
1387     {
1388       if (**p == '-')
1389         {
1390           /* Ignore these.  */
1391           if (strcmp (*p, "-o") == 0
1392               || strcmp (*p, "-dumpbase") == 0
1393               || strcmp (*p, "-dumpdir") == 0
1394               || strcmp (*p, "-auxbase") == 0)
1395             {
1396               if (p[1] != NULL)
1397                 p++;
1398               continue;
1399             }
1400
1401           if (strcmp (*p, "-quiet") == 0
1402               || strcmp (*p, "-version") == 0)
1403             continue;
1404
1405           if ((*p)[1] == 'd')
1406             continue;
1407         }
1408
1409       pos = print_single_switch (print_fn, pos, SWITCH_TYPE_PASSED, *p);
1410     }
1411
1412   if (pos > 0)
1413     print_fn (SWITCH_TYPE_LINE_END, NULL);
1414
1415   /* Print the -f and -m options that have been enabled.
1416      We don't handle language specific options but printing argv
1417      should suffice.  */
1418   pos = print_single_switch (print_fn, 0,
1419                              SWITCH_TYPE_DESCRIPTIVE, _("options enabled: "));
1420
1421   for (j = 0; j < cl_options_count; j++)
1422     if ((cl_options[j].flags & CL_REPORT)
1423         && option_enabled (j) > 0)
1424       pos = print_single_switch (print_fn, pos,
1425                                  SWITCH_TYPE_ENABLED, cl_options[j].opt_text);
1426
1427   print_fn (SWITCH_TYPE_LINE_END, NULL);
1428 }
1429
1430 /* Open assembly code output file.  Do this even if -fsyntax-only is
1431    on, because then the driver will have provided the name of a
1432    temporary file or bit bucket for us.  NAME is the file specified on
1433    the command line, possibly NULL.  */
1434 static void
1435 init_asm_output (const char *name)
1436 {
1437   if (name == NULL && asm_file_name == 0)
1438     asm_out_file = stdout;
1439   else
1440     {
1441       if (asm_file_name == 0)
1442         {
1443           int len = strlen (dump_base_name);
1444           char *dumpname = XNEWVEC (char, len + 6);
1445
1446           memcpy (dumpname, dump_base_name, len + 1);
1447           strip_off_ending (dumpname, len);
1448           strcat (dumpname, ".s");
1449           asm_file_name = dumpname;
1450         }
1451       if (!strcmp (asm_file_name, "-"))
1452         asm_out_file = stdout;
1453       else
1454         asm_out_file = fopen (asm_file_name, "w+b");
1455       if (asm_out_file == 0)
1456         fatal_error ("can%'t open %s for writing: %m", asm_file_name);
1457     }
1458
1459   if (!flag_syntax_only)
1460     {
1461       targetm.asm_out.file_start ();
1462
1463       if (flag_record_gcc_switches)
1464         {
1465           if (targetm.asm_out.record_gcc_switches)
1466             {
1467               /* Let the target know that we are about to start recording.  */
1468               targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
1469                                                    NULL);
1470               /* Now record the switches.  */
1471               print_switch_values (targetm.asm_out.record_gcc_switches);
1472               /* Let the target know that the recording is over.  */
1473               targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
1474                                                    NULL);
1475             }
1476           else
1477             inform (input_location, "-frecord-gcc-switches is not supported by the current target");
1478         }
1479
1480 #ifdef ASM_COMMENT_START
1481       if (flag_verbose_asm)
1482         {
1483           /* Print the list of switches in effect
1484              into the assembler file as comments.  */
1485           print_version (asm_out_file, ASM_COMMENT_START);
1486           print_switch_values (print_to_asm_out_file);
1487           putc ('\n', asm_out_file);
1488         }
1489 #endif
1490     }
1491 }
1492
1493 /* Return true if the state of option OPTION should be stored in PCH files
1494    and checked by default_pch_valid_p.  Store the option's current state
1495    in STATE if so.  */
1496
1497 static inline bool
1498 option_affects_pch_p (int option, struct cl_option_state *state)
1499 {
1500   if ((cl_options[option].flags & CL_TARGET) == 0)
1501     return false;
1502   if (cl_options[option].flag_var == &target_flags)
1503     if (targetm.check_pch_target_flags)
1504       return false;
1505   return get_option_state (option, state);
1506 }
1507
1508 /* Default version of get_pch_validity.
1509    By default, every flag difference is fatal; that will be mostly right for
1510    most targets, but completely right for very few.  */
1511
1512 void *
1513 default_get_pch_validity (size_t *sz)
1514 {
1515   struct cl_option_state state;
1516   size_t i;
1517   char *result, *r;
1518
1519   *sz = 2;
1520   if (targetm.check_pch_target_flags)
1521     *sz += sizeof (target_flags);
1522   for (i = 0; i < cl_options_count; i++)
1523     if (option_affects_pch_p (i, &state))
1524       *sz += state.size;
1525
1526   result = r = XNEWVEC (char, *sz);
1527   r[0] = flag_pic;
1528   r[1] = flag_pie;
1529   r += 2;
1530   if (targetm.check_pch_target_flags)
1531     {
1532       memcpy (r, &target_flags, sizeof (target_flags));
1533       r += sizeof (target_flags);
1534     }
1535
1536   for (i = 0; i < cl_options_count; i++)
1537     if (option_affects_pch_p (i, &state))
1538       {
1539         memcpy (r, state.data, state.size);
1540         r += state.size;
1541       }
1542
1543   return result;
1544 }
1545
1546 /* Return a message which says that a PCH file was created with a different
1547    setting of OPTION.  */
1548
1549 static const char *
1550 pch_option_mismatch (const char *option)
1551 {
1552   char *r;
1553
1554   asprintf (&r, _("created and used with differing settings of '%s'"), option);
1555   if (r == NULL)
1556     return _("out of memory");
1557   return r;
1558 }
1559
1560 /* Default version of pch_valid_p.  */
1561
1562 const char *
1563 default_pch_valid_p (const void *data_p, size_t len)
1564 {
1565   struct cl_option_state state;
1566   const char *data = (const char *)data_p;
1567   size_t i;
1568
1569   /* -fpic and -fpie also usually make a PCH invalid.  */
1570   if (data[0] != flag_pic)
1571     return _("created and used with different settings of -fpic");
1572   if (data[1] != flag_pie)
1573     return _("created and used with different settings of -fpie");
1574   data += 2;
1575
1576   /* Check target_flags.  */
1577   if (targetm.check_pch_target_flags)
1578     {
1579       int tf;
1580       const char *r;
1581
1582       memcpy (&tf, data, sizeof (target_flags));
1583       data += sizeof (target_flags);
1584       len -= sizeof (target_flags);
1585       r = targetm.check_pch_target_flags (tf);
1586       if (r != NULL)
1587         return r;
1588     }
1589
1590   for (i = 0; i < cl_options_count; i++)
1591     if (option_affects_pch_p (i, &state))
1592       {
1593         if (memcmp (data, state.data, state.size) != 0)
1594           return pch_option_mismatch (cl_options[i].opt_text);
1595         data += state.size;
1596         len -= state.size;
1597       }
1598
1599   return NULL;
1600 }
1601
1602 /* Default tree printer.   Handles declarations only.  */
1603 bool
1604 default_tree_printer (pretty_printer *pp, text_info *text, const char *spec,
1605                       int precision, bool wide, bool set_locus, bool hash)
1606 {
1607   tree t;
1608
1609   /* FUTURE: %+x should set the locus.  */
1610   if (precision != 0 || wide || hash)
1611     return false;
1612
1613   switch (*spec)
1614     {
1615     case 'E':
1616       t = va_arg (*text->args_ptr, tree);
1617       if (TREE_CODE (t) == IDENTIFIER_NODE)
1618         {
1619           pp_identifier (pp, IDENTIFIER_POINTER (t));
1620           return true;
1621         }
1622       break;
1623
1624     case 'D':
1625       t = va_arg (*text->args_ptr, tree);
1626       if (DECL_DEBUG_EXPR_IS_FROM (t) && DECL_DEBUG_EXPR (t))
1627         t = DECL_DEBUG_EXPR (t);
1628       break;
1629
1630     case 'F':
1631     case 'T':
1632       t = va_arg (*text->args_ptr, tree);
1633       break;
1634
1635     default:
1636       return false;
1637     }
1638
1639   if (set_locus && text->locus)
1640     *text->locus = DECL_SOURCE_LOCATION (t);
1641
1642   if (DECL_P (t))
1643     {
1644       const char *n = DECL_NAME (t)
1645         ? identifier_to_locale (lang_hooks.decl_printable_name (t, 2))
1646         : _("<anonymous>");
1647       pp_string (pp, n);
1648     }
1649   else
1650     dump_generic_node (pp, t, 0, TDF_DIAGNOSTIC, 0);
1651
1652   return true;
1653 }
1654
1655 /* A helper function; used as the reallocator function for cpp's line
1656    table.  */
1657 static void *
1658 realloc_for_line_map (void *ptr, size_t len)
1659 {
1660   return ggc_realloc (ptr, len);
1661 }
1662
1663 /* Initialization of the front end environment, before command line
1664    options are parsed.  Signal handlers, internationalization etc.
1665    ARGV0 is main's argv[0].  */
1666 static void
1667 general_init (const char *argv0)
1668 {
1669   const char *p;
1670
1671   p = argv0 + strlen (argv0);
1672   while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1673     --p;
1674   progname = p;
1675
1676   xmalloc_set_program_name (progname);
1677
1678   hex_init ();
1679
1680   /* Unlock the stdio streams.  */
1681   unlock_std_streams ();
1682
1683   gcc_init_libintl ();
1684
1685   /* Initialize the diagnostics reporting machinery, so option parsing
1686      can give warnings and errors.  */
1687   diagnostic_initialize (global_dc);
1688   /* Set a default printer.  Language specific initializations will
1689      override it later.  */
1690   pp_format_decoder (global_dc->printer) = &default_tree_printer;
1691   global_dc->show_option_requested = flag_diagnostics_show_option;
1692
1693   /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages.  */
1694 #ifdef SIGSEGV
1695   signal (SIGSEGV, crash_signal);
1696 #endif
1697 #ifdef SIGILL
1698   signal (SIGILL, crash_signal);
1699 #endif
1700 #ifdef SIGBUS
1701   signal (SIGBUS, crash_signal);
1702 #endif
1703 #ifdef SIGABRT
1704   signal (SIGABRT, crash_signal);
1705 #endif
1706 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1707   signal (SIGIOT, crash_signal);
1708 #endif
1709 #ifdef SIGFPE
1710   signal (SIGFPE, crash_signal);
1711 #endif
1712
1713   /* Other host-specific signal setup.  */
1714   (*host_hooks.extra_signals)();
1715
1716   /* Initialize the garbage-collector, string pools and tree type hash
1717      table.  */
1718   init_ggc ();
1719   init_stringpool ();
1720   line_table = GGC_NEW (struct line_maps);
1721   linemap_init (line_table);
1722   line_table->reallocator = realloc_for_line_map;
1723   init_ttree ();
1724
1725   /* Initialize register usage now so switches may override.  */
1726   init_reg_sets ();
1727
1728   /* Register the language-independent parameters.  */
1729   add_params (lang_independent_params, LAST_PARAM);
1730
1731   /* This must be done after add_params but before argument processing.  */
1732   init_ggc_heuristics();
1733   init_optimization_passes ();
1734   statistics_early_init ();
1735 }
1736
1737 /* Return true if the current target supports -fsection-anchors.  */
1738
1739 static bool
1740 target_supports_section_anchors_p (void)
1741 {
1742   if (targetm.min_anchor_offset == 0 && targetm.max_anchor_offset == 0)
1743     return false;
1744
1745   if (targetm.asm_out.output_anchor == NULL)
1746     return false;
1747
1748   return true;
1749 }
1750
1751 /* Default the align_* variables to 1 if they're still unset, and
1752    set up the align_*_log variables.  */
1753 static void
1754 init_alignments (void)
1755 {
1756   if (align_loops <= 0)
1757     align_loops = 1;
1758   if (align_loops_max_skip > align_loops)
1759     align_loops_max_skip = align_loops - 1;
1760   align_loops_log = floor_log2 (align_loops * 2 - 1);
1761   if (align_jumps <= 0)
1762     align_jumps = 1;
1763   if (align_jumps_max_skip > align_jumps)
1764     align_jumps_max_skip = align_jumps - 1;
1765   align_jumps_log = floor_log2 (align_jumps * 2 - 1);
1766   if (align_labels <= 0)
1767     align_labels = 1;
1768   align_labels_log = floor_log2 (align_labels * 2 - 1);
1769   if (align_labels_max_skip > align_labels)
1770     align_labels_max_skip = align_labels - 1;
1771   if (align_functions <= 0)
1772     align_functions = 1;
1773   align_functions_log = floor_log2 (align_functions * 2 - 1);
1774 }
1775
1776 /* Process the options that have been parsed.  */
1777 static void
1778 process_options (void)
1779 {
1780   /* Just in case lang_hooks.post_options ends up calling a debug_hook.
1781      This can happen with incorrect pre-processed input. */
1782   debug_hooks = &do_nothing_debug_hooks;
1783
1784   /* This replaces set_Wunused.  */
1785   if (warn_unused_function == -1)
1786     warn_unused_function = warn_unused;
1787   if (warn_unused_label == -1)
1788     warn_unused_label = warn_unused;
1789   /* Wunused-parameter is enabled if both -Wunused -Wextra are enabled.  */
1790   if (warn_unused_parameter == -1)
1791     warn_unused_parameter = (warn_unused && extra_warnings);
1792   if (warn_unused_variable == -1)
1793     warn_unused_variable = warn_unused;
1794   /* Wunused-but-set-parameter is enabled if both -Wunused -Wextra are
1795      enabled.  */
1796   if (warn_unused_but_set_parameter == -1)
1797     warn_unused_but_set_parameter = (warn_unused && extra_warnings);
1798   if (warn_unused_but_set_variable == -1)
1799     warn_unused_but_set_variable = warn_unused;
1800   if (warn_unused_value == -1)
1801     warn_unused_value = warn_unused;
1802
1803   /* This replaces set_Wextra.  */
1804   if (warn_uninitialized == -1)
1805     warn_uninitialized = extra_warnings;
1806
1807   /* Allow the front end to perform consistency checks and do further
1808      initialization based on the command line options.  This hook also
1809      sets the original filename if appropriate (e.g. foo.i -> foo.c)
1810      so we can correctly initialize debug output.  */
1811   no_backend = lang_hooks.post_options (&main_input_filename);
1812
1813 #ifdef OVERRIDE_OPTIONS
1814   /* Some machines may reject certain combinations of options.  */
1815   OVERRIDE_OPTIONS;
1816 #endif
1817
1818   /* Avoid any informative notes in the second run of -fcompare-debug.  */
1819   if (flag_compare_debug) 
1820     diagnostic_inhibit_notes (global_dc);
1821
1822   if (flag_section_anchors && !target_supports_section_anchors_p ())
1823     {
1824       warning (OPT_fsection_anchors,
1825                "this target does not support %qs", "-fsection-anchors");
1826       flag_section_anchors = 0;
1827     }
1828
1829   if (flag_short_enums == 2)
1830     flag_short_enums = targetm.default_short_enums ();
1831
1832   /* Set aux_base_name if not already set.  */
1833   if (aux_base_name)
1834     ;
1835   else if (main_input_filename)
1836     {
1837       char *name = xstrdup (lbasename (main_input_filename));
1838
1839       strip_off_ending (name, strlen (name));
1840       aux_base_name = name;
1841     }
1842   else
1843     aux_base_name = "gccaux";
1844
1845 #ifndef HAVE_cloog
1846   if (flag_graphite
1847       || flag_loop_block
1848       || flag_loop_interchange
1849       || flag_loop_strip_mine
1850       || flag_graphite_identity
1851       || flag_loop_parallelize_all)
1852     sorry ("Graphite loop optimizations cannot be used");
1853 #endif
1854
1855   /* Unrolling all loops implies that standard loop unrolling must also
1856      be done.  */
1857   if (flag_unroll_all_loops)
1858     flag_unroll_loops = 1;
1859
1860   /* The loop unrolling code assumes that cse will be run after loop.
1861      web and rename-registers also help when run after loop unrolling.  */
1862   if (flag_rerun_cse_after_loop == AUTODETECT_VALUE)
1863     flag_rerun_cse_after_loop = flag_unroll_loops || flag_peel_loops;
1864
1865   if (flag_web == AUTODETECT_VALUE)
1866     flag_web = flag_unroll_loops || flag_peel_loops;
1867
1868   if (flag_rename_registers == AUTODETECT_VALUE)
1869     flag_rename_registers = flag_unroll_loops || flag_peel_loops;
1870
1871   if (flag_non_call_exceptions)
1872     flag_asynchronous_unwind_tables = 1;
1873   if (flag_asynchronous_unwind_tables)
1874     flag_unwind_tables = 1;
1875
1876   if (flag_value_profile_transformations)
1877     flag_profile_values = 1;
1878
1879   /* Warn about options that are not supported on this machine.  */
1880 #ifndef INSN_SCHEDULING
1881   if (flag_schedule_insns || flag_schedule_insns_after_reload)
1882     warning (0, "instruction scheduling not supported on this target machine");
1883 #endif
1884 #ifndef DELAY_SLOTS
1885   if (flag_delayed_branch)
1886     warning (0, "this target machine does not have delayed branches");
1887 #endif
1888
1889   user_label_prefix = USER_LABEL_PREFIX;
1890   if (flag_leading_underscore != -1)
1891     {
1892       /* If the default prefix is more complicated than "" or "_",
1893          issue a warning and ignore this option.  */
1894       if (user_label_prefix[0] == 0 ||
1895           (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1896         {
1897           user_label_prefix = flag_leading_underscore ? "_" : "";
1898         }
1899       else
1900         warning (0, "-f%sleading-underscore not supported on this target machine",
1901                  flag_leading_underscore ? "" : "no-");
1902     }
1903
1904   /* If we are in verbose mode, write out the version and maybe all the
1905      option flags in use.  */
1906   if (version_flag)
1907     {
1908       print_version (stderr, "");
1909       if (! quiet_flag)
1910         print_switch_values (print_to_stderr);
1911     }
1912
1913   if (flag_syntax_only)
1914     {
1915       write_symbols = NO_DEBUG;
1916       profile_flag = 0;
1917     }
1918
1919   if (flag_gtoggle)
1920     {
1921       if (debug_info_level == DINFO_LEVEL_NONE)
1922         {
1923           debug_info_level = DINFO_LEVEL_NORMAL;
1924
1925           if (write_symbols == NO_DEBUG)
1926             write_symbols = PREFERRED_DEBUGGING_TYPE;
1927         }
1928       else
1929         debug_info_level = DINFO_LEVEL_NONE;
1930     }
1931
1932   if (flag_dump_final_insns && !flag_syntax_only && !no_backend)
1933     {
1934       FILE *final_output = fopen (flag_dump_final_insns, "w");
1935       if (!final_output)
1936         {
1937           error ("could not open final insn dump file %qs: %s",
1938                  flag_dump_final_insns, strerror (errno));
1939           flag_dump_final_insns = NULL;
1940         }
1941       else if (fclose (final_output))
1942         {
1943           error ("could not close zeroed insn dump file %qs: %s",
1944                  flag_dump_final_insns, strerror (errno));
1945           flag_dump_final_insns = NULL;
1946         }
1947     }
1948
1949   /* Unless over-ridden for the target, assume that all DWARF levels
1950      may be emitted, if DWARF2_DEBUG is selected.  */
1951   if (dwarf_strict < 0)
1952     dwarf_strict = 0;
1953
1954   /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1955      level is 0.  */
1956   if (debug_info_level == DINFO_LEVEL_NONE)
1957     write_symbols = NO_DEBUG;
1958
1959   if (write_symbols == NO_DEBUG)
1960     ;
1961 #if defined(DBX_DEBUGGING_INFO)
1962   else if (write_symbols == DBX_DEBUG)
1963     debug_hooks = &dbx_debug_hooks;
1964 #endif
1965 #if defined(XCOFF_DEBUGGING_INFO)
1966   else if (write_symbols == XCOFF_DEBUG)
1967     debug_hooks = &xcoff_debug_hooks;
1968 #endif
1969 #ifdef SDB_DEBUGGING_INFO
1970   else if (write_symbols == SDB_DEBUG)
1971     debug_hooks = &sdb_debug_hooks;
1972 #endif
1973 #ifdef DWARF2_DEBUGGING_INFO
1974   else if (write_symbols == DWARF2_DEBUG)
1975     debug_hooks = &dwarf2_debug_hooks;
1976 #endif
1977 #ifdef VMS_DEBUGGING_INFO
1978   else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1979     debug_hooks = &vmsdbg_debug_hooks;
1980 #endif
1981   else
1982     error ("target system does not support the \"%s\" debug format",
1983            debug_type_names[write_symbols]);
1984
1985   /* We know which debug output will be used so we can set flag_var_tracking
1986      and flag_var_tracking_uninit if the user has not specified them.  */
1987   if (debug_info_level < DINFO_LEVEL_NORMAL
1988       || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1989     {
1990       if (flag_var_tracking == 1
1991           || flag_var_tracking_uninit == 1)
1992         {
1993           if (debug_info_level < DINFO_LEVEL_NORMAL)
1994             warning (0, "variable tracking requested, but useless unless "
1995                      "producing debug info");
1996           else
1997             warning (0, "variable tracking requested, but not supported "
1998                      "by this debug format");
1999         }
2000       flag_var_tracking = 0;
2001       flag_var_tracking_uninit = 0;
2002     }
2003
2004   /* If the user specifically requested variable tracking with tagging
2005      uninitialized variables, we need to turn on variable tracking.
2006      (We already determined above that variable tracking is feasible.)  */
2007   if (flag_var_tracking_uninit)
2008     flag_var_tracking = 1;
2009
2010   if (flag_var_tracking == AUTODETECT_VALUE)
2011     flag_var_tracking = optimize >= 1;
2012
2013   if (flag_var_tracking_assignments == AUTODETECT_VALUE)
2014     flag_var_tracking_assignments = flag_var_tracking
2015       && !(flag_selective_scheduling || flag_selective_scheduling2);
2016
2017   if (flag_var_tracking_assignments_toggle)
2018     flag_var_tracking_assignments = !flag_var_tracking_assignments;
2019
2020   if (flag_var_tracking_assignments && !flag_var_tracking)
2021     flag_var_tracking = flag_var_tracking_assignments = -1;
2022
2023   if (flag_var_tracking_assignments
2024       && (flag_selective_scheduling || flag_selective_scheduling2))
2025     warning (0, "var-tracking-assignments changes selective scheduling");
2026
2027   if (flag_tree_cselim == AUTODETECT_VALUE)
2028 #ifdef HAVE_conditional_move
2029     flag_tree_cselim = 1;
2030 #else
2031     flag_tree_cselim = 0;
2032 #endif
2033
2034   /* If auxiliary info generation is desired, open the output file.
2035      This goes in the same directory as the source file--unlike
2036      all the other output files.  */
2037   if (flag_gen_aux_info)
2038     {
2039       aux_info_file = fopen (aux_info_file_name, "w");
2040       if (aux_info_file == 0)
2041         fatal_error ("can%'t open %s: %m", aux_info_file_name);
2042     }
2043
2044   if (! targetm.have_named_sections)
2045     {
2046       if (flag_function_sections)
2047         {
2048           warning (0, "-ffunction-sections not supported for this target");
2049           flag_function_sections = 0;
2050         }
2051       if (flag_data_sections)
2052         {
2053           warning (0, "-fdata-sections not supported for this target");
2054           flag_data_sections = 0;
2055         }
2056     }
2057
2058   if (flag_function_sections && profile_flag)
2059     {
2060       warning (0, "-ffunction-sections disabled; it makes profiling impossible");
2061       flag_function_sections = 0;
2062     }
2063
2064 #ifndef HAVE_prefetch
2065   if (flag_prefetch_loop_arrays)
2066     {
2067       warning (0, "-fprefetch-loop-arrays not supported for this target");
2068       flag_prefetch_loop_arrays = 0;
2069     }
2070 #else
2071   if (flag_prefetch_loop_arrays && !HAVE_prefetch)
2072     {
2073       warning (0, "-fprefetch-loop-arrays not supported for this target (try -march switches)");
2074       flag_prefetch_loop_arrays = 0;
2075     }
2076 #endif
2077
2078   /* This combination of options isn't handled for i386 targets and doesn't
2079      make much sense anyway, so don't allow it.  */
2080   if (flag_prefetch_loop_arrays && optimize_size)
2081     {
2082       warning (0, "-fprefetch-loop-arrays is not supported with -Os");
2083       flag_prefetch_loop_arrays = 0;
2084     }
2085
2086   /* The presence of IEEE signaling NaNs, implies all math can trap.  */
2087   if (flag_signaling_nans)
2088     flag_trapping_math = 1;
2089
2090   /* We cannot reassociate if we want traps or signed zeros.  */
2091   if (flag_associative_math && (flag_trapping_math || flag_signed_zeros))
2092     {
2093       warning (0, "-fassociative-math disabled; other options take precedence");
2094       flag_associative_math = 0;
2095     }
2096
2097   /* With -fcx-limited-range, we do cheap and quick complex arithmetic.  */
2098   if (flag_cx_limited_range)
2099     flag_complex_method = 0;
2100
2101   /* With -fcx-fortran-rules, we do something in-between cheap and C99.  */
2102   if (flag_cx_fortran_rules)
2103     flag_complex_method = 1;
2104
2105   /* Targets must be able to place spill slots at lower addresses.  If the
2106      target already uses a soft frame pointer, the transition is trivial.  */
2107   if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
2108     {
2109       warning (0, "-fstack-protector not supported for this target");
2110       flag_stack_protect = 0;
2111     }
2112   if (!flag_stack_protect)
2113     warn_stack_protect = 0;
2114
2115   /* ??? Unwind info is not correct around the CFG unless either a frame
2116      pointer is present or A_O_A is set.  Fixing this requires rewriting
2117      unwind info generation to be aware of the CFG and propagating states
2118      around edges.  */
2119   if (flag_unwind_tables && !ACCUMULATE_OUTGOING_ARGS
2120       && flag_omit_frame_pointer)
2121     {
2122       warning (0, "unwind tables currently require a frame pointer "
2123                "for correctness");
2124       flag_omit_frame_pointer = 0;
2125     }
2126
2127   /* Save the current optimization options.  */
2128   optimization_default_node = build_optimization_node ();
2129   optimization_current_node = optimization_default_node;
2130 }
2131
2132 /* This function can be called multiple times to reinitialize the compiler
2133    back end when register classes or instruction sets have changed,
2134    before each function.  */
2135 static void
2136 backend_init_target (void)
2137 {
2138   /* Initialize alignment variables.  */
2139   init_alignments ();
2140
2141   /* This reinitializes hard_frame_pointer, and calls init_reg_modes_target()
2142      to initialize reg_raw_mode[].  */
2143   init_emit_regs ();
2144
2145   /* This invokes target hooks to set fixed_reg[] etc, which is
2146      mode-dependent.  */
2147   init_regs ();
2148
2149   /* This depends on stack_pointer_rtx.  */
2150   init_fake_stack_mems ();
2151
2152   /* Sets static_base_value[HARD_FRAME_POINTER_REGNUM], which is
2153      mode-dependent.  */
2154   init_alias_target ();
2155
2156   /* Depends on HARD_FRAME_POINTER_REGNUM.  */
2157   init_reload ();
2158
2159   /* The following initialization functions need to generate rtl, so
2160      provide a dummy function context for them.  */
2161   init_dummy_function_start ();
2162
2163   /* rtx_cost is mode-dependent, so cached values need to be recomputed
2164      on a mode change.  */
2165   init_expmed ();
2166
2167   /* We may need to recompute regno_save_code[] and regno_restore_code[]
2168      after a mode change as well.  */
2169   caller_save_initialized_p = false;
2170
2171   expand_dummy_function_end ();
2172 }
2173
2174 /* Initialize the compiler back end.  This function is called only once,
2175    when starting the compiler.  */
2176 static void
2177 backend_init (void)
2178 {
2179   init_emit_once ();
2180
2181   init_rtlanal ();
2182   init_inline_once ();
2183   init_varasm_once ();
2184   save_register_info ();
2185
2186   /* Initialize the target-specific back end pieces.  */
2187   ira_init_once ();
2188   backend_init_target ();
2189 }
2190
2191 /* Initialize excess precision settings.  */
2192 static void
2193 init_excess_precision (void)
2194 {
2195   /* Adjust excess precision handling based on the target options.  If
2196      the front end cannot handle it, flag_excess_precision_cmdline
2197      will already have been set accordingly in the post_options
2198      hook.  */
2199   gcc_assert (flag_excess_precision_cmdline != EXCESS_PRECISION_DEFAULT);
2200   flag_excess_precision = flag_excess_precision_cmdline;
2201   if (flag_unsafe_math_optimizations)
2202     flag_excess_precision = EXCESS_PRECISION_FAST;
2203   if (flag_excess_precision == EXCESS_PRECISION_STANDARD)
2204     {
2205       int flt_eval_method = TARGET_FLT_EVAL_METHOD;
2206       switch (flt_eval_method)
2207         {
2208         case -1:
2209         case 0:
2210           /* Either the target acts unpredictably (-1) or has all the
2211              operations required not to have excess precision (0).  */
2212           flag_excess_precision = EXCESS_PRECISION_FAST;
2213           break;
2214         case 1:
2215         case 2:
2216           /* In these cases, predictable excess precision makes
2217              sense.  */
2218           break;
2219         default:
2220           /* Any other implementation-defined FLT_EVAL_METHOD values
2221              require the compiler to handle the associated excess
2222              precision rules in excess_precision_type.  */
2223           gcc_unreachable ();
2224         }
2225     }
2226 }
2227
2228 /* Initialize things that are both lang-dependent and target-dependent.
2229    This function can be called more than once if target parameters change.  */
2230 static void
2231 lang_dependent_init_target (void)
2232 {
2233   /* This determines excess precision settings.  */
2234   init_excess_precision ();
2235
2236   /* This creates various _DECL nodes, so needs to be called after the
2237      front end is initialized.  It also depends on the HAVE_xxx macros
2238      generated from the target machine description.  */
2239   init_optabs ();
2240
2241   /* The following initialization functions need to generate rtl, so
2242      provide a dummy function context for them.  */
2243   init_dummy_function_start ();
2244
2245   /* Do the target-specific parts of expr initialization.  */
2246   init_expr_target ();
2247
2248   /* Although the actions of these functions are language-independent,
2249      they use optabs, so we cannot call them from backend_init.  */
2250   init_set_costs ();
2251   ira_init ();
2252
2253   expand_dummy_function_end ();
2254 }
2255
2256 /* Language-dependent initialization.  Returns nonzero on success.  */
2257 static int
2258 lang_dependent_init (const char *name)
2259 {
2260   location_t save_loc = input_location;
2261   if (dump_base_name == 0)
2262     dump_base_name = name && name[0] ? name : "gccdump";
2263
2264   /* Other front-end initialization.  */
2265   input_location = BUILTINS_LOCATION;
2266   if (lang_hooks.init () == 0)
2267     return 0;
2268   input_location = save_loc;
2269
2270   init_asm_output (name);
2271
2272   /* This creates various _DECL nodes, so needs to be called after the
2273      front end is initialized.  */
2274   init_eh ();
2275
2276   /* Do the target-specific parts of the initialization.  */
2277   lang_dependent_init_target ();
2278
2279   /* If dbx symbol table desired, initialize writing it and output the
2280      predefined types.  */
2281   timevar_push (TV_SYMOUT);
2282
2283 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
2284   if (dwarf2out_do_frame ())
2285     dwarf2out_frame_init ();
2286 #endif
2287
2288   /* Now we have the correct original filename, we can initialize
2289      debug output.  */
2290   (*debug_hooks->init) (name);
2291
2292   timevar_pop (TV_SYMOUT);
2293
2294   return 1;
2295 }
2296
2297
2298 /* Reinitialize everything when target parameters, such as register usage,
2299    have changed.  */
2300 void
2301 target_reinit (void)
2302 {
2303   /* Reinitialize RTL backend.  */
2304   backend_init_target ();
2305
2306   /* Reinitialize lang-dependent parts.  */
2307   lang_dependent_init_target ();
2308 }
2309
2310 void
2311 dump_memory_report (bool final)
2312 {
2313   ggc_print_statistics ();
2314   stringpool_statistics ();
2315   dump_tree_statistics ();
2316   dump_gimple_statistics ();
2317   dump_rtx_statistics ();
2318   dump_alloc_pool_statistics ();
2319   dump_bitmap_statistics ();
2320   dump_vec_loc_statistics ();
2321   dump_ggc_loc_statistics (final);
2322   dump_alias_stats (stderr);
2323   dump_pta_stats (stderr);
2324 }
2325
2326 /* Clean up: close opened files, etc.  */
2327
2328 static void
2329 finalize (void)
2330 {
2331   /* Close the dump files.  */
2332   if (flag_gen_aux_info)
2333     {
2334       fclose (aux_info_file);
2335       if (errorcount)
2336         unlink (aux_info_file_name);
2337     }
2338
2339   /* Close non-debugging input and output files.  Take special care to note
2340      whether fclose returns an error, since the pages might still be on the
2341      buffer chain while the file is open.  */
2342
2343   if (asm_out_file)
2344     {
2345       if (ferror (asm_out_file) != 0)
2346         fatal_error ("error writing to %s: %m", asm_file_name);
2347       if (fclose (asm_out_file) != 0)
2348         fatal_error ("error closing %s: %m", asm_file_name);
2349       if (flag_wpa)
2350         unlink_if_ordinary (asm_file_name);
2351     }
2352
2353   statistics_fini ();
2354   finish_optimization_passes ();
2355
2356   ira_finish_once ();
2357
2358   if (mem_report)
2359     dump_memory_report (true);
2360
2361   /* Language-specific end of compilation actions.  */
2362   lang_hooks.finish ();
2363 }
2364
2365 /* Initialize the compiler, and compile the input file.  */
2366 static void
2367 do_compile (void)
2368 {
2369   /* Initialize timing first.  The C front ends read the main file in
2370      the post_options hook, and C++ does file timings.  */
2371   if (time_report || !quiet_flag  || flag_detailed_statistics)
2372     timevar_init ();
2373   timevar_start (TV_TOTAL);
2374
2375   process_options ();
2376
2377   /* Don't do any more if an error has already occurred.  */
2378   if (!errorcount)
2379     {
2380       /* This must be run always, because it is needed to compute the FP
2381          predefined macros, such as __LDBL_MAX__, for targets using non
2382          default FP formats.  */
2383       init_adjust_machine_modes ();
2384
2385       /* Set up the back-end if requested.  */
2386       if (!no_backend)
2387         backend_init ();
2388
2389       /* Language-dependent initialization.  Returns true on success.  */
2390       if (lang_dependent_init (main_input_filename))
2391         compile_file ();
2392
2393       finalize ();
2394     }
2395
2396   /* Stop timing and print the times.  */
2397   timevar_stop (TV_TOTAL);
2398   timevar_print (stderr);
2399 }
2400
2401 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2402    Exit code is FATAL_EXIT_CODE if can't open files or if there were
2403    any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2404
2405    It is not safe to call this function more than once.  */
2406
2407 int
2408 toplev_main (int argc, char **argv)
2409 {
2410   expandargv (&argc, &argv);
2411
2412   save_argv = CONST_CAST2 (const char **, char **, argv);
2413
2414   /* Initialization of GCC's environment, and diagnostics.  */
2415   general_init (argv[0]);
2416
2417   /* Parse the options and do minimal processing; basically just
2418      enough to default flags appropriately.  */
2419   decode_options (argc, CONST_CAST2 (const char **, char **, argv));
2420
2421   init_local_tick ();
2422
2423   initialize_plugins ();
2424
2425   if (version_flag)
2426     print_version (stderr, "");
2427
2428   if (help_flag)
2429     print_plugins_help (stderr, "");
2430
2431   /* Exit early if we can (e.g. -help).  */
2432   if (!exit_after_options)
2433     do_compile ();
2434
2435   if (warningcount || errorcount)
2436     print_ignored_options ();
2437   diagnostic_finish (global_dc);
2438
2439   /* Invoke registered plugin callbacks if any.  */
2440   invoke_plugin_callbacks (PLUGIN_FINISH, NULL);
2441
2442   finalize_plugins ();
2443   if (errorcount || sorrycount)
2444     return (FATAL_EXIT_CODE);
2445
2446   return (SUCCESS_EXIT_CODE);
2447 }