OSDN Git Service

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