OSDN Git Service

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