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