OSDN Git Service

* Makefile.in (toplev.o, sdbout.o, dbxout.o, dwarfout.o,
[pf3gnuchains/gcc-fork.git] / gcc / toplev.c
1 /* Top level of GNU C compiler
2    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001 Free Software Foundation, Inc.
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 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 <signal.h>
32 #include <setjmp.h>
33
34 #ifdef HAVE_SYS_RESOURCE_H
35 # include <sys/resource.h>
36 #endif
37
38 #ifdef HAVE_SYS_TIMES_H
39 # include <sys/times.h>
40 #endif
41
42 #include "input.h"
43 #include "tree.h"
44 #include "rtl.h"
45 #include "tm_p.h"
46 #include "flags.h"
47 #include "insn-attr.h"
48 #include "insn-config.h"
49 #include "hard-reg-set.h"
50 #include "recog.h"
51 #include "output.h"
52 #include "except.h"
53 #include "function.h"
54 #include "toplev.h"
55 #include "expr.h"
56 #include "basic-block.h"
57 #include "intl.h"
58 #include "ggc.h"
59 #include "graph.h"
60 #include "loop.h"
61 #include "regs.h"
62 #include "timevar.h"
63 #include "diagnostic.h"
64 #include "ssa.h"
65 #include "params.h"
66 #include "reload.h"
67 #include "dwarf2asm.h"
68 #include "integrate.h"
69 #include "debug.h"
70
71 #ifdef DWARF_DEBUGGING_INFO
72 #include "dwarfout.h"
73 #endif
74
75 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
76 #include "dwarf2out.h"
77 #endif
78
79 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
80 #include "dbxout.h"
81 #endif
82
83 #ifdef SDB_DEBUGGING_INFO
84 #include "sdbout.h"
85 #endif
86
87 #ifdef XCOFF_DEBUGGING_INFO
88 #include "xcoffout.h"
89 #endif
90 \f
91 #ifdef VMS
92 /* The extra parameters substantially improve the I/O performance.  */
93
94 static FILE *
95 vms_fopen (fname, type)
96      char *fname;
97      char *type;
98 {
99   /* The <stdio.h> in the gcc-vms-1.42 distribution prototypes fopen with two
100      fixed arguments, which matches ANSI's specification but not VAXCRTL's
101      pre-ANSI implementation.  This hack circumvents the mismatch problem.  */
102   FILE *(*vmslib_fopen)() = (FILE *(*)()) fopen;
103
104   if (*type == 'w')
105     return (*vmslib_fopen) (fname, type, "mbc=32",
106                             "deq=64", "fop=tef", "shr=nil");
107   else
108     return (*vmslib_fopen) (fname, type, "mbc=32");
109 }
110
111 #define fopen vms_fopen
112 #endif  /* VMS  */
113
114 #ifndef DEFAULT_GDB_EXTENSIONS
115 #define DEFAULT_GDB_EXTENSIONS 1
116 #endif
117
118 /* If more than one debugging type is supported, you must define
119    PREFERRED_DEBUGGING_TYPE to choose a format in a system-dependent way.
120
121    This is one long line cause VAXC can't handle a \-newline.  */
122 #if 1 < (defined (DBX_DEBUGGING_INFO) + defined (SDB_DEBUGGING_INFO) + defined (DWARF_DEBUGGING_INFO) + defined (DWARF2_DEBUGGING_INFO) + defined (XCOFF_DEBUGGING_INFO))
123 #ifndef PREFERRED_DEBUGGING_TYPE
124 You Lose!  You must define PREFERRED_DEBUGGING_TYPE!
125 #endif /* no PREFERRED_DEBUGGING_TYPE */
126 #else /* Only one debugging format supported.  Define PREFERRED_DEBUGGING_TYPE
127          so the following code needn't care.  */
128 #ifdef DBX_DEBUGGING_INFO
129 #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
130 #endif
131 #ifdef SDB_DEBUGGING_INFO
132 #define PREFERRED_DEBUGGING_TYPE SDB_DEBUG
133 #endif
134 #ifdef DWARF_DEBUGGING_INFO
135 #define PREFERRED_DEBUGGING_TYPE DWARF_DEBUG
136 #endif
137 #ifdef DWARF2_DEBUGGING_INFO
138 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
139 #endif
140 #ifdef XCOFF_DEBUGGING_INFO
141 #define PREFERRED_DEBUGGING_TYPE XCOFF_DEBUG
142 #endif
143 #endif /* More than one debugger format enabled.  */
144
145 /* If still not defined, must have been because no debugging formats
146    are supported.  */
147 #ifndef PREFERRED_DEBUGGING_TYPE
148 #define PREFERRED_DEBUGGING_TYPE NO_DEBUG
149 #endif
150
151 #if defined (HAVE_DECL_ENVIRON) && !HAVE_DECL_ENVIRON
152 extern char **environ;
153 #endif
154
155 /* Carry information from ASM_DECLARE_OBJECT_NAME
156    to ASM_FINISH_DECLARE_OBJECT.  */
157
158 extern int size_directive_output;
159 extern tree last_assemble_variable_decl;
160
161 static void set_target_switch PARAMS ((const char *));
162 static const char *decl_name PARAMS ((tree, int));
163
164 static void float_signal PARAMS ((int)) ATTRIBUTE_NORETURN;
165 static void crash_signal PARAMS ((int)) ATTRIBUTE_NORETURN;
166 static void compile_file PARAMS ((const char *));
167 static void display_help PARAMS ((void));
168 static void display_target_options PARAMS ((void));
169
170 static void decode_d_option PARAMS ((const char *));
171 static int decode_f_option PARAMS ((const char *));
172 static int decode_W_option PARAMS ((const char *));
173 static int decode_g_option PARAMS ((const char *));
174 static unsigned int independent_decode_option PARAMS ((int, char **));
175
176 static void print_version PARAMS ((FILE *, const char *));
177 static int print_single_switch PARAMS ((FILE *, int, int, const char *,
178                                       const char *, const char *,
179                                       const char *, const char *));
180 static void print_switch_values PARAMS ((FILE *, int, int, const char *,
181                                        const char *, const char *));
182
183 /* Length of line when printing switch values.  */
184 #define MAX_LINE 75
185
186 /* Name of program invoked, sans directories.  */
187
188 const char *progname;
189
190 /* Copy of arguments to toplev_main.  */
191 int save_argc;
192 char **save_argv;
193 \f
194 /* Name of current original source file (what was input to cpp).
195    This comes from each #-command in the actual input.  */
196
197 const char *input_filename;
198
199 /* Name of top-level original source file (what was input to cpp).
200    This comes from the #-command at the beginning of the actual input.
201    If there isn't any there, then this is the cc1 input file name.  */
202
203 const char *main_input_filename;
204
205 /* Current line number in real source file.  */
206
207 int lineno;
208
209 /* Nonzero if it is unsafe to create any new pseudo registers.  */
210 int no_new_pseudos;
211
212 /* Stack of currently pending input files.  */
213
214 struct file_stack *input_file_stack;
215
216 /* Incremented on each change to input_file_stack.  */
217 int input_file_stack_tick;
218
219 /* Name to use as base of names for dump output files.  */
220
221 const char *dump_base_name;
222
223 /* Bit flags that specify the machine subtype we are compiling for.
224    Bits are tested using macros TARGET_... defined in the tm.h file
225    and set by `-m...' switches.  Must be defined in rtlanal.c.  */
226
227 extern int target_flags;
228
229 /* Debug hooks - dependent upon command line options.  */
230
231 struct gcc_debug_hooks *debug_hooks;
232
233 /* Describes a dump file.  */
234
235 struct dump_file_info
236 {
237   /* The unique extension to apply, e.g. ".jump".  */
238   const char *const extension;
239
240   /* The -d<c> character that enables this dump file.  */
241   char const debug_switch;
242
243   /* True if there is a corresponding graph dump file.  */
244   char const graph_dump_p;
245
246   /* True if the user selected this dump.  */
247   char enabled;
248
249   /* True if the files have been initialized (ie truncated).  */
250   char initialized;
251 };
252
253 /* Enumerate the extant dump files.  */
254
255 enum dump_file_index
256 {
257   DFI_rtl,
258   DFI_sibling,
259   DFI_eh,
260   DFI_jump,
261   DFI_ssa,
262   DFI_ssa_ccp,
263   DFI_ssa_dce,
264   DFI_ussa,
265   DFI_cse,
266   DFI_addressof,
267   DFI_gcse,
268   DFI_loop,
269   DFI_cse2,
270   DFI_cfg,
271   DFI_bp,
272   DFI_life,
273   DFI_combine,
274   DFI_ce,
275   DFI_regmove,
276   DFI_sched,
277   DFI_lreg,
278   DFI_greg,
279   DFI_postreload,
280   DFI_flow2,
281   DFI_peephole2,
282   DFI_rnreg,
283   DFI_ce2,
284   DFI_sched2,
285   DFI_bbro,
286   DFI_jump2,
287   DFI_mach,
288   DFI_dbr,
289   DFI_stack,
290   DFI_MAX
291 };
292
293 /* Describes all the dump files.  Should be kept in order of the
294    pass and in sync with dump_file_index above.
295
296    Remaining -d letters:
297
298         "              o q   u     "
299         "       H  K   OPQ  TUV  YZ"
300 */
301
302 struct dump_file_info dump_file[DFI_MAX] =
303 {
304   { "rtl",      'r', 0, 0, 0 },
305   { "sibling",  'i', 0, 0, 0 },
306   { "eh",       'h', 0, 0, 0 },
307   { "jump",     'j', 0, 0, 0 },
308   { "ssa",      'e', 1, 0, 0 },
309   { "ssaccp",   'W', 1, 0, 0 },
310   { "ssadce",   'X', 1, 0, 0 },
311   { "ussa",     'e', 1, 0, 0 }, /* Yes, duplicate enable switch.  */
312   { "cse",      's', 0, 0, 0 },
313   { "addressof", 'F', 0, 0, 0 },
314   { "gcse",     'G', 1, 0, 0 },
315   { "loop",     'L', 1, 0, 0 },
316   { "cse2",     't', 1, 0, 0 },
317   { "cfg",      'f', 1, 0, 0 },
318   { "bp",       'b', 1, 0, 0 },
319   { "life",     'f', 1, 0, 0 }, /* Yes, duplicate enable switch.  */
320   { "combine",  'c', 1, 0, 0 },
321   { "ce",       'C', 1, 0, 0 },
322   { "regmove",  'N', 1, 0, 0 },
323   { "sched",    'S', 1, 0, 0 },
324   { "lreg",     'l', 1, 0, 0 },
325   { "greg",     'g', 1, 0, 0 },
326   { "postreload", 'o', 1, 0, 0 },
327   { "flow2",    'w', 1, 0, 0 },
328   { "peephole2", 'z', 1, 0, 0 },
329   { "rnreg",    'n', 1, 0, 0 },
330   { "ce2",      'E', 1, 0, 0 },
331   { "sched2",   'R', 1, 0, 0 },
332   { "bbro",     'B', 1, 0, 0 },
333   { "jump2",    'J', 1, 0, 0 },
334   { "mach",     'M', 1, 0, 0 },
335   { "dbr",      'd', 0, 0, 0 },
336   { "stack",    'k', 1, 0, 0 },
337 };
338
339 static int open_dump_file PARAMS ((enum dump_file_index, tree));
340 static void close_dump_file PARAMS ((enum dump_file_index,
341                                      void (*) (FILE *, rtx), rtx));
342
343 /* Other flags saying which kinds of debugging dump have been requested.  */
344
345 int rtl_dump_and_exit;
346 int flag_print_asm_name;
347 static int version_flag;
348 static char *filename;
349 enum graph_dump_types graph_dump_format;
350
351 /* Name for output file of assembly code, specified with -o.  */
352
353 char *asm_file_name;
354
355 /* Value of the -G xx switch, and whether it was passed or not.  */
356 int g_switch_value;
357 int g_switch_set;
358
359 /* Type(s) of debugging information we are producing (if any).
360    See flags.h for the definitions of the different possible
361    types of debugging information.  */
362 enum debug_info_type write_symbols = NO_DEBUG;
363
364 /* Level of debugging information we are producing.  See flags.h
365    for the definitions of the different possible levels.  */
366 enum debug_info_level debug_info_level = DINFO_LEVEL_NONE;
367
368 /* Nonzero means use GNU-only extensions in the generated symbolic
369    debugging information.  */
370 /* Currently, this only has an effect when write_symbols is set to
371    DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG.  */
372 int use_gnu_debug_info_extensions = 0;
373
374 /* Nonzero means do optimizations.  -O.
375    Particular numeric values stand for particular amounts of optimization;
376    thus, -O2 stores 2 here.  However, the optimizations beyond the basic
377    ones are not controlled directly by this variable.  Instead, they are
378    controlled by individual `flag_...' variables that are defaulted
379    based on this variable.  */
380
381 int optimize = 0;
382
383 /* Nonzero means optimize for size.  -Os.
384    The only valid values are zero and non-zero. When optimize_size is
385    non-zero, optimize defaults to 2, but certain individual code
386    bloating optimizations are disabled.  */
387
388 int optimize_size = 0;
389
390 /* Nonzero if we should exit after parsing options.  */
391 static int exit_after_options = 0;
392
393 /* The FUNCTION_DECL for the function currently being compiled,
394    or 0 if between functions.  */
395 tree current_function_decl;
396
397 /* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
398    if none.  */
399 tree current_function_func_begin_label;
400
401 /* Pointer to function to compute the name to use to print a declaration.
402    DECL is the declaration in question.
403    VERBOSITY determines what information will be printed:
404      0: DECL_NAME, demangled as necessary.
405      1: and scope information.
406      2: and any other information that might be interesting, such as function
407         parameter types in C++.  */
408
409 const char *(*decl_printable_name)      PARAMS ((tree, int));
410
411 /* Pointer to function to compute rtl for a language-specific tree code.  */
412
413 typedef rtx (*lang_expand_expr_t)
414   PARAMS ((union tree_node *, rtx, enum machine_mode,
415           enum expand_modifier modifier));
416
417 lang_expand_expr_t lang_expand_expr = 0;
418
419 tree (*lang_expand_constant) PARAMS ((tree)) = 0;
420
421 /* Pointer to function to finish handling an incomplete decl at the
422    end of compilation.  */
423
424 void (*incomplete_decl_finalize_hook) PARAMS ((tree)) = 0;
425
426 /* Nonzero if doing dwarf2 duplicate elimination.  */
427
428 int flag_eliminate_dwarf2_dups = 0;
429
430 /* Nonzero if generating code to do profiling.  */
431
432 int profile_flag = 0;
433
434 /* Nonzero if generating code to do profiling on a line-by-line basis.  */
435
436 int profile_block_flag;
437
438 /* Nonzero if generating code to profile program flow graph arcs.  */
439
440 int profile_arc_flag = 0;
441
442 /* Nonzero if generating info for gcov to calculate line test coverage.  */
443
444 int flag_test_coverage = 0;
445
446 /* Nonzero indicates that branch taken probabilities should be calculated.  */
447
448 int flag_branch_probabilities = 0;
449
450 /* Nonzero if basic blocks should be reordered.  */
451
452 int flag_reorder_blocks = 0;
453
454 /* Nonzero if registers should be renamed.  */
455
456 int flag_rename_registers = 0;
457
458 /* Nonzero for -pedantic switch: warn about anything
459    that standard spec forbids.  */
460
461 int pedantic = 0;
462
463 /* Temporarily suppress certain warnings.
464    This is set while reading code from a system header file.  */
465
466 int in_system_header = 0;
467
468 /* Don't print functions as they are compiled.  -quiet.  */
469
470 int quiet_flag = 0;
471
472 /* Print times taken by the various passes.  -ftime-report.  */
473
474 int time_report = 0;
475
476 /* Print memory still in use at end of compilation (which may have little
477    to do with peak memory consumption).  -fmem-report.  */
478
479 int mem_report = 0;
480
481 /* Non-zero means to collect statistics which might be expensive
482    and to print them when we are done.  */
483 int flag_detailed_statistics = 0;
484
485 \f
486 /* -f flags.  */
487
488 /* Nonzero means `char' should be signed.  */
489
490 int flag_signed_char;
491
492 /* Nonzero means give an enum type only as many bytes as it needs.  */
493
494 int flag_short_enums;
495
496 /* Nonzero for -fcaller-saves: allocate values in regs that need to
497    be saved across function calls, if that produces overall better code.
498    Optional now, so people can test it.  */
499
500 #ifdef DEFAULT_CALLER_SAVES
501 int flag_caller_saves = 1;
502 #else
503 int flag_caller_saves = 0;
504 #endif
505
506 /* Nonzero if structures and unions should be returned in memory.
507
508    This should only be defined if compatibility with another compiler or
509    with an ABI is needed, because it results in slower code.  */
510
511 #ifndef DEFAULT_PCC_STRUCT_RETURN
512 #define DEFAULT_PCC_STRUCT_RETURN 1
513 #endif
514
515 /* Nonzero for -fpcc-struct-return: return values the same way PCC does.  */
516
517 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
518
519 /* Nonzero for -fforce-mem: load memory value into a register
520    before arithmetic on it.  This makes better cse but slower compilation.  */
521
522 int flag_force_mem = 0;
523
524 /* Nonzero for -fforce-addr: load memory address into a register before
525    reference to memory.  This makes better cse but slower compilation.  */
526
527 int flag_force_addr = 0;
528
529 /* Nonzero for -fdefer-pop: don't pop args after each function call;
530    instead save them up to pop many calls' args with one insns.  */
531
532 int flag_defer_pop = 0;
533
534 /* Nonzero for -ffloat-store: don't allocate floats and doubles
535    in extended-precision registers.  */
536
537 int flag_float_store = 0;
538
539 /* Nonzero for -fcse-follow-jumps:
540    have cse follow jumps to do a more extensive job.  */
541
542 int flag_cse_follow_jumps;
543
544 /* Nonzero for -fcse-skip-blocks:
545    have cse follow a branch around a block.  */
546 int flag_cse_skip_blocks;
547
548 /* Nonzero for -fexpensive-optimizations:
549    perform miscellaneous relatively-expensive optimizations.  */
550 int flag_expensive_optimizations;
551
552 /* Nonzero for -fthread-jumps:
553    have jump optimize output of loop.  */
554
555 int flag_thread_jumps;
556
557 /* Nonzero enables strength-reduction in loop.c.  */
558
559 int flag_strength_reduce = 0;
560
561 /* Nonzero enables loop unrolling in unroll.c.  Only loops for which the
562    number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
563    UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
564    unrolled.  */
565
566 int flag_unroll_loops;
567
568 /* Nonzero enables loop unrolling in unroll.c.  All loops are unrolled.
569    This is generally not a win.  */
570
571 int flag_unroll_all_loops;
572
573 /* Nonzero forces all invariant computations in loops to be moved
574    outside the loop.  */
575
576 int flag_move_all_movables = 0;
577
578 /* Nonzero forces all general induction variables in loops to be
579    strength reduced.  */
580
581 int flag_reduce_all_givs = 0;
582
583 /* Nonzero to perform full register move optimization passes.  This is the
584    default for -O2.  */
585
586 int flag_regmove = 0;
587
588 /* Nonzero for -fwritable-strings:
589    store string constants in data segment and don't uniquize them.  */
590
591 int flag_writable_strings = 0;
592
593 /* Nonzero means don't put addresses of constant functions in registers.
594    Used for compiling the Unix kernel, where strange substitutions are
595    done on the assembly output.  */
596
597 int flag_no_function_cse = 0;
598
599 /* Nonzero for -fomit-frame-pointer:
600    don't make a frame pointer in simple functions that don't require one.  */
601
602 int flag_omit_frame_pointer = 0;
603
604 /* Nonzero means place each function into its own section on those platforms
605    which support arbitrary section names and unlimited numbers of sections.  */
606
607 int flag_function_sections = 0;
608
609 /* ... and similar for data.  */
610
611 int flag_data_sections = 0;
612
613 /* Nonzero to inhibit use of define_optimization peephole opts.  */
614
615 int flag_no_peephole = 0;
616
617 /* Nonzero allows GCC to optimize sibling and tail recursive calls.  */
618
619 int flag_optimize_sibling_calls = 0;
620
621 /* Nonzero means the front end generally wants `errno' maintained by math
622    operations, like built-in SQRT.  */
623
624 int flag_errno_math = 1;
625
626 /* Nonzero means that unsafe floating-point math optimizations are allowed
627    for the sake of speed.  IEEE compliance is not guaranteed, and operations
628    are allowed to assume that their arguments and results are "normal"
629    (e.g., nonnegative for SQRT).  */
630
631 int flag_unsafe_math_optimizations = 0;
632
633 /* Zero means that floating-point math operations cannot generate a
634    (user-visible) trap.  This is the case, for example, in nonstop
635    IEEE 754 arithmetic.  */
636
637 int flag_trapping_math = 1;
638
639 /* 0 means straightforward implementation of complex divide acceptable.
640    1 means wide ranges of inputs must work for complex divide.
641    2 means C99-like requirements for complex divide (not yet implemented).  */
642
643 int flag_complex_divide_method = 0;
644
645 /* Nonzero means all references through pointers are volatile.  */
646
647 int flag_volatile;
648
649 /* Nonzero means treat all global and extern variables as volatile.  */
650
651 int flag_volatile_global;
652
653 /* Nonzero means treat all static variables as volatile.  */
654
655 int flag_volatile_static;
656
657 /* Nonzero means just do syntax checking; don't output anything.  */
658
659 int flag_syntax_only = 0;
660
661 /* Nonzero means perform global cse.  */
662
663 static int flag_gcse;
664
665 /* Nonzero means to use global dataflow analysis to eliminate
666    useless null pointer tests.  */
667
668 static int flag_delete_null_pointer_checks;
669
670 /* Nonzero means to do the enhanced load motion during gcse, which trys
671    to hoist loads by not killing them when a store to the same location
672    is seen.  */
673
674 int flag_gcse_lm = 1;
675
676 /* Nonzero means to perform store motion after gcse, which will try to
677    move stores closer to the exit block.  Its not very effective without
678    flag_gcse_lm.  */
679
680 int flag_gcse_sm = 1;
681
682 /* Nonzero means to rerun cse after loop optimization.  This increases
683    compilation time about 20% and picks up a few more common expressions.  */
684
685 static int flag_rerun_cse_after_loop;
686
687 /* Nonzero means to run loop optimizations twice.  */
688
689 int flag_rerun_loop_opt;
690
691 /* Nonzero for -finline-functions: ok to inline functions that look like
692    good inline candidates.  */
693
694 int flag_inline_functions;
695
696 /* Nonzero for -fkeep-inline-functions: even if we make a function
697    go inline everywhere, keep its definition around for debugging
698    purposes.  */
699
700 int flag_keep_inline_functions;
701
702 /* Nonzero means that functions will not be inlined.  */
703
704 int flag_no_inline;
705
706 /* Nonzero means that we should emit static const variables
707    regardless of whether or not optimization is turned on.  */
708
709 int flag_keep_static_consts = 1;
710
711 /* Nonzero means we should be saving declaration info into a .X file.  */
712
713 int flag_gen_aux_info = 0;
714
715 /* Specified name of aux-info file.  */
716
717 static char *aux_info_file_name;
718
719 /* Nonzero means make the text shared if supported.  */
720
721 int flag_shared_data;
722
723 /* Nonzero means schedule into delayed branch slots if supported.  */
724
725 int flag_delayed_branch;
726
727 /* Nonzero if we are compiling pure (sharable) code.
728    Value is 1 if we are doing reasonable (i.e. simple
729    offset into offset table) pic.  Value is 2 if we can
730    only perform register offsets.  */
731
732 int flag_pic;
733
734 /* Nonzero means generate extra code for exception handling and enable
735    exception handling.  */
736
737 int flag_exceptions;
738
739 /* Nonzero means generate frame unwind info table when supported.  */
740
741 int flag_unwind_tables = 0;
742
743 /* Nonzero means don't place uninitialized global data in common storage
744    by default.  */
745
746 int flag_no_common;
747
748 /* Nonzero means pretend it is OK to examine bits of target floats,
749    even if that isn't true.  The resulting code will have incorrect constants,
750    but the same series of instructions that the native compiler would make.  */
751
752 int flag_pretend_float;
753
754 /* Nonzero means change certain warnings into errors.
755    Usually these are warnings about failure to conform to some standard.  */
756
757 int flag_pedantic_errors = 0;
758
759 /* flag_schedule_insns means schedule insns within basic blocks (before
760    local_alloc).
761    flag_schedule_insns_after_reload means schedule insns after
762    global_alloc.  */
763
764 int flag_schedule_insns = 0;
765 int flag_schedule_insns_after_reload = 0;
766
767 /* The following flags have effect only for scheduling before register
768    allocation:
769
770    flag_schedule_interblock means schedule insns accross basic blocks.
771    flag_schedule_speculative means allow speculative motion of non-load insns.
772    flag_schedule_speculative_load means allow speculative motion of some
773    load insns.
774    flag_schedule_speculative_load_dangerous allows speculative motion of more
775    load insns.  */
776
777 int flag_schedule_interblock = 1;
778 int flag_schedule_speculative = 1;
779 int flag_schedule_speculative_load = 0;
780 int flag_schedule_speculative_load_dangerous = 0;
781
782 int flag_single_precision_constant;
783
784 /* flag_branch_on_count_reg means try to replace add-1,compare,branch tupple
785    by a cheaper branch on a count register.  */
786 int flag_branch_on_count_reg = 1;
787
788 /* -finhibit-size-directive inhibits output of .size for ELF.
789    This is used only for compiling crtstuff.c,
790    and it may be extended to other effects
791    needed for crtstuff.c on other systems.  */
792 int flag_inhibit_size_directive = 0;
793
794 /* -fverbose-asm causes extra commentary information to be produced in
795    the generated assembly code (to make it more readable).  This option
796    is generally only of use to those who actually need to read the
797    generated assembly code (perhaps while debugging the compiler itself).
798    -fno-verbose-asm, the default, causes the extra information
799    to be omitted and is useful when comparing two assembler files.  */
800
801 int flag_verbose_asm = 0;
802
803 /* -dA causes debug commentary information to be produced in
804    the generated assembly code (to make it more readable).  This option
805    is generally only of use to those who actually need to read the
806    generated assembly code (perhaps while debugging the compiler itself).
807    Currently, this switch is only used by dwarfout.c; however, it is intended
808    to be a catchall for printing debug information in the assembler file.  */
809
810 int flag_debug_asm = 0;
811
812 /* -dP causes the rtl to be emitted as a comment in assembly.  */
813
814 int flag_dump_rtl_in_asm = 0;
815
816 /* -fgnu-linker specifies use of the GNU linker for initializations.
817    (Or, more generally, a linker that handles initializations.)
818    -fno-gnu-linker says that collect2 will be used.  */
819 #ifdef USE_COLLECT2
820 int flag_gnu_linker = 0;
821 #else
822 int flag_gnu_linker = 1;
823 #endif
824
825 /* Enable SSA.  */
826 int flag_ssa = 0;
827
828 /* Enable ssa conditional constant propagation.  */
829 int flag_ssa_ccp = 0;
830
831 /* Enable ssa aggressive dead code elimination.  */
832 int flag_ssa_dce = 0;
833
834 /* Tag all structures with __attribute__(packed).  */
835 int flag_pack_struct = 0;
836
837 /* Emit code to check for stack overflow; also may cause large objects
838    to be allocated dynamically.  */
839 int flag_stack_check;
840
841 /* When non-NULL, indicates that whenever space is allocated on the
842    stack, the resulting stack pointer must not pass this
843    address---that is, for stacks that grow downward, the stack pointer
844    must always be greater than or equal to this address; for stacks
845    that grow upward, the stack pointer must be less than this address.
846    At present, the rtx may be either a REG or a SYMBOL_REF, although
847    the support provided depends on the backend.  */
848 rtx stack_limit_rtx;
849
850 /* -fcheck-memory-usage causes extra code to be generated in order to check
851    memory accesses.  This is used by a detector of bad memory accesses such
852    as Checker.  */
853 int flag_check_memory_usage = 0;
854
855 /* -fprefix-function-name causes function name to be prefixed.  This
856    can be used with -fcheck-memory-usage to isolate code compiled with
857    -fcheck-memory-usage.  */
858 int flag_prefix_function_name = 0;
859
860 /* 0 if pointer arguments may alias each other.  True in C.
861    1 if pointer arguments may not alias each other but may alias
862    global variables.
863    2 if pointer arguments may not alias each other and may not
864    alias global variables.  True in Fortran.
865    This defaults to 0 for C.  */
866 int flag_argument_noalias = 0;
867
868 /* Nonzero if we should do (language-dependent) alias analysis.
869    Typically, this analysis will assume that expressions of certain
870    types do not alias expressions of certain other types.  Only used
871    if alias analysis (in general) is enabled.  */
872 int flag_strict_aliasing = 0;
873
874 /* Instrument functions with calls at entry and exit, for profiling.  */
875 int flag_instrument_function_entry_exit = 0;
876
877 /* Nonzero means ignore `#ident' directives.  0 means handle them.
878    On SVR4 targets, it also controls whether or not to emit a
879    string identifying the compiler.  */
880
881 int flag_no_ident = 0;
882
883 /* This will perform a peephole pass before sched2.  */
884 int flag_peephole2 = 0;
885
886 /* This will try to guess branch probabilities.  */
887 int flag_guess_branch_prob = 0;
888
889 /* -fbounded-pointers causes gcc to compile pointers as composite
890    objects occupying three words: the pointer value, the base address
891    of the referent object, and the address immediately beyond the end
892    of the referent object.  The base and extent allow us to perform
893    runtime bounds checking.  -fbounded-pointers implies -fcheck-bounds.  */
894 int flag_bounded_pointers = 0;
895
896 /* -fcheck-bounds causes gcc to generate array bounds checks.
897    For C, C++: defaults to value of flag_bounded_pointers.
898    For ObjC: defaults to off.
899    For Java: defaults to on.
900    For Fortran: defaults to off.
901    For CHILL: defaults to off.  */
902 int flag_bounds_check = 0;
903
904 /* If one, renumber instruction UIDs to reduce the number of
905    unused UIDs if there are a lot of instructions.  If greater than
906    one, unconditionally renumber instruction UIDs.  */
907 int flag_renumber_insns = 1;
908
909 /* Values of the -falign-* flags: how much to align labels in code.
910    0 means `use default', 1 means `don't align'.
911    For each variable, there is an _log variant which is the power
912    of two not less than the variable, for .align output.  */
913
914 int align_loops;
915 int align_loops_log;
916 int align_jumps;
917 int align_jumps_log;
918 int align_labels;
919 int align_labels_log;
920 int align_functions;
921 int align_functions_log;
922
923 /* Table of supported debugging formats.  */
924 static struct
925 {
926   const char *arg;
927   /* Since PREFERRED_DEBUGGING_TYPE isn't necessarily a
928      constant expression, we use NO_DEBUG in its place.  */
929   enum debug_info_type debug_type;
930   int use_extensions_p;
931   const char *description;
932 } *da,
933 debug_args[] =
934 {
935   { "",       NO_DEBUG, DEFAULT_GDB_EXTENSIONS,
936     N_("Generate debugging info in default format") },
937   { "gdb",    NO_DEBUG, 1, N_("Generate debugging info in default extended format") },
938 #ifdef DBX_DEBUGGING_INFO
939   { "stabs",  DBX_DEBUG, 0, N_("Generate STABS format debug info") },
940   { "stabs+", DBX_DEBUG, 1, N_("Generate extended STABS format debug info") },
941 #endif
942 #ifdef DWARF_DEBUGGING_INFO
943   { "dwarf",  DWARF_DEBUG, 0, N_("Generate DWARF-1 format debug info") },
944   { "dwarf+", DWARF_DEBUG, 1,
945     N_("Generate extended DWARF-1 format debug info") },
946 #endif
947 #ifdef DWARF2_DEBUGGING_INFO
948   { "dwarf-2", DWARF2_DEBUG, 0, N_("Generate DWARF-2 debug info") },
949 #endif
950 #ifdef XCOFF_DEBUGGING_INFO
951   { "xcoff",  XCOFF_DEBUG, 0, N_("Generate XCOFF format debug info") },
952   { "xcoff+", XCOFF_DEBUG, 1, N_("Generate extended XCOFF format debug info") },
953 #endif
954 #ifdef SDB_DEBUGGING_INFO
955   { "coff", SDB_DEBUG, 0, N_("Generate COFF format debug info") },
956 #endif
957   { 0, 0, 0, 0 }
958 };
959
960 typedef struct
961 {
962   const char *string;
963   int *variable;
964   int on_value;
965   const char *description;
966 }
967 lang_independent_options;
968
969 int flag_trapv = 0;
970
971 /* Add or remove a leading underscore from user symbols.  */
972 int flag_leading_underscore = -1;
973
974 /* The user symbol prefix after having resolved same.  */
975 const char *user_label_prefix;
976
977 static const param_info lang_independent_params[] = {
978 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
979   { OPTION, DEFAULT, HELP },
980 #include "params.def"
981 #undef DEFPARAM
982   { NULL, 0, NULL }
983 };
984
985 /* A default for same.  */
986 #ifndef USER_LABEL_PREFIX
987 #define USER_LABEL_PREFIX ""
988 #endif
989
990 /* Table of language-independent -f options.
991    STRING is the option name.  VARIABLE is the address of the variable.
992    ON_VALUE is the value to store in VARIABLE
993     if `-fSTRING' is seen as an option.
994    (If `-fno-STRING' is seen as an option, the opposite value is stored.)  */
995
996 lang_independent_options f_options[] =
997 {
998   {"eliminate-dwarf2-dups", &flag_eliminate_dwarf2_dups, 1,
999    N_("Perform DWARF2 duplicate elimination") },
1000   {"float-store", &flag_float_store, 1,
1001    N_("Do not store floats in registers") },
1002   {"volatile", &flag_volatile, 1,
1003    N_("Consider all mem refs through pointers as volatile") },
1004   {"volatile-global", &flag_volatile_global, 1,
1005    N_("Consider all mem refs to global data to be volatile") },
1006   {"volatile-static", &flag_volatile_static, 1,
1007    N_("Consider all mem refs to static data to be volatile") },
1008   {"defer-pop", &flag_defer_pop, 1,
1009    N_("Defer popping functions args from stack until later") },
1010   {"omit-frame-pointer", &flag_omit_frame_pointer, 1,
1011    N_("When possible do not generate stack frames") },
1012   {"optimize-sibling-calls", &flag_optimize_sibling_calls, 1,
1013    N_("Optimize sibling and tail recursive calls") },
1014   {"cse-follow-jumps", &flag_cse_follow_jumps, 1,
1015    N_("When running CSE, follow jumps to their targets") },
1016   {"cse-skip-blocks", &flag_cse_skip_blocks, 1,
1017    N_("When running CSE, follow conditional jumps") },
1018   {"expensive-optimizations", &flag_expensive_optimizations, 1,
1019    N_("Perform a number of minor, expensive optimisations") },
1020   {"thread-jumps", &flag_thread_jumps, 1,
1021    N_("Perform jump threading optimisations") },
1022   {"strength-reduce", &flag_strength_reduce, 1,
1023    N_("Perform strength reduction optimisations") },
1024   {"unroll-loops", &flag_unroll_loops, 1,
1025    N_("Perform loop unrolling when iteration count is known") },
1026   {"unroll-all-loops", &flag_unroll_all_loops, 1,
1027    N_("Perform loop unrolling for all loops") },
1028   {"move-all-movables", &flag_move_all_movables, 1,
1029    N_("Force all loop invariant computations out of loops") },
1030   {"reduce-all-givs", &flag_reduce_all_givs, 1,
1031    N_("Strength reduce all loop general induction variables") },
1032   {"writable-strings", &flag_writable_strings, 1,
1033    N_("Store strings in writable data section") },
1034   {"peephole", &flag_no_peephole, 0,
1035    N_("Enable machine specific peephole optimisations") },
1036   {"force-mem", &flag_force_mem, 1,
1037    N_("Copy memory operands into registers before using") },
1038   {"force-addr", &flag_force_addr, 1,
1039    N_("Copy memory address constants into regs before using") },
1040   {"function-cse", &flag_no_function_cse, 0,
1041    N_("Allow function addresses to be held in registers") },
1042   {"inline-functions", &flag_inline_functions, 1,
1043    N_("Integrate simple functions into their callers") },
1044   {"keep-inline-functions", &flag_keep_inline_functions, 1,
1045    N_("Generate code for funcs even if they are fully inlined") },
1046   {"inline", &flag_no_inline, 0,
1047    N_("Pay attention to the 'inline' keyword") },
1048   {"keep-static-consts", &flag_keep_static_consts, 1,
1049    N_("Emit static const variables even if they are not used") },
1050   {"syntax-only", &flag_syntax_only, 1,
1051    N_("Check for syntax errors, then stop") },
1052   {"shared-data", &flag_shared_data, 1,
1053    N_("Mark data as shared rather than private") },
1054   {"caller-saves", &flag_caller_saves, 1,
1055    N_("Enable saving registers around function calls") },
1056   {"pcc-struct-return", &flag_pcc_struct_return, 1,
1057    N_("Return 'short' aggregates in memory, not registers") },
1058   {"reg-struct-return", &flag_pcc_struct_return, 0,
1059    N_("Return 'short' aggregates in registers") },
1060   {"delayed-branch", &flag_delayed_branch, 1,
1061    N_("Attempt to fill delay slots of branch instructions") },
1062   {"gcse", &flag_gcse, 1,
1063    N_("Perform the global common subexpression elimination") },
1064   {"gcse-lm", &flag_gcse_lm, 1,
1065    N_("Perform enhanced load motion during global subexpression elimination") },
1066   {"gcse-sm", &flag_gcse_sm, 1,
1067    N_("Perform store motion after global subexpression elimination") },
1068   {"rerun-cse-after-loop", &flag_rerun_cse_after_loop, 1,
1069    N_("Run CSE pass after loop optimisations") },
1070   {"rerun-loop-opt", &flag_rerun_loop_opt, 1,
1071    N_("Run the loop optimiser twice") },
1072   {"delete-null-pointer-checks", &flag_delete_null_pointer_checks, 1,
1073    N_("Delete useless null pointer checks") },
1074   {"pretend-float", &flag_pretend_float, 1,
1075    N_("Pretend that host and target use the same FP format") },
1076   {"schedule-insns", &flag_schedule_insns, 1,
1077    N_("Reschedule instructions before register allocation") },
1078   {"schedule-insns2", &flag_schedule_insns_after_reload, 1,
1079    N_("Reschedule instructions after register allocation") },
1080   {"sched-interblock",&flag_schedule_interblock, 1,
1081    N_("Enable scheduling across basic blocks") },
1082   {"sched-spec",&flag_schedule_speculative, 1,
1083    N_("Allow speculative motion of non-loads") },
1084   {"sched-spec-load",&flag_schedule_speculative_load, 1,
1085    N_("Allow speculative motion of some loads") },
1086   {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1,
1087    N_("Allow speculative motion of more loads") },
1088   {"branch-count-reg",&flag_branch_on_count_reg, 1,
1089    N_("Replace add,compare,branch with branch on count reg") },
1090   {"pic", &flag_pic, 1,
1091    N_("Generate position independent code, if possible") },
1092   {"PIC", &flag_pic, 2, ""},
1093   {"exceptions", &flag_exceptions, 1,
1094    N_("Enable exception handling") },
1095   {"unwind-tables", &flag_unwind_tables, 1,
1096    N_("Just generate unwind tables for exception handling") },
1097   {"non-call-exceptions", &flag_non_call_exceptions, 1,
1098    N_("Support synchronous non-call exceptions") },
1099   {"profile-arcs", &profile_arc_flag, 1,
1100    N_("Insert arc based program profiling code") },
1101   {"test-coverage", &flag_test_coverage, 1,
1102    N_("Create data files needed by gcov") },
1103   {"branch-probabilities", &flag_branch_probabilities, 1,
1104    N_("Use profiling information for branch probabilities") },
1105   {"reorder-blocks", &flag_reorder_blocks, 1,
1106    N_("Reorder basic blocks to improve code placement") },
1107   {"rename-registers", &flag_rename_registers, 1,
1108    N_("Do the register renaming optimization pass") },
1109   {"common", &flag_no_common, 0,
1110    N_("Do not put unitialised globals in the common section") },
1111   {"inhibit-size-directive", &flag_inhibit_size_directive, 1,
1112    N_("Do not generate .size directives") },
1113   {"function-sections", &flag_function_sections, 1,
1114    N_("place each function into its own section") },
1115   {"data-sections", &flag_data_sections, 1,
1116    N_("place data items into their own section") },
1117   {"verbose-asm", &flag_verbose_asm, 1,
1118    N_("Add extra commentry to assembler output") },
1119   {"gnu-linker", &flag_gnu_linker, 1,
1120    N_("Output GNU ld formatted global initialisers") },
1121   {"regmove", &flag_regmove, 1,
1122    N_("Enables a register move optimisation") },
1123   {"optimize-register-move", &flag_regmove, 1,
1124    N_("Do the full regmove optimization pass") },
1125   {"pack-struct", &flag_pack_struct, 1,
1126    N_("Pack structure members together without holes") },
1127   {"stack-check", &flag_stack_check, 1,
1128    N_("Insert stack checking code into the program") },
1129   {"argument-alias", &flag_argument_noalias, 0,
1130    N_("Specify that arguments may alias each other & globals") },
1131   {"argument-noalias", &flag_argument_noalias, 1,
1132    N_("Assume arguments may alias globals but not each other") },
1133   {"argument-noalias-global", &flag_argument_noalias, 2,
1134    N_("Assume arguments do not alias each other or globals") },
1135   {"strict-aliasing", &flag_strict_aliasing, 1,
1136    N_("Assume strict aliasing rules apply") },
1137   {"align-loops", &align_loops, 0,
1138    N_("Align the start of loops") },
1139   {"align-jumps", &align_jumps, 0,
1140    N_("Align labels which are only reached by jumping") },
1141   {"align-labels", &align_labels, 0,
1142    N_("Align all labels") },
1143   {"align-functions", &align_functions, 0,
1144    N_("Align the start of functions") },
1145   {"check-memory-usage", &flag_check_memory_usage, 1,
1146    N_("Generate code to check every memory access") },
1147   {"prefix-function-name", &flag_prefix_function_name, 1,
1148    N_("Add a prefix to all function names") },
1149   {"dump-unnumbered", &flag_dump_unnumbered, 1,
1150    N_("Suppress output of instruction numbers and line number notes in debugging dumps") },
1151   {"instrument-functions", &flag_instrument_function_entry_exit, 1,
1152    N_("Instrument function entry/exit with profiling calls") },
1153   {"ssa", &flag_ssa, 1,
1154    N_("Enable SSA optimizations") },
1155   {"ssa-ccp", &flag_ssa_ccp, 1,
1156    N_("Enable SSA conditonal constant propagation") },
1157   {"ssa-dce", &flag_ssa_dce, 1,
1158    N_("Enable aggressive SSA dead code elimination") },
1159   {"leading-underscore", &flag_leading_underscore, 1,
1160    N_("External symbols have a leading underscore") },
1161   {"ident", &flag_no_ident, 0,
1162    N_("Process #ident directives") },
1163   { "peephole2", &flag_peephole2, 1,
1164    N_("Enables an rtl peephole pass run before sched2") },
1165   { "guess-branch-probability", &flag_guess_branch_prob, 1,
1166    N_("Enables guessing of branch probabilities") },
1167   {"math-errno", &flag_errno_math, 1,
1168    N_("Set errno after built-in math functions") },
1169   {"trapping-math", &flag_trapping_math, 1,
1170    N_("Floating-point operations can trap") },
1171   {"unsafe-math-optimizations", &flag_unsafe_math_optimizations, 1,
1172    N_("Allow math optimizations that may violate IEEE or ANSI standards") },
1173   {"bounded-pointers", &flag_bounded_pointers, 1,
1174    N_("Compile pointers as triples: value, base & end") },
1175   {"bounds-check", &flag_bounds_check, 1,
1176    N_("Generate code to check bounds before dereferencing pointers and arrays") },
1177   {"single-precision-constant", &flag_single_precision_constant, 1,
1178    N_("Convert floating point constant to single precision constant") },
1179   {"time-report", &time_report, 1,
1180    N_("Report time taken by each compiler pass at end of run") },
1181   {"mem-report", &mem_report, 1,
1182    N_("Report on permanent memory allocation at end of run") },
1183   { "trapv", &flag_trapv, 1,
1184    N_("Trap for signed overflow in addition / subtraction / multiplication.") },
1185 };
1186
1187 /* Table of language-specific options.  */
1188
1189 static struct lang_opt
1190 {
1191   const char *option;
1192   const char *description;
1193 }
1194 documented_lang_options[] =
1195 {
1196   /* In order not to overload the --help output, the convention
1197      used here is to only describe those options which are not
1198      enabled by default.  */
1199
1200   { "-ansi", 
1201     N_("Compile just for ISO C89") },
1202   { "-fallow-single-precision",
1203     N_("Do not promote floats to double if using -traditional") },
1204   { "-std= ", 
1205     N_("Determine language standard") },
1206
1207   { "-fsigned-bitfields", "" },
1208   { "-funsigned-bitfields",
1209     N_("Make bitfields by unsigned by default") },
1210   { "-fno-signed-bitfields", "" },
1211   { "-fno-unsigned-bitfields","" },
1212   { "-fsigned-char", 
1213     N_("Make 'char' be signed by default") },
1214   { "-funsigned-char", 
1215     N_("Make 'char' be unsigned by default") },
1216   { "-fno-signed-char", "" },
1217   { "-fno-unsigned-char", "" },
1218
1219   { "-ftraditional", "" },
1220   { "-traditional", 
1221     N_("Attempt to support traditional K&R style C") },
1222   { "-fnotraditional", "" },
1223   { "-fno-traditional", "" },
1224
1225   { "-fasm", "" },
1226   { "-fno-asm", 
1227     N_("Do not recognise the 'asm' keyword") },
1228   { "-fbuiltin", "" },
1229   { "-fno-builtin", 
1230     N_("Do not recognise any built in functions") },
1231   { "-fhosted", 
1232     N_("Assume normal C execution environment") },
1233   { "-fno-hosted", "" },
1234   { "-ffreestanding",
1235     N_("Assume that standard libraries & main might not exist") },
1236   { "-fno-freestanding", "" },
1237   { "-fcond-mismatch", 
1238     N_("Allow different types as args of ? operator") },
1239   { "-fno-cond-mismatch", "" },
1240   { "-fdollars-in-identifiers", 
1241     N_("Allow the use of $ inside identifiers") },
1242   { "-fno-dollars-in-identifiers", "" },
1243   { "-fpreprocessed", "" },
1244   { "-fno-preprocessed", "" },
1245   { "-fshort-double", 
1246     N_("Use the same size for double as for float") },
1247   { "-fno-short-double", "" },
1248   { "-fshort-enums", 
1249     N_("Use the smallest fitting integer to hold enums") },
1250   { "-fno-short-enums", "" },
1251   { "-fshort-wchar", 
1252     N_("Override the underlying type for wchar_t to `unsigned short'") },
1253   { "-fno-short-wchar", "" },
1254
1255   { "-Wall", 
1256     N_("Enable most warning messages") },
1257   { "-Wbad-function-cast",
1258     N_("Warn about casting functions to incompatible types") },
1259   { "-Wno-bad-function-cast", "" },
1260   { "-Wno-missing-noreturn", "" },
1261   { "-Wmissing-format-attribute",
1262     N_("Warn about functions which might be candidates for format attributes") },
1263   { "-Wno-missing-format-attribute", "" },
1264   { "-Wcast-qual", 
1265     N_("Warn about casts which discard qualifiers") },
1266   { "-Wno-cast-qual", "" },
1267   { "-Wchar-subscripts", 
1268     N_("Warn about subscripts whose type is 'char'") },
1269   { "-Wno-char-subscripts", "" },
1270   { "-Wcomment", 
1271     N_("Warn if nested comments are detected") },
1272   { "-Wno-comment", "" },
1273   { "-Wcomments", 
1274     N_("Warn if nested comments are detected") },
1275   { "-Wno-comments", "" },
1276   { "-Wconversion", 
1277     N_("Warn about possibly confusing type conversions") },
1278   { "-Wno-conversion", "" },
1279   { "-Wformat", 
1280     N_("Warn about printf/scanf/strftime/strfmon format anomalies") },
1281   { "-Wno-format", "" },
1282   { "-Wformat-y2k", "" },
1283   { "-Wno-format-y2k",
1284     N_("Don't warn about strftime formats yielding 2 digit years") },
1285   { "-Wformat-extra-args", "" },
1286   { "-Wno-format-extra-args",
1287     N_("Don't warn about too many arguments to format functions") },
1288   { "-Wformat-nonliteral", 
1289     N_("Warn about non-string-literal format strings") },
1290   { "-Wno-format-nonliteral", "" },
1291   { "-Wformat-security",
1292     N_("Warn about possible security problems with format functions") },
1293   { "-Wno-format-security", "" },
1294   { "-Wimplicit-function-declaration",
1295     N_("Warn about implicit function declarations") },
1296   { "-Wno-implicit-function-declaration", "" },
1297   { "-Werror-implicit-function-declaration", "" },
1298   { "-Wimplicit-int", 
1299     N_("Warn when a declaration does not specify a type") },
1300   { "-Wno-implicit-int", "" },
1301   { "-Wimplicit", "" },
1302   { "-Wno-implicit", "" },
1303   { "-Wimport", 
1304     N_("Warn about the use of the #import directive") },
1305   { "-Wno-import", "" },
1306   { "-Wlong-long","" },
1307   { "-Wno-long-long", 
1308     N_("Do not warn about using 'long long' when -pedantic") },
1309   { "-Wmain", 
1310     N_("Warn about suspicious declarations of main") },
1311   { "-Wno-main", "" },
1312   { "-Wmissing-braces",
1313     N_("Warn about possibly missing braces around initialisers") },
1314   { "-Wno-missing-braces", "" },
1315   { "-Wmissing-declarations",
1316     N_("Warn about global funcs without previous declarations") },
1317   { "-Wno-missing-declarations", "" },
1318   { "-Wmissing-prototypes", 
1319     N_("Warn about global funcs without prototypes") },
1320   { "-Wno-missing-prototypes", "" },
1321   { "-Wmultichar", 
1322     N_("Warn about use of multicharacter literals") },
1323   { "-Wno-multichar", "" },
1324   { "-Wnested-externs", 
1325     N_("Warn about externs not at file scope level") },
1326   { "-Wno-nested-externs", "" },
1327   { "-Wparentheses", 
1328     N_("Warn about possible missing parentheses") },
1329   { "-Wno-parentheses", "" },
1330   { "-Wsequence-point",
1331     N_("Warn about possible violations of sequence point rules") },
1332   { "-Wno-sequence-point", "" },
1333   { "-Wpointer-arith", 
1334     N_("Warn about function pointer arithmetic") },
1335   { "-Wno-pointer-arith", "" },
1336   { "-Wredundant-decls",
1337     N_("Warn about multiple declarations of the same object") },
1338   { "-Wno-redundant-decls", "" },
1339   { "-Wsign-compare", 
1340     N_("Warn about signed/unsigned comparisons") },
1341   { "-Wno-sign-compare", "" },
1342   { "-Wfloat-equal", 
1343     N_("Warn about testing equality of floating point numbers") },
1344   { "-Wno-float-equal", "" },
1345   { "-Wunknown-pragmas", 
1346     N_("Warn about unrecognized pragmas") },
1347   { "-Wno-unknown-pragmas", "" },
1348   { "-Wstrict-prototypes", 
1349     N_("Warn about non-prototyped function decls") },
1350   { "-Wno-strict-prototypes", "" },
1351   { "-Wtraditional", 
1352     N_("Warn about constructs whose meaning change in ISO C") },
1353   { "-Wno-traditional", "" },
1354   { "-Wtrigraphs", 
1355     N_("Warn when trigraphs are encountered") },
1356   { "-Wno-trigraphs", "" },
1357   { "-Wundef", "" },
1358   { "-Wno-undef", "" },
1359   { "-Wwrite-strings", 
1360     N_("Mark strings as 'const char *'") },
1361   { "-Wno-write-strings", "" },
1362
1363 #define DEFINE_LANG_NAME(NAME) { NULL, NAME },
1364
1365 #include "options.h"
1366
1367 };
1368
1369 /* Here is a table, controlled by the tm.h file, listing each -m switch
1370    and which bits in `target_switches' it should set or clear.
1371    If VALUE is positive, it is bits to set.
1372    If VALUE is negative, -VALUE is bits to clear.
1373    (The sign bit is not used so there is no confusion.)  */
1374
1375 struct
1376 {
1377   const char *name;
1378   int value;
1379   const char *description;
1380 }
1381 target_switches [] = TARGET_SWITCHES;
1382
1383 /* This table is similar, but allows the switch to have a value.  */
1384
1385 #ifdef TARGET_OPTIONS
1386 struct
1387 {
1388   const char *prefix;
1389   const char **variable;
1390   const char *description;
1391 }
1392 target_options [] = TARGET_OPTIONS;
1393 #endif
1394 \f
1395 /* Options controlling warnings.  */
1396
1397 /* Don't print warning messages.  -w.  */
1398
1399 int inhibit_warnings = 0;
1400
1401 /* Don't suppress warnings from system headers.  -Wsystem-headers.  */
1402
1403 int warn_system_headers = 0;
1404
1405 /* Print various extra warnings.  -W.  */
1406
1407 int extra_warnings = 0;
1408
1409 /* Treat warnings as errors.  -Werror.  */
1410
1411 int warnings_are_errors = 0;
1412
1413 /* Nonzero to warn about unused variables, functions et.al.  */
1414
1415 int warn_unused_function;
1416 int warn_unused_label;
1417 int warn_unused_parameter;
1418 int warn_unused_variable;
1419 int warn_unused_value;
1420
1421 void
1422 set_Wunused (setting)
1423      int setting;
1424 {
1425   warn_unused_function = setting;
1426   warn_unused_label = setting;
1427   /* Unused function parameter warnings are reported when either ``-W
1428      -Wunused'' or ``-Wunused-parameter'' is specified.  Differentiate
1429      -Wunused by setting WARN_UNUSED_PARAMETER to -1.  */
1430   if (!setting)
1431     warn_unused_parameter = 0;
1432   else if (!warn_unused_parameter)
1433     warn_unused_parameter = -1;
1434   warn_unused_variable = setting;
1435   warn_unused_value = setting;
1436 }
1437
1438 /* Nonzero to warn about code which is never reached.  */
1439
1440 int warn_notreached;
1441
1442 /* Nonzero to warn about variables used before they are initialized.  */
1443
1444 int warn_uninitialized;
1445
1446 /* Nonzero means warn about all declarations which shadow others.   */
1447
1448 int warn_shadow;
1449
1450 /* Warn if a switch on an enum fails to have a case for every enum value.  */
1451
1452 int warn_switch;
1453
1454 /* Nonzero means warn about function definitions that default the return type
1455    or that use a null return and have a return-type other than void.  */
1456
1457 int warn_return_type;
1458
1459 /* Nonzero means warn about pointer casts that increase the required
1460    alignment of the target type (and might therefore lead to a crash
1461    due to a misaligned access).  */
1462
1463 int warn_cast_align;
1464
1465 /* Nonzero means warn about any objects definitions whose size is larger
1466    than N bytes.  Also want about function definitions whose returned
1467    values are larger than N bytes. The value N is in `larger_than_size'.  */
1468
1469 int warn_larger_than;
1470 HOST_WIDE_INT larger_than_size;
1471
1472 /* Nonzero means warn if inline function is too large.  */
1473
1474 int warn_inline;
1475
1476 /* Warn if a function returns an aggregate,
1477    since there are often incompatible calling conventions for doing this.  */
1478
1479 int warn_aggregate_return;
1480
1481 /* Warn if packed attribute on struct is unnecessary and inefficient.  */
1482
1483 int warn_packed;
1484
1485 /* Warn when gcc pads a structure to an alignment boundary.  */
1486
1487 int warn_padded;
1488
1489 /* Warn when an optimization pass is disabled.  */
1490
1491 int warn_disabled_optimization;
1492
1493 /* Warn about functions which might be candidates for attribute noreturn.  */
1494
1495 int warn_missing_noreturn;
1496
1497 /* Likewise for -W.  */
1498
1499 lang_independent_options W_options[] =
1500 {
1501   {"unused-function", &warn_unused_function, 1,
1502    N_("Warn when a function is unused") },
1503   {"unused-label", &warn_unused_label, 1,
1504    N_("Warn when a label is unused") },
1505   {"unused-parameter", &warn_unused_parameter, 1,
1506    N_("Warn when a function parameter is unused") },
1507   {"unused-variable", &warn_unused_variable, 1,
1508    N_("Warn when a variable is unused") },
1509   {"unused-value", &warn_unused_value, 1,
1510    N_("Warn when an expression value is unused") },
1511   {"system-headers", &warn_system_headers, 1,
1512    N_("Do not suppress warnings from system headers") },
1513   {"error", &warnings_are_errors, 1,
1514    N_("Treat all warnings as errors") },
1515   {"shadow", &warn_shadow, 1,
1516    N_("Warn when one local variable shadows another") },
1517   {"switch", &warn_switch, 1,
1518    N_("Warn about enumerated switches missing a specific case") },
1519   {"aggregate-return", &warn_aggregate_return, 1,
1520    N_("Warn about returning structures, unions or arrays") },
1521   {"cast-align", &warn_cast_align, 1,
1522    N_("Warn about pointer casts which increase alignment") },
1523   {"unreachable-code", &warn_notreached, 1,
1524    N_("Warn about code that will never be executed") },
1525   {"uninitialized", &warn_uninitialized, 1,
1526    N_("Warn about unitialized automatic variables") },
1527   {"inline", &warn_inline, 1,
1528    N_("Warn when an inlined function cannot be inlined") },
1529   {"packed", &warn_packed, 1,
1530    N_("Warn when the packed attribute has no effect on struct layout") },
1531   {"padded", &warn_padded, 1,
1532    N_("Warn when padding is required to align struct members") },
1533   {"disabled-optimization", &warn_disabled_optimization, 1,
1534    N_("Warn when an optimization pass is disabled") },
1535   {"missing-noreturn", &warn_missing_noreturn, 1,
1536    N_("Warn about functions which might be candidates for attribute noreturn") }
1537 };
1538
1539 /* The following routines are useful in setting all the flags that
1540    -ffast-math and -fno-fast-math imply.  */
1541
1542 void
1543 set_fast_math_flags ()
1544 {
1545   flag_trapping_math = 0;
1546   flag_unsafe_math_optimizations = 1;
1547   flag_errno_math = 0;
1548 }
1549
1550 void
1551 set_no_fast_math_flags ()
1552 {
1553   flag_trapping_math = 1;
1554   flag_unsafe_math_optimizations = 0;
1555   flag_errno_math = 1;
1556 }
1557
1558 \f
1559 /* Output files for assembler code (real compiler output)
1560    and debugging dumps.  */
1561
1562 FILE *asm_out_file;
1563 FILE *aux_info_file;
1564 FILE *rtl_dump_file = NULL;
1565
1566 /* Decode the string P as an integral parameter.
1567    If the string is indeed an integer return its numeric value else
1568    issue an Invalid Option error for the option PNAME and return DEFVAL.
1569    If PNAME is zero just return DEFVAL, do not call error.  */
1570
1571 int
1572 read_integral_parameter (p, pname, defval)
1573      const char *p;
1574      const char *pname;
1575      const int  defval;
1576 {
1577   const char *endp = p;
1578
1579   while (*endp)
1580     {
1581       if (*endp >= '0' && *endp <= '9')
1582         endp++;
1583       else
1584         break;
1585     }
1586
1587   if (*endp != 0)
1588     {
1589       if (pname != 0)
1590         error ("Invalid option `%s'", pname);
1591       return defval;
1592     }
1593
1594   return atoi (p);
1595 }
1596
1597 \f
1598 /* This is the default decl_printable_name function.  */
1599
1600 static const char *
1601 decl_name (decl, verbosity)
1602      tree decl;
1603      int verbosity ATTRIBUTE_UNUSED;
1604 {
1605   return IDENTIFIER_POINTER (DECL_NAME (decl));
1606 }
1607 \f
1608
1609 /* This calls abort and is used to avoid problems when abort if a macro.
1610    It is used when we need to pass the address of abort.  */
1611
1612 void
1613 do_abort ()
1614 {
1615   abort ();
1616 }
1617
1618 /* When `malloc.c' is compiled with `rcheck' defined,
1619    it calls this function to report clobberage.  */
1620
1621 void
1622 botch (s)
1623      const char *s ATTRIBUTE_UNUSED;
1624 {
1625   abort ();
1626 }
1627 \f
1628 /* Return the logarithm of X, base 2, considering X unsigned,
1629    if X is a power of 2.  Otherwise, returns -1.
1630
1631    This should be used via the `exact_log2' macro.  */
1632
1633 int
1634 exact_log2_wide (x)
1635      register unsigned HOST_WIDE_INT x;
1636 {
1637   register int log = 0;
1638   /* Test for 0 or a power of 2.  */
1639   if (x == 0 || x != (x & -x))
1640     return -1;
1641   while ((x >>= 1) != 0)
1642     log++;
1643   return log;
1644 }
1645
1646 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1647    If X is 0, return -1.
1648
1649    This should be used via the floor_log2 macro.  */
1650
1651 int
1652 floor_log2_wide (x)
1653      register unsigned HOST_WIDE_INT x;
1654 {
1655   register int log = -1;
1656   while (x != 0)
1657     log++,
1658     x >>= 1;
1659   return log;
1660 }
1661
1662 static int float_handler_set;
1663 int float_handled;
1664 jmp_buf float_handler;
1665
1666 /* Signals actually come here.  */
1667
1668 static void
1669 float_signal (signo)
1670      /* If this is missing, some compilers complain.  */
1671      int signo ATTRIBUTE_UNUSED;
1672 {
1673   if (float_handled == 0)
1674     crash_signal (signo);
1675   float_handled = 0;
1676
1677   /* On System-V derived systems, we must reinstall the signal handler.
1678      This is harmless on BSD-derived systems.  */
1679   signal (SIGFPE, float_signal);
1680   longjmp (float_handler, 1);
1681 }
1682
1683 /* Specify where to longjmp to when a floating arithmetic error happens.
1684    If HANDLER is 0, it means don't handle the errors any more.  */
1685
1686 void
1687 set_float_handler (handler)
1688      jmp_buf handler;
1689 {
1690   float_handled = (handler != 0);
1691   if (handler)
1692     memcpy (float_handler, handler, sizeof (float_handler));
1693
1694   if (float_handled && ! float_handler_set)
1695     {
1696       signal (SIGFPE, float_signal);
1697       float_handler_set = 1;
1698     }
1699 }
1700
1701 /* This is a wrapper function for code which might elicit an
1702    arithmetic exception.  That code should be passed in as a function
1703    pointer FN, and one argument DATA.  DATA is usually a struct which
1704    contains the real input and output for function FN.  This function
1705    returns 0 (failure) if longjmp was called (i.e. an exception
1706    occured.)  It returns 1 (success) otherwise.  */
1707
1708 int
1709 do_float_handler (fn, data)
1710   void (*fn) PARAMS ((PTR));
1711   PTR data;
1712 {
1713   jmp_buf buf;
1714
1715   if (setjmp (buf))
1716     {
1717       /* We got here via longjmp () caused by an exception in function
1718          fn ().  */
1719       set_float_handler (NULL);
1720       return 0;
1721     }
1722
1723   set_float_handler (buf);
1724   (*fn)(data);
1725   set_float_handler (NULL);
1726   return 1;
1727 }
1728
1729 /* Handler for fatal signals, such as SIGSEGV.  These are transformed
1730    into ICE messages, which is much more user friendly.  */
1731
1732 static void
1733 crash_signal (signo)
1734      int signo;
1735 {
1736   internal_error ("Internal error: %s", strsignal (signo));
1737 }
1738
1739 /* Strip off a legitimate source ending from the input string NAME of
1740    length LEN.  Rather than having to know the names used by all of
1741    our front ends, we strip off an ending of a period followed by
1742    up to five characters.  (Java uses ".class".)  */
1743
1744 void
1745 strip_off_ending (name, len)
1746      char *name;
1747      int len;
1748 {
1749   int i;
1750   for (i = 2;  i < 6 && len > i;  i++)
1751     {
1752       if (name[len - i] == '.')
1753         {
1754           name[len - i] = '\0';
1755           break;
1756         }
1757     }
1758 }
1759
1760 /* Output a quoted string.  */
1761
1762 void
1763 output_quoted_string (asm_file, string)
1764      FILE *asm_file;
1765      const char *string;
1766 {
1767 #ifdef OUTPUT_QUOTED_STRING
1768   OUTPUT_QUOTED_STRING (asm_file, string);
1769 #else
1770   char c;
1771
1772   putc ('\"', asm_file);
1773   while ((c = *string++) != 0)
1774     {
1775       if (c == '\"' || c == '\\')
1776         putc ('\\', asm_file);
1777       putc (c, asm_file);
1778     }
1779   putc ('\"', asm_file);
1780 #endif
1781 }
1782
1783 /* Output a file name in the form wanted by System V.  */
1784
1785 void
1786 output_file_directive (asm_file, input_name)
1787      FILE *asm_file;
1788      const char *input_name;
1789 {
1790   int len = strlen (input_name);
1791   const char *na = input_name + len;
1792
1793   /* NA gets INPUT_NAME sans directory names.  */
1794   while (na > input_name)
1795     {
1796       if (IS_DIR_SEPARATOR (na[-1]))
1797         break;
1798       na--;
1799     }
1800
1801 #ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
1802   ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file, na);
1803 #else
1804 #ifdef ASM_OUTPUT_SOURCE_FILENAME
1805   ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
1806 #else
1807   fprintf (asm_file, "\t.file\t");
1808   output_quoted_string (asm_file, na);
1809   fputc ('\n', asm_file);
1810 #endif
1811 #endif
1812 }
1813 \f
1814 /* Routine to open a dump file.  Return true if the dump file is enabled.  */
1815
1816 static int
1817 open_dump_file (index, decl)
1818      enum dump_file_index index;
1819      tree decl;
1820 {
1821   char *dump_name;
1822   const char *open_arg;
1823   char seq[16];
1824
1825   if (! dump_file[index].enabled)
1826     return 0;
1827
1828   timevar_push (TV_DUMP);
1829   if (rtl_dump_file != NULL)
1830     fclose (rtl_dump_file);
1831
1832   sprintf (seq, ".%02d.", index);
1833
1834   if (! dump_file[index].initialized)
1835     {
1836       /* If we've not initialized the files, do so now.  */
1837       if (graph_dump_format != no_graph
1838           && dump_file[index].graph_dump_p)
1839         {
1840           dump_name = concat (seq, dump_file[index].extension, NULL);
1841           clean_graph_dump_file (dump_base_name, dump_name);
1842           free (dump_name);
1843         }
1844       dump_file[index].initialized = 1;
1845       open_arg = "w";
1846     }
1847   else
1848     open_arg = "a";
1849
1850   dump_name = concat (dump_base_name, seq,
1851                       dump_file[index].extension, NULL);
1852
1853   rtl_dump_file = fopen (dump_name, open_arg);
1854   if (rtl_dump_file == NULL)
1855     fatal_io_error ("can't open %s", dump_name);
1856
1857   free (dump_name);
1858
1859   if (decl)
1860     fprintf (rtl_dump_file, "\n;; Function %s\n\n",
1861              decl_printable_name (decl, 2));
1862
1863   timevar_pop (TV_DUMP);
1864   return 1;
1865 }
1866
1867 /* Routine to close a dump file.  */
1868
1869 static void
1870 close_dump_file (index, func, insns)
1871      enum dump_file_index index;
1872      void (*func) PARAMS ((FILE *, rtx));
1873      rtx insns;
1874 {
1875   if (! rtl_dump_file)
1876     return;
1877
1878   timevar_push (TV_DUMP);
1879   if (insns
1880       && graph_dump_format != no_graph
1881       && dump_file[index].graph_dump_p)
1882     {
1883       char seq[16];
1884       char *suffix;
1885
1886       sprintf (seq, ".%02d.", index);
1887       suffix = concat (seq, dump_file[index].extension, NULL);
1888       print_rtl_graph_with_bb (dump_base_name, suffix, insns);
1889       free (suffix);
1890     }
1891
1892   if (func && insns)
1893     func (rtl_dump_file, insns);
1894
1895   fflush (rtl_dump_file);
1896   fclose (rtl_dump_file);
1897
1898   rtl_dump_file = NULL;
1899   timevar_pop (TV_DUMP);
1900 }
1901
1902 /* Do any final processing required for the declarations in VEC, of
1903    which there are LEN.  We write out inline functions and variables
1904    that have been deferred until this point, but which are required.
1905    Returns non-zero if anything was put out.  */
1906
1907 int
1908 wrapup_global_declarations (vec, len)
1909      tree *vec;
1910      int len;
1911 {
1912   tree decl;
1913   int i;
1914   int reconsider;
1915   int output_something = 0;
1916
1917   for (i = 0; i < len; i++)
1918     {
1919       decl = vec[i];
1920
1921       /* We're not deferring this any longer.  */
1922       DECL_DEFER_OUTPUT (decl) = 0;
1923
1924       if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0
1925           && incomplete_decl_finalize_hook != 0)
1926         (*incomplete_decl_finalize_hook) (decl);
1927     }
1928
1929   /* Now emit any global variables or functions that we have been
1930      putting off.  We need to loop in case one of the things emitted
1931      here references another one which comes earlier in the list.  */
1932   do
1933     {
1934       reconsider = 0;
1935       for (i = 0; i < len; i++)
1936         {
1937           decl = vec[i];
1938
1939           if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
1940             continue;
1941
1942           /* Don't write out static consts, unless we still need them.
1943
1944              We also keep static consts if not optimizing (for debugging),
1945              unless the user specified -fno-keep-static-consts.
1946              ??? They might be better written into the debug information.
1947              This is possible when using DWARF.
1948
1949              A language processor that wants static constants to be always
1950              written out (even if it is not used) is responsible for
1951              calling rest_of_decl_compilation itself.  E.g. the C front-end
1952              calls rest_of_decl_compilation from finish_decl.
1953              One motivation for this is that is conventional in some
1954              environments to write things like:
1955              static const char rcsid[] = "... version string ...";
1956              intending to force the string to be in the executable.
1957
1958              A language processor that would prefer to have unneeded
1959              static constants "optimized away" would just defer writing
1960              them out until here.  E.g. C++ does this, because static
1961              constants are often defined in header files.
1962
1963              ??? A tempting alternative (for both C and C++) would be
1964              to force a constant to be written if and only if it is
1965              defined in a main file, as opposed to an include file.  */
1966
1967           if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
1968               && (((! TREE_READONLY (decl) || TREE_PUBLIC (decl))
1969                    && !DECL_COMDAT (decl))
1970                   || (!optimize
1971                       && flag_keep_static_consts
1972                       && !DECL_ARTIFICIAL (decl))
1973                   || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1974             {
1975               reconsider = 1;
1976               rest_of_decl_compilation (decl, NULL, 1, 1);
1977             }
1978
1979           if (TREE_CODE (decl) == FUNCTION_DECL
1980               && DECL_INITIAL (decl) != 0
1981               && DECL_SAVED_INSNS (decl) != 0
1982               && (flag_keep_inline_functions
1983                   || (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1984                   || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1985             {
1986               reconsider = 1;
1987               output_inline_function (decl);
1988             }
1989         }
1990
1991       if (reconsider)
1992         output_something = 1;
1993     }
1994   while (reconsider);
1995
1996   return output_something;
1997 }
1998
1999 /* Issue appropriate warnings for the global declarations in VEC (of
2000    which there are LEN).  Output debugging information for them.  */
2001
2002 void
2003 check_global_declarations (vec, len)
2004      tree *vec;
2005      int len;
2006 {
2007   tree decl;
2008   int i;
2009
2010   for (i = 0; i < len; i++)
2011     {
2012       decl = vec[i];
2013
2014       if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
2015           && ! TREE_ASM_WRITTEN (decl))
2016         /* Cancel the RTL for this decl so that, if debugging info
2017            output for global variables is still to come,
2018            this one will be omitted.  */
2019         SET_DECL_RTL (decl, NULL_RTX);
2020
2021       /* Warn about any function
2022          declared static but not defined.
2023          We don't warn about variables,
2024          because many programs have static variables
2025          that exist only to get some text into the object file.  */
2026       if (TREE_CODE (decl) == FUNCTION_DECL
2027           && (warn_unused_function
2028               || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2029           && DECL_INITIAL (decl) == 0
2030           && DECL_EXTERNAL (decl)
2031           && ! DECL_ARTIFICIAL (decl)
2032           && ! TREE_PUBLIC (decl))
2033         {
2034           if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2035             pedwarn_with_decl (decl,
2036                                "`%s' used but never defined");
2037           else
2038             warning_with_decl (decl,
2039                                "`%s' declared `static' but never defined");
2040           /* This symbol is effectively an "extern" declaration now.  */
2041           TREE_PUBLIC (decl) = 1;
2042           assemble_external (decl);
2043         }
2044
2045       /* Warn about static fns or vars defined but not used,
2046          but not about inline functions or static consts
2047          since defining those in header files is normal practice.  */
2048       if (((warn_unused_function
2049             && TREE_CODE (decl) == FUNCTION_DECL && ! DECL_INLINE (decl))
2050            || (warn_unused_variable
2051                && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
2052           && ! DECL_IN_SYSTEM_HEADER (decl)
2053           && ! DECL_EXTERNAL (decl)
2054           && ! TREE_PUBLIC (decl)
2055           && ! TREE_USED (decl)
2056           && (TREE_CODE (decl) == FUNCTION_DECL || ! DECL_REGISTER (decl))
2057           /* The TREE_USED bit for file-scope decls
2058              is kept in the identifier, to handle multiple
2059              external decls in different scopes.  */
2060           && ! TREE_USED (DECL_NAME (decl)))
2061         warning_with_decl (decl, "`%s' defined but not used");
2062
2063       timevar_push (TV_SYMOUT);
2064 #ifdef SDB_DEBUGGING_INFO
2065       /* The COFF linker can move initialized global vars to the end.
2066          And that can screw up the symbol ordering.
2067          By putting the symbols in that order to begin with,
2068          we avoid a problem.  mcsun!unido!fauern!tumuc!pes@uunet.uu.net.  */
2069       if (write_symbols == SDB_DEBUG && TREE_CODE (decl) == VAR_DECL
2070           && TREE_PUBLIC (decl) && DECL_INITIAL (decl)
2071           && ! DECL_EXTERNAL (decl)
2072           && DECL_RTL (decl) != 0)
2073         sdbout_symbol (decl, 0);
2074
2075       /* Output COFF information for non-global
2076          file-scope initialized variables.  */
2077       if (write_symbols == SDB_DEBUG
2078           && TREE_CODE (decl) == VAR_DECL
2079           && DECL_INITIAL (decl)
2080           && ! DECL_EXTERNAL (decl)
2081           && DECL_RTL (decl) != 0
2082           && GET_CODE (DECL_RTL (decl)) == MEM)
2083         sdbout_toplevel_data (decl);
2084 #endif /* SDB_DEBUGGING_INFO  */
2085 #ifdef DWARF_DEBUGGING_INFO
2086       /* Output DWARF information for file-scope tentative data object
2087          declarations, file-scope (extern) function declarations (which
2088          had no corresponding body) and file-scope tagged type declarations
2089          and definitions which have not yet been forced out.  */
2090
2091       if (write_symbols == DWARF_DEBUG
2092           && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
2093         dwarfout_file_scope_decl (decl, 1);
2094 #endif
2095 #ifdef DWARF2_DEBUGGING_INFO
2096       /* Output DWARF2 information for file-scope tentative data object
2097          declarations, file-scope (extern) function declarations (which
2098          had no corresponding body) and file-scope tagged type declarations
2099          and definitions which have not yet been forced out.  */
2100
2101       if (write_symbols == DWARF2_DEBUG
2102           && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
2103         dwarf2out_decl (decl);
2104 #endif
2105       timevar_pop (TV_SYMOUT);
2106     }
2107 }
2108
2109 /* Save the current INPUT_FILENAME and LINENO on the top entry in the
2110    INPUT_FILE_STACK.  Push a new entry for FILE and LINE, and set the
2111    INPUT_FILENAME and LINENO accordingly.  */
2112
2113 void
2114 push_srcloc (file, line)
2115      const char *file;
2116      int line;
2117 {
2118   struct file_stack *fs;
2119
2120   if (input_file_stack)
2121     {
2122       input_file_stack->name = input_filename;
2123       input_file_stack->line = lineno;
2124     }
2125
2126   fs = (struct file_stack *) xmalloc (sizeof (struct file_stack));
2127   fs->name = input_filename = file;
2128   fs->line = lineno = line;
2129   fs->indent_level = 0;
2130   fs->next = input_file_stack;
2131   input_file_stack = fs;
2132   input_file_stack_tick++;
2133 }
2134
2135 /* Pop the top entry off the stack of presently open source files.
2136    Restore the INPUT_FILENAME and LINENO from the new topmost entry on
2137    the stack.  */
2138
2139 void
2140 pop_srcloc ()
2141 {
2142   struct file_stack *fs;
2143
2144   fs = input_file_stack;
2145   input_file_stack = fs->next;
2146   free (fs);
2147   input_file_stack_tick++;
2148   /* The initial source file is never popped.  */
2149   if (!input_file_stack)
2150     abort ();
2151   input_filename = input_file_stack->name;
2152   lineno = input_file_stack->line;
2153 }
2154
2155 /* Compile an entire file of output from cpp, named NAME.
2156    Write a file of assembly output and various debugging dumps.  */
2157
2158 static void
2159 compile_file (name)
2160      const char *name;
2161 {
2162   tree globals;
2163
2164   int name_specified = name != 0;
2165
2166   if (dump_base_name == 0)
2167     dump_base_name = name ? name : "gccdump";
2168
2169   if (! quiet_flag)
2170     time_report = 1;
2171
2172   /* Start timing total execution time.  */
2173
2174   init_timevar ();
2175   timevar_start (TV_TOTAL);
2176
2177   /* Open assembler code output file.  Do this even if -fsyntax-only is on,
2178      because then the driver will have provided the name of a temporary
2179      file or bit bucket for us.  */
2180
2181   if (! name_specified && asm_file_name == 0)
2182     asm_out_file = stdout;
2183   else
2184     {
2185       if (asm_file_name == 0)
2186         {
2187           int len = strlen (dump_base_name);
2188           char *dumpname = (char *) xmalloc (len + 6);
2189           memcpy (dumpname, dump_base_name, len + 1);
2190           strip_off_ending (dumpname, len);
2191           strcat (dumpname, ".s");
2192           asm_file_name = dumpname;
2193         }
2194       if (!strcmp (asm_file_name, "-"))
2195         asm_out_file = stdout;
2196       else
2197         asm_out_file = fopen (asm_file_name, "w");
2198       if (asm_out_file == 0)
2199         fatal_io_error ("can't open %s for writing", asm_file_name);
2200     }
2201
2202   /* Initialize data in various passes.  */
2203
2204   init_obstacks ();
2205   name = init_parse (name);
2206   init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
2207                   || debug_info_level == DINFO_LEVEL_VERBOSE
2208                   || flag_test_coverage
2209                   || warn_notreached);
2210   init_regs ();
2211   init_alias_once ();
2212   init_decl_processing ();
2213   init_eh ();
2214   init_optabs ();
2215   init_stmt ();
2216   init_loop ();
2217   init_reload ();
2218   init_function_once ();
2219   init_stor_layout_once ();
2220   init_varasm_once ();
2221   init_EXPR_INSN_LIST_cache ();
2222
2223   /* The following initialization functions need to generate rtl, so
2224      provide a dummy function context for them.  */
2225   init_dummy_function_start ();
2226   init_expmed ();
2227   init_expr_once ();
2228   if (flag_caller_saves)
2229     init_caller_save ();
2230   expand_dummy_function_end ();
2231
2232   /* If auxiliary info generation is desired, open the output file.
2233      This goes in the same directory as the source file--unlike
2234      all the other output files.  */
2235   if (flag_gen_aux_info)
2236     {
2237       aux_info_file = fopen (aux_info_file_name, "w");
2238       if (aux_info_file == 0)
2239         fatal_io_error ("can't open %s", aux_info_file_name);
2240     }
2241
2242 #ifdef IO_BUFFER_SIZE
2243   setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
2244            _IOFBF, IO_BUFFER_SIZE);
2245 #endif
2246
2247   if (name != 0)
2248     name = ggc_strdup (name);
2249
2250   input_filename = name;
2251
2252   /* Put an entry on the input file stack for the main input file.  */
2253   push_srcloc (input_filename, 0);
2254
2255   /* Perform language-specific initialization.
2256      This may set main_input_filename.  */
2257   if (lang_hooks.init)
2258     (*lang_hooks.init) ();
2259
2260   /* If the input doesn't start with a #line, use the input name
2261      as the official input file name.  */
2262   if (main_input_filename == 0)
2263     main_input_filename = name;
2264
2265   if (flag_syntax_only)
2266     {
2267       write_symbols = NO_DEBUG;
2268       profile_flag = 0;
2269       profile_block_flag = 0;
2270     }
2271   else
2272     {
2273       ASM_FILE_START (asm_out_file);
2274
2275 #ifdef ASM_COMMENT_START
2276       if (flag_verbose_asm)
2277         {
2278           /* Print the list of options in effect.  */
2279           print_version (asm_out_file, ASM_COMMENT_START);
2280           print_switch_values (asm_out_file, 0, MAX_LINE,
2281                                ASM_COMMENT_START, " ", "\n");
2282           /* Add a blank line here so it appears in assembler output but not
2283              screen output.  */
2284           fprintf (asm_out_file, "\n");
2285         }
2286 #endif
2287     } /* ! flag_syntax_only  */
2288
2289   /* Set up the debug hooks based on write_symbols.  Default to doing
2290      nothing.  */
2291   debug_hooks = &do_nothing_debug_hooks;  
2292 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
2293   if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2294     debug_hooks = &dbx_debug_hooks;
2295 #endif
2296 #ifdef SDB_DEBUGGING_INFO
2297   if (write_symbols == SDB_DEBUG)
2298     debug_hooks = &sdb_debug_hooks;
2299 #endif
2300 #ifdef DWARF_DEBUGGING_INFO
2301   if (write_symbols == DWARF_DEBUG)
2302     debug_hooks = &dwarf_debug_hooks;
2303 #endif
2304 #ifdef DWARF2_DEBUGGING_INFO
2305   if (write_symbols == DWARF2_DEBUG)
2306     debug_hooks = &dwarf2_debug_hooks;
2307 #endif
2308
2309 #ifndef ASM_OUTPUT_SECTION_NAME
2310   if (flag_function_sections)
2311     {
2312       warning ("-ffunction-sections not supported for this target.");
2313       flag_function_sections = 0;
2314     }
2315   if (flag_data_sections)
2316     {
2317       warning ("-fdata-sections not supported for this target.");
2318       flag_data_sections = 0;
2319     }
2320 #endif
2321
2322   if (flag_function_sections
2323       && (profile_flag || profile_block_flag))
2324     {
2325       warning ("-ffunction-sections disabled; it makes profiling impossible.");
2326       flag_function_sections = 0;
2327     }
2328
2329 #ifndef OBJECT_FORMAT_ELF
2330   if (flag_function_sections && write_symbols != NO_DEBUG)
2331     warning ("-ffunction-sections may affect debugging on some targets.");
2332 #endif
2333
2334   /* If dbx symbol table desired, initialize writing it
2335      and output the predefined types.  */
2336   timevar_push (TV_SYMOUT);
2337 #ifdef DWARF2_UNWIND_INFO
2338   if (dwarf2out_do_frame ())
2339     dwarf2out_frame_init ();
2340 #endif
2341
2342   (*debug_hooks->init) (asm_out_file, main_input_filename);
2343   timevar_pop (TV_SYMOUT);
2344
2345   /* Initialize yet another pass.  */
2346
2347   init_final (main_input_filename);
2348   init_branch_prob (dump_base_name);
2349
2350   timevar_push (TV_PARSE);
2351
2352   /* Call the parser, which parses the entire file
2353      (calling rest_of_compilation for each function).  */
2354
2355   if (yyparse () != 0)
2356     {
2357       if (errorcount == 0)
2358         fnotice (stderr, "Errors detected in input file (your bison.simple is out of date)\n");
2359
2360       /* In case there were missing closebraces,
2361          get us back to the global binding level.  */
2362       while (! global_bindings_p ())
2363         poplevel (0, 0, 0);
2364     }
2365
2366   /* Compilation is now finished except for writing
2367      what's left of the symbol table output.  */
2368
2369   timevar_pop (TV_PARSE);
2370
2371   if (flag_syntax_only)
2372     goto finish_syntax;
2373
2374   globals = getdecls ();
2375
2376   /* Really define vars that have had only a tentative definition.
2377      Really output inline functions that must actually be callable
2378      and have not been output so far.  */
2379
2380   {
2381     int len = list_length (globals);
2382     tree *vec = (tree *) xmalloc (sizeof (tree) * len);
2383     int i;
2384     tree decl;
2385
2386     /* Process the decls in reverse order--earliest first.
2387        Put them into VEC from back to front, then take out from front.  */
2388
2389     for (i = 0, decl = globals; i < len; i++, decl = TREE_CHAIN (decl))
2390       vec[len - i - 1] = decl;
2391
2392     wrapup_global_declarations (vec, len);
2393
2394     /* This must occur after the loop to output deferred functions.  Else
2395        the profiler initializer would not be emitted if all the functions
2396        in this compilation unit were deferred.
2397
2398        output_func_start_profiler can not cause any additional functions or
2399        data to need to be output, so it need not be in the deferred function
2400        loop above.  */
2401     output_func_start_profiler ();
2402
2403     check_global_declarations (vec, len);
2404
2405     /* Clean up.  */
2406     free (vec);
2407   }
2408
2409   /* Write out any pending weak symbol declarations.  */
2410
2411   weak_finish ();
2412
2413   /* Do dbx symbols.  */
2414   timevar_push (TV_SYMOUT);
2415 #ifdef DWARF2_UNWIND_INFO
2416   if (dwarf2out_do_frame ())
2417     dwarf2out_frame_finish ();
2418 #endif
2419
2420   (*debug_hooks->finish) (asm_out_file, main_input_filename);
2421   timevar_pop (TV_SYMOUT);
2422
2423   /* Output some stuff at end of file if nec.  */
2424
2425   dw2_output_indirect_constants ();
2426
2427   end_final (dump_base_name);
2428
2429   if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
2430     {
2431       timevar_push (TV_DUMP);
2432       open_dump_file (DFI_bp, NULL);
2433
2434       end_branch_prob ();
2435
2436       close_dump_file (DFI_bp, NULL, NULL_RTX);
2437       timevar_pop (TV_DUMP);
2438     }
2439
2440 #ifdef ASM_FILE_END
2441   ASM_FILE_END (asm_out_file);
2442 #endif
2443
2444   /* Attach a special .ident directive to the end of the file to identify
2445      the version of GCC which compiled this code.  The format of the .ident
2446      string is patterned after the ones produced by native SVR4 compilers.  */
2447 #ifdef IDENT_ASM_OP
2448   if (!flag_no_ident)
2449     fprintf (asm_out_file, "%s\"GCC: (GNU) %s\"\n",
2450              IDENT_ASM_OP, version_string);
2451 #endif
2452
2453   /* Language-specific end of compilation actions.  */
2454  finish_syntax:
2455   if (lang_hooks.finish)
2456     (*lang_hooks.finish) ();
2457
2458   /* Close the dump files.  */
2459
2460   if (flag_gen_aux_info)
2461     {
2462       fclose (aux_info_file);
2463       if (errorcount)
2464         unlink (aux_info_file_name);
2465     }
2466
2467   if (optimize > 0 && open_dump_file (DFI_combine, NULL))
2468     {
2469       timevar_push (TV_DUMP);
2470       dump_combine_total_stats (rtl_dump_file);
2471       close_dump_file (DFI_combine, NULL, NULL_RTX);
2472       timevar_pop (TV_DUMP);
2473     }
2474
2475   /* Close non-debugging input and output files.  Take special care to note
2476      whether fclose returns an error, since the pages might still be on the
2477      buffer chain while the file is open.  */
2478
2479   finish_parse ();
2480
2481   if (ferror (asm_out_file) != 0)
2482     fatal_io_error ("error writing to %s", asm_file_name);
2483   if (fclose (asm_out_file) != 0)
2484     fatal_io_error ("error closing %s", asm_file_name);
2485
2486   /* Do whatever is necessary to finish printing the graphs.  */
2487   if (graph_dump_format != no_graph)
2488     {
2489       int i;
2490
2491       for (i = 0; i < (int) DFI_MAX; ++i)
2492         if (dump_file[i].initialized && dump_file[i].graph_dump_p)
2493           {
2494             char seq[16];
2495             char *suffix;
2496
2497             sprintf (seq, ".%02d.", i);
2498             suffix = concat (seq, dump_file[i].extension, NULL);
2499             finish_graph_dump_file (dump_base_name, suffix);
2500             free (suffix);
2501           }
2502     }
2503
2504   if (mem_report)
2505     {
2506       ggc_print_statistics ();
2507       stringpool_statistics ();
2508     }
2509
2510   /* Free up memory for the benefit of leak detectors.  */
2511   free_reg_info ();
2512
2513   /* Stop timing total execution time.  */
2514   timevar_stop (TV_TOTAL);
2515
2516   /* Print the times.  */
2517
2518   timevar_print (stderr);
2519 }
2520 \f
2521 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
2522    and TYPE_DECL nodes.
2523
2524    This does nothing for local (non-static) variables, unless the
2525    variable is a register variable with an ASMSPEC.  In that case, or
2526    if the variable is not an automatic, it sets up the RTL and
2527    outputs any assembler code (label definition, storage allocation
2528    and initialization).
2529
2530    DECL is the declaration.  If ASMSPEC is nonzero, it specifies
2531    the assembler symbol name to be used.  TOP_LEVEL is nonzero
2532    if this declaration is not within a function.  */
2533
2534 void
2535 rest_of_decl_compilation (decl, asmspec, top_level, at_end)
2536      tree decl;
2537      const char *asmspec;
2538      int top_level;
2539      int at_end;
2540 {
2541   /* Declarations of variables, and of functions defined elsewhere.  */
2542
2543 /* The most obvious approach, to put an #ifndef around where
2544    this macro is used, doesn't work since it's inside a macro call.  */
2545 #ifndef ASM_FINISH_DECLARE_OBJECT
2546 #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP, END)
2547 #endif
2548
2549   /* Forward declarations for nested functions are not "external",
2550      but we need to treat them as if they were.  */
2551   if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
2552       || TREE_CODE (decl) == FUNCTION_DECL)
2553     {
2554       timevar_push (TV_VARCONST);
2555       if (asmspec)
2556         make_decl_rtl (decl, asmspec);
2557       /* Don't output anything
2558          when a tentative file-scope definition is seen.
2559          But at end of compilation, do output code for them.  */
2560       if (at_end || !DECL_DEFER_OUTPUT (decl))
2561         assemble_variable (decl, top_level, at_end, 0);
2562       if (decl == last_assemble_variable_decl)
2563         {
2564           ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
2565                                      top_level, at_end);
2566         }
2567       timevar_pop (TV_VARCONST);
2568     }
2569   else if (DECL_REGISTER (decl) && asmspec != 0)
2570     {
2571       if (decode_reg_name (asmspec) >= 0)
2572         {
2573           SET_DECL_RTL (decl, NULL_RTX);
2574           make_decl_rtl (decl, asmspec);
2575         }
2576       else
2577         {
2578           error ("invalid register name `%s' for register variable", asmspec);
2579           DECL_REGISTER (decl) = 0;
2580           if (!top_level)
2581             expand_decl (decl);
2582         }
2583     }
2584 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2585   else if ((write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2586            && TREE_CODE (decl) == TYPE_DECL)
2587     {
2588       timevar_push (TV_SYMOUT);
2589       dbxout_symbol (decl, 0);
2590       timevar_pop (TV_SYMOUT);
2591     }
2592 #endif
2593 #ifdef SDB_DEBUGGING_INFO
2594   else if (write_symbols == SDB_DEBUG && top_level
2595            && TREE_CODE (decl) == TYPE_DECL)
2596     {
2597       timevar_push (TV_SYMOUT);
2598       sdbout_symbol (decl, 0);
2599       timevar_pop (TV_SYMOUT);
2600     }
2601 #endif
2602 }
2603
2604 /* Called after finishing a record, union or enumeral type.  */
2605
2606 void
2607 rest_of_type_compilation (type, toplev)
2608 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO) || defined (SDB_DEBUGGING_INFO)
2609      tree type;
2610      int toplev;
2611 #else
2612      tree type ATTRIBUTE_UNUSED;
2613      int toplev ATTRIBUTE_UNUSED;
2614 #endif
2615 {
2616   timevar_push (TV_SYMOUT);
2617 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2618   if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2619     dbxout_symbol (TYPE_STUB_DECL (type), !toplev);
2620 #endif
2621 #ifdef SDB_DEBUGGING_INFO
2622   if (write_symbols == SDB_DEBUG)
2623     sdbout_symbol (TYPE_STUB_DECL (type), !toplev);
2624 #endif
2625 #ifdef DWARF2_DEBUGGING_INFO
2626   if (write_symbols == DWARF2_DEBUG && toplev)
2627     dwarf2out_decl (TYPE_STUB_DECL (type));
2628 #endif
2629   timevar_pop (TV_SYMOUT);
2630 }
2631
2632 /* DECL is an inline function, whose body is present, but which is not
2633    being output at this point.  (We're putting that off until we need
2634    to do it.)  If there are any actions that need to take place,
2635    including the emission of debugging information for the function,
2636    this is where they should go.  This function may be called by
2637    language-dependent code for front-ends that do not even generate
2638    RTL for functions that don't need to be put out.  */
2639
2640 void
2641 note_deferral_of_defined_inline_function (decl)
2642      tree decl ATTRIBUTE_UNUSED;
2643 {
2644 #ifdef DWARF_DEBUGGING_INFO
2645   /* Generate the DWARF info for the "abstract" instance of a function
2646      which we may later generate inlined and/or out-of-line instances
2647      of.  */
2648   if (write_symbols == DWARF_DEBUG
2649       && (DECL_INLINE (decl) || DECL_ABSTRACT (decl))
2650       && ! DECL_ABSTRACT_ORIGIN (decl))
2651     {
2652       /* The front-end may not have set CURRENT_FUNCTION_DECL, but the
2653          DWARF code expects it to be set in this case.  Intuitively,
2654          DECL is the function we just finished defining, so setting
2655          CURRENT_FUNCTION_DECL is sensible.  */
2656       tree saved_cfd = current_function_decl;
2657       int was_abstract = DECL_ABSTRACT (decl);
2658       current_function_decl = decl;
2659
2660       /* Let the DWARF code do its work.  */
2661       set_decl_abstract_flags (decl, 1);
2662       dwarfout_file_scope_decl (decl, 0);
2663       if (! was_abstract)
2664         set_decl_abstract_flags (decl, 0);
2665
2666       /* Reset CURRENT_FUNCTION_DECL.  */
2667       current_function_decl = saved_cfd;
2668     }
2669 #endif
2670 }
2671
2672 /* FNDECL is an inline function which is about to be emitted out of line.
2673    Do any preparation, such as emitting abstract debug info for the inline
2674    before it gets mangled by optimization.  */
2675
2676 void
2677 note_outlining_of_inline_function (fndecl)
2678      tree fndecl ATTRIBUTE_UNUSED;
2679 {
2680 #ifdef DWARF2_DEBUGGING_INFO
2681   /* The DWARF 2 backend tries to reduce debugging bloat by not emitting
2682      the abstract description of inline functions until something tries to
2683      reference them.  Force it out now, before optimizations mangle the
2684      block tree.  */
2685   if (write_symbols == DWARF2_DEBUG)
2686     dwarf2out_abstract_function (fndecl);
2687 #endif
2688 }
2689
2690 /* This is called from finish_function (within yyparse)
2691    after each top-level definition is parsed.
2692    It is supposed to compile that function or variable
2693    and output the assembler code for it.
2694    After we return, the tree storage is freed.  */
2695
2696 void
2697 rest_of_compilation (decl)
2698      tree decl;
2699 {
2700   register rtx insns;
2701   int tem;
2702   int failure = 0;
2703   int rebuild_label_notes_after_reload;
2704   int register_life_up_to_date;
2705
2706   timevar_push (TV_REST_OF_COMPILATION);
2707
2708   /* Now that we're out of the frontend, we shouldn't have any more
2709      CONCATs anywhere.  */
2710   generating_concat_p = 0;
2711
2712   /* When processing delayed functions, prepare_function_start() won't
2713      have been run to re-initialize it.  */
2714   cse_not_expected = ! optimize;
2715
2716   /* First, make sure that NOTE_BLOCK is set correctly for each
2717      NOTE_INSN_BLOCK_BEG/NOTE_INSN_BLOCK_END note.  */
2718   if (!cfun->x_whole_function_mode_p)
2719     identify_blocks ();
2720
2721   /* Then remove any notes we don't need.  That will make iterating
2722      over the instruction sequence faster, and allow the garbage
2723      collector to reclaim the memory used by the notes.  */
2724   remove_unnecessary_notes ();
2725
2726   /* In function-at-a-time mode, we do not attempt to keep the BLOCK
2727      tree in sensible shape.  So, we just recalculate it here.  */
2728   if (cfun->x_whole_function_mode_p)
2729     reorder_blocks ();
2730
2731   init_flow ();
2732
2733   /* If we are reconsidering an inline function
2734      at the end of compilation, skip the stuff for making it inline.  */
2735
2736   if (DECL_SAVED_INSNS (decl) == 0)
2737     {
2738       int inlinable = 0;
2739       tree parent;
2740       const char *lose;
2741
2742       /* If this is nested inside an inlined external function, pretend
2743          it was only declared.  Since we cannot inline such functions,
2744          generating code for this one is not only not necessary but will
2745          confuse some debugging output writers.  */
2746       for (parent = DECL_CONTEXT (current_function_decl);
2747            parent != NULL_TREE;
2748            parent = get_containing_scope (parent))
2749         if (TREE_CODE (parent) == FUNCTION_DECL
2750             && DECL_INLINE (parent) && DECL_EXTERNAL (parent))
2751           {
2752             DECL_INITIAL (decl) = 0;
2753             goto exit_rest_of_compilation;
2754           }
2755
2756       /* If requested, consider whether to make this function inline.  */
2757       if ((DECL_INLINE (decl) && !flag_no_inline)
2758           || flag_inline_functions)
2759         {
2760           timevar_push (TV_INTEGRATION);
2761           lose = function_cannot_inline_p (decl);
2762           timevar_pop (TV_INTEGRATION);
2763           if (lose || ! optimize)
2764             {
2765               if (warn_inline && DECL_INLINE (decl))
2766                 warning_with_decl (decl, lose);
2767               DECL_ABSTRACT_ORIGIN (decl) = 0;
2768               /* Don't really compile an extern inline function.
2769                  If we can't make it inline, pretend
2770                  it was only declared.  */
2771               if (DECL_EXTERNAL (decl))
2772                 {
2773                   DECL_INITIAL (decl) = 0;
2774                   goto exit_rest_of_compilation;
2775                 }
2776             }
2777           else
2778             /* ??? Note that this has the effect of making it look
2779                  like "inline" was specified for a function if we choose
2780                  to inline it.  This isn't quite right, but it's
2781                  probably not worth the trouble to fix.  */
2782             inlinable = DECL_INLINE (decl) = 1;
2783         }
2784
2785       insns = get_insns ();
2786
2787       /* Dump the rtl code if we are dumping rtl.  */
2788
2789       if (open_dump_file (DFI_rtl, decl))
2790         {
2791           if (DECL_SAVED_INSNS (decl))
2792             fprintf (rtl_dump_file, ";; (integrable)\n\n");
2793           close_dump_file (DFI_rtl, print_rtl, insns);
2794         }
2795
2796       /* Convert from NOTE_INSN_EH_REGION style notes, and do other
2797          sorts of eh initialization.  Delay this until after the
2798          initial rtl dump so that we can see the original nesting.  */
2799       convert_from_eh_region_ranges ();
2800
2801       /* If function is inline, and we don't yet know whether to
2802          compile it by itself, defer decision till end of compilation.
2803          finish_compilation will call rest_of_compilation again
2804          for those functions that need to be output.  Also defer those
2805          functions that we are supposed to defer.  */
2806
2807       if (inlinable
2808           || (DECL_INLINE (decl)
2809               && ((! TREE_PUBLIC (decl) && ! TREE_ADDRESSABLE (decl)
2810                    && ! flag_keep_inline_functions)
2811                   || DECL_EXTERNAL (decl))))
2812         DECL_DEFER_OUTPUT (decl) = 1;
2813
2814       if (DECL_INLINE (decl))
2815         /* DWARF wants seperate debugging info for abstract and
2816            concrete instances of all inline functions, including those
2817            declared inline but not inlined, and those inlined even
2818            though they weren't declared inline.  Conveniently, that's
2819            what DECL_INLINE means at this point.  */
2820         note_deferral_of_defined_inline_function (decl);
2821
2822       if (DECL_DEFER_OUTPUT (decl))
2823         {
2824           /* If -Wreturn-type, we have to do a bit of compilation.  We just
2825              want to call jump_optimize to figure out whether or not we can
2826              fall off the end of the function; we do the minimum amount of
2827              work necessary to make that safe.  And, we set optimize to zero
2828              to keep jump_optimize from working too hard.  */
2829           if (warn_return_type)
2830             {
2831               int saved_optimize = optimize;
2832
2833               optimize = 0;
2834               find_exception_handler_labels ();
2835               jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
2836                              !JUMP_AFTER_REGSCAN);
2837               optimize = saved_optimize;
2838             }
2839
2840           current_function_nothrow = nothrow_function_p ();
2841           if (current_function_nothrow)
2842             /* Now we know that this can't throw; set the flag for the benefit
2843                of other functions later in this translation unit.  */
2844             TREE_NOTHROW (current_function_decl) = 1;
2845
2846           timevar_push (TV_INTEGRATION);
2847           save_for_inline (decl);
2848           timevar_pop (TV_INTEGRATION);
2849           DECL_SAVED_INSNS (decl)->inlinable = inlinable;
2850           goto exit_rest_of_compilation;
2851         }
2852
2853       /* If specified extern inline but we aren't inlining it, we are
2854          done.  This goes for anything that gets here with DECL_EXTERNAL
2855          set, not just things with DECL_INLINE.  */
2856       if (DECL_EXTERNAL (decl))
2857         goto exit_rest_of_compilation;
2858     }
2859
2860   ggc_collect ();
2861
2862   /* Initialize some variables used by the optimizers.  */
2863   init_function_for_compilation ();
2864
2865   if (! DECL_DEFER_OUTPUT (decl))
2866     TREE_ASM_WRITTEN (decl) = 1;
2867
2868   /* Now that integrate will no longer see our rtl, we need not
2869      distinguish between the return value of this function and the
2870      return value of called functions.  Also, we can remove all SETs
2871      of subregs of hard registers; they are only here because of
2872      integrate.  Also, we can now initialize pseudos intended to 
2873      carry magic hard reg data throughout the function.  */
2874   rtx_equal_function_value_matters = 0;
2875   purge_hard_subreg_sets (get_insns ());
2876   emit_initial_value_sets ();
2877
2878   /* Don't return yet if -Wreturn-type; we need to do jump_optimize.  */
2879   if ((rtl_dump_and_exit || flag_syntax_only) && !warn_return_type)
2880     goto exit_rest_of_compilation;
2881
2882   /* We may have potential sibling or tail recursion sites.  Select one
2883      (of possibly multiple) methods of performing the call.  */
2884   if (flag_optimize_sibling_calls)
2885     {
2886       timevar_push (TV_JUMP);
2887       open_dump_file (DFI_sibling, decl);
2888
2889       optimize_sibling_and_tail_recursive_calls ();
2890
2891       close_dump_file (DFI_sibling, print_rtl, get_insns ());
2892       timevar_pop (TV_JUMP);
2893     }
2894
2895   /* Complete generation of exception handling code.  */
2896   find_exception_handler_labels ();
2897   if (doing_eh (0))
2898     {
2899       timevar_push (TV_JUMP);
2900       open_dump_file (DFI_eh, decl);
2901
2902       finish_eh_generation ();
2903
2904       close_dump_file (DFI_eh, print_rtl, get_insns ());
2905       timevar_pop (TV_JUMP);
2906     }
2907
2908 #ifdef FINALIZE_PIC
2909   /* If we are doing position-independent code generation, now
2910      is the time to output special prologues and epilogues.
2911      We do not want to do this earlier, because it just clutters
2912      up inline functions with meaningless insns.  */
2913   if (flag_pic)
2914     FINALIZE_PIC;
2915 #endif
2916
2917   insns = get_insns ();
2918
2919   /* Copy any shared structure that should not be shared.  */
2920   unshare_all_rtl (current_function_decl, insns);
2921
2922 #ifdef SETJMP_VIA_SAVE_AREA
2923   /* This must be performed before virutal register instantiation.  */
2924   if (current_function_calls_alloca)
2925     optimize_save_area_alloca (insns);
2926 #endif
2927
2928   /* Instantiate all virtual registers.  */
2929   instantiate_virtual_regs (current_function_decl, insns);
2930
2931   open_dump_file (DFI_jump, decl);
2932
2933   /* Always do one jump optimization pass to ensure that JUMP_LABEL fields
2934      are initialized and to compute whether control can drop off the end
2935      of the function.  */
2936
2937   timevar_push (TV_JUMP);
2938   /* Turn NOTE_INSN_EXPECTED_VALUE into REG_BR_PROB.  Do this
2939      before jump optimization switches branch directions.  */
2940   expected_value_to_br_prob ();
2941
2942   reg_scan (insns, max_reg_num (), 0);
2943   jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
2944                  JUMP_AFTER_REGSCAN);
2945
2946   timevar_pop (TV_JUMP);
2947
2948   /* Now is when we stop if -fsyntax-only and -Wreturn-type.  */
2949   if (rtl_dump_and_exit || flag_syntax_only || DECL_DEFER_OUTPUT (decl))
2950     {
2951       close_dump_file (DFI_jump, print_rtl, insns);
2952       goto exit_rest_of_compilation;
2953     }
2954
2955   /* Long term, this should probably move before the jump optimizer too,
2956      but I didn't want to disturb the rtl_dump_and_exit and related
2957      stuff at this time.  */
2958   if (optimize > 0 && flag_ssa)
2959     {
2960       /* Convert to SSA form.  */
2961
2962       timevar_push (TV_TO_SSA);
2963       open_dump_file (DFI_ssa, decl);
2964
2965       find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2966       cleanup_cfg ();
2967       convert_to_ssa ();
2968
2969       close_dump_file (DFI_ssa, print_rtl_with_bb, insns);
2970       timevar_pop (TV_TO_SSA);
2971
2972       /* Perform sparse conditional constant propagation, if requested.  */
2973       if (flag_ssa_ccp)
2974         {
2975           timevar_push (TV_SSA_CCP);
2976           open_dump_file (DFI_ssa_ccp, decl);
2977
2978           ssa_const_prop ();
2979
2980           close_dump_file (DFI_ssa_ccp, print_rtl_with_bb, get_insns ());
2981           timevar_pop (TV_SSA_CCP);
2982         }
2983
2984       /* It would be useful to cleanup the CFG at this point, but block
2985          merging and possibly other transformations might leave a PHI
2986          node in the middle of a basic block, which is a strict no-no.  */
2987
2988       /* The SSA implementation uses basic block numbers in its phi
2989          nodes.  Thus, changing the control-flow graph or the basic
2990          blocks, e.g., calling find_basic_blocks () or cleanup_cfg (),
2991          may cause problems.  */
2992
2993       if (flag_ssa_dce)
2994         {
2995           /* Remove dead code. */
2996
2997           timevar_push (TV_SSA_DCE);
2998           open_dump_file (DFI_ssa_dce, decl);
2999
3000           insns = get_insns ();
3001           ssa_eliminate_dead_code();
3002
3003           close_dump_file (DFI_ssa_dce, print_rtl_with_bb, insns);
3004           timevar_pop (TV_SSA_DCE);
3005         }
3006
3007       /* Convert from SSA form.  */
3008
3009       timevar_push (TV_FROM_SSA);
3010       open_dump_file (DFI_ussa, decl);
3011
3012       convert_from_ssa ();
3013       /* New registers have been created.  Rescan their usage.  */
3014       reg_scan (insns, max_reg_num (), 1);
3015       /* Life analysis used in SSA adds log_links but these
3016          shouldn't be there until the flow stage, so clear
3017          them away.  */
3018       clear_log_links (insns);
3019
3020       close_dump_file (DFI_ussa, print_rtl_with_bb, insns);
3021       timevar_pop (TV_FROM_SSA);
3022
3023       ggc_collect ();
3024     }
3025
3026   timevar_push (TV_JUMP);
3027
3028   if (optimize > 0)
3029     {
3030       find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3031       cleanup_cfg ();
3032
3033       /* ??? Run if-conversion before delete_null_pointer_checks,
3034          since the later does not preserve the CFG.  This should
3035          be changed -- no since converting if's that are going to
3036          be deleted.  */
3037       timevar_push (TV_IFCVT);
3038       if_convert (0);
3039       timevar_pop (TV_IFCVT);
3040
3041       /* Try to identify useless null pointer tests and delete them.  */
3042       if (flag_delete_null_pointer_checks)
3043         delete_null_pointer_checks (insns);
3044     }
3045
3046   /* Jump optimization, and the removal of NULL pointer checks, may
3047      have reduced the number of instructions substantially.  CSE, and
3048      future passes, allocate arrays whose dimensions involve the
3049      maximum instruction UID, so if we can reduce the maximum UID
3050      we'll save big on memory.  */
3051   renumber_insns (rtl_dump_file);
3052   timevar_pop (TV_JUMP);
3053
3054   close_dump_file (DFI_jump, print_rtl, insns);
3055
3056   ggc_collect ();
3057
3058   /* Perform common subexpression elimination.
3059      Nonzero value from `cse_main' means that jumps were simplified
3060      and some code may now be unreachable, so do
3061      jump optimization again.  */
3062
3063   if (optimize > 0)
3064     {
3065       open_dump_file (DFI_cse, decl);
3066       timevar_push (TV_CSE);
3067
3068       reg_scan (insns, max_reg_num (), 1);
3069
3070       if (flag_thread_jumps)
3071         {
3072           timevar_push (TV_JUMP);
3073           thread_jumps (insns, max_reg_num (), 1);
3074           timevar_pop (TV_JUMP);
3075         }
3076
3077       tem = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
3078
3079       /* If we are not running more CSE passes, then we are no longer
3080          expecting CSE to be run.  But always rerun it in a cheap mode.  */
3081       cse_not_expected = !flag_rerun_cse_after_loop && !flag_gcse;
3082
3083       if (tem || optimize > 1)
3084         {
3085           timevar_push (TV_JUMP);
3086           jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
3087                          !JUMP_AFTER_REGSCAN);
3088           timevar_pop (TV_JUMP);
3089         }
3090
3091       /* Run this after jump optmizations remove all the unreachable code
3092          so that unreachable code will not keep values live.  */
3093       delete_trivially_dead_insns (insns, max_reg_num ());
3094
3095       /* Try to identify useless null pointer tests and delete them.  */
3096       if (flag_delete_null_pointer_checks)
3097         {
3098           timevar_push (TV_JUMP);
3099           find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3100
3101           cleanup_cfg ();
3102
3103           delete_null_pointer_checks (insns);
3104           timevar_pop (TV_JUMP);
3105         }
3106
3107       /* The second pass of jump optimization is likely to have
3108          removed a bunch more instructions.  */
3109       renumber_insns (rtl_dump_file);
3110
3111       timevar_pop (TV_CSE);
3112       close_dump_file (DFI_cse, print_rtl, insns);
3113     }
3114
3115   open_dump_file (DFI_addressof, decl);
3116
3117   purge_addressof (insns);
3118   reg_scan (insns, max_reg_num (), 1);
3119
3120   close_dump_file (DFI_addressof, print_rtl, insns);
3121
3122   ggc_collect ();
3123
3124   /* Perform global cse.  */
3125
3126   if (optimize > 0 && flag_gcse)
3127     {
3128       int save_csb, save_cfj;
3129       int tem2 = 0;
3130
3131       timevar_push (TV_GCSE);
3132       open_dump_file (DFI_gcse, decl);
3133
3134       find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3135       cleanup_cfg ();
3136       tem = gcse_main (insns, rtl_dump_file);
3137
3138       save_csb = flag_cse_skip_blocks;
3139       save_cfj = flag_cse_follow_jumps;
3140       flag_cse_skip_blocks = flag_cse_follow_jumps = 0;
3141
3142       /* If -fexpensive-optimizations, re-run CSE to clean up things done
3143          by gcse.  */
3144       if (flag_expensive_optimizations)
3145         {
3146           timevar_push (TV_CSE);
3147           reg_scan (insns, max_reg_num (), 1);
3148           tem2 = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
3149           timevar_pop (TV_CSE);
3150           cse_not_expected = !flag_rerun_cse_after_loop;
3151         }
3152
3153       /* If gcse or cse altered any jumps, rerun jump optimizations to clean
3154          things up.  Then possibly re-run CSE again.  */
3155       while (tem || tem2)
3156         {
3157           tem = tem2 = 0;
3158           timevar_push (TV_JUMP);
3159           jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
3160                          !JUMP_AFTER_REGSCAN);
3161           timevar_pop (TV_JUMP);
3162
3163           if (flag_expensive_optimizations)
3164             {
3165               timevar_push (TV_CSE);
3166               reg_scan (insns, max_reg_num (), 1);
3167               tem2 = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
3168               timevar_pop (TV_CSE);
3169             }
3170         }
3171
3172       close_dump_file (DFI_gcse, print_rtl, insns);
3173       timevar_pop (TV_GCSE);
3174
3175       ggc_collect ();
3176       flag_cse_skip_blocks = save_csb;
3177       flag_cse_follow_jumps = save_cfj;
3178      }
3179
3180   /* Move constant computations out of loops.  */
3181
3182   if (optimize > 0)
3183     {
3184       timevar_push (TV_LOOP);
3185       open_dump_file (DFI_loop, decl);
3186
3187       if (flag_rerun_loop_opt)
3188         {
3189           /* We only want to perform unrolling once.  */
3190
3191           loop_optimize (insns, rtl_dump_file, 0);
3192
3193           /* The first call to loop_optimize makes some instructions
3194              trivially dead.  We delete those instructions now in the
3195              hope that doing so will make the heuristics in loop work
3196              better and possibly speed up compilation.  */
3197           delete_trivially_dead_insns (insns, max_reg_num ());
3198
3199           /* The regscan pass is currently necessary as the alias
3200                   analysis code depends on this information.  */
3201           reg_scan (insns, max_reg_num (), 1);
3202         }
3203       loop_optimize (insns, rtl_dump_file,
3204                      (flag_unroll_loops ? LOOP_UNROLL : 0) | LOOP_BCT);
3205
3206       close_dump_file (DFI_loop, print_rtl, insns);
3207       timevar_pop (TV_LOOP);
3208
3209       ggc_collect ();
3210     }
3211
3212   if (optimize > 0)
3213     {
3214       timevar_push (TV_CSE2);
3215       open_dump_file (DFI_cse2, decl);
3216
3217       if (flag_rerun_cse_after_loop)
3218         {
3219           /* Running another jump optimization pass before the second
3220              cse pass sometimes simplifies the RTL enough to allow
3221              the second CSE pass to do a better job.  Jump_optimize can change
3222              max_reg_num so we must rerun reg_scan afterwards.
3223              ??? Rework to not call reg_scan so often.  */
3224           timevar_push (TV_JUMP);
3225
3226           /* The previous call to loop_optimize makes some instructions
3227              trivially dead.  We delete those instructions now in the
3228              hope that doing so will make the heuristics in jump work
3229              better and possibly speed up compilation.  */
3230           delete_trivially_dead_insns (insns, max_reg_num ());
3231
3232           reg_scan (insns, max_reg_num (), 0);
3233           jump_optimize (insns, !JUMP_CROSS_JUMP,
3234                          !JUMP_NOOP_MOVES, JUMP_AFTER_REGSCAN);
3235
3236           timevar_push (TV_IFCVT);
3237
3238           find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3239           cleanup_cfg ();
3240           if_convert (0);
3241
3242           timevar_pop(TV_IFCVT);
3243
3244           timevar_pop (TV_JUMP);
3245
3246           reg_scan (insns, max_reg_num (), 0);
3247           tem = cse_main (insns, max_reg_num (), 1, rtl_dump_file);
3248
3249           if (tem)
3250             {
3251               timevar_push (TV_JUMP);
3252               jump_optimize (insns, !JUMP_CROSS_JUMP,
3253                              !JUMP_NOOP_MOVES, !JUMP_AFTER_REGSCAN);
3254               timevar_pop (TV_JUMP);
3255             }
3256         }
3257
3258       if (flag_thread_jumps)
3259         {
3260           /* This pass of jump threading straightens out code
3261              that was kinked by loop optimization.  */
3262           timevar_push (TV_JUMP);
3263           reg_scan (insns, max_reg_num (), 0);
3264           thread_jumps (insns, max_reg_num (), 0);
3265           timevar_pop (TV_JUMP);
3266         }
3267
3268       close_dump_file (DFI_cse2, print_rtl, insns);
3269       timevar_pop (TV_CSE2);
3270
3271       ggc_collect ();
3272     }
3273
3274   cse_not_expected = 1;
3275
3276   regclass_init ();
3277
3278   /* Do control and data flow analysis; wrote some of the results to
3279      the dump file.  */
3280
3281   timevar_push (TV_FLOW);
3282   open_dump_file (DFI_cfg, decl);
3283
3284   find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3285   cleanup_cfg ();
3286   check_function_return_warnings ();
3287
3288   /* It may make more sense to mark constant functions after dead code is
3289      eliminated by life_analyzis, but we need to do it early, as -fprofile-arcs
3290      may insert code making function non-constant, but we still must consider
3291      it as constant, otherwise -fbranch-probabilities will not read data back.
3292
3293      life_analyzis rarely eliminates modification of external memory.
3294    */
3295   mark_constant_function ();
3296
3297   close_dump_file (DFI_cfg, print_rtl_with_bb, insns);
3298
3299   if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
3300     {
3301       timevar_push (TV_BRANCH_PROB);
3302       open_dump_file (DFI_bp, decl);
3303
3304       branch_prob ();
3305
3306       close_dump_file (DFI_bp, print_rtl_with_bb, insns);
3307       timevar_pop (TV_BRANCH_PROB);
3308     }
3309
3310   open_dump_file (DFI_life, decl);
3311   if (optimize)
3312     {
3313       struct loops loops;
3314
3315       /* Discover and record the loop depth at the head of each basic
3316          block.  The loop infrastructure does the real job for us.  */
3317       flow_loops_find (&loops, LOOP_TREE);
3318
3319       /* Estimate using heuristics if no profiling info is available.  */
3320       if (flag_guess_branch_prob)
3321         estimate_probability (&loops);
3322
3323       if (rtl_dump_file)
3324         flow_loops_dump (&loops, rtl_dump_file, NULL, 0);
3325
3326       flow_loops_free (&loops);
3327     }
3328   life_analysis (insns, rtl_dump_file, PROP_FINAL);
3329   timevar_pop (TV_FLOW);
3330
3331   register_life_up_to_date = 1;
3332   no_new_pseudos = 1;
3333
3334   if (warn_uninitialized || extra_warnings)
3335     {
3336       uninitialized_vars_warning (DECL_INITIAL (decl));
3337       if (extra_warnings)
3338         setjmp_args_warning ();
3339     }
3340
3341   close_dump_file (DFI_life, print_rtl_with_bb, insns);
3342
3343   ggc_collect ();
3344
3345   /* If -opt, try combining insns through substitution.  */
3346
3347   if (optimize > 0)
3348     {
3349       int rebuild_jump_labels_after_combine = 0;
3350
3351       timevar_push (TV_COMBINE);
3352       open_dump_file (DFI_combine, decl);
3353
3354       rebuild_jump_labels_after_combine
3355         = combine_instructions (insns, max_reg_num ());
3356
3357       /* Combining insns may have turned an indirect jump into a
3358          direct jump.  Rebuid the JUMP_LABEL fields of jumping
3359          instructions.  */
3360       if (rebuild_jump_labels_after_combine)
3361         {
3362           timevar_push (TV_JUMP);
3363           rebuild_jump_labels (insns);
3364           timevar_pop (TV_JUMP);
3365
3366           timevar_push (TV_FLOW);
3367           find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3368           cleanup_cfg ();
3369
3370           /* Blimey.  We've got to have the CFG up to date for the call to
3371              if_convert below.  However, the random deletion of blocks
3372              without updating life info can wind up with Wierd Stuff in
3373              global_live_at_end.  We then run sched1, which updates things
3374              properly, discovers the wierdness and aborts.  */
3375           update_life_info (NULL, UPDATE_LIFE_GLOBAL_RM_NOTES,
3376                             PROP_DEATH_NOTES | PROP_KILL_DEAD_CODE
3377                             | PROP_SCAN_DEAD_CODE);
3378
3379           timevar_pop (TV_FLOW);
3380         }
3381
3382       close_dump_file (DFI_combine, print_rtl_with_bb, insns);
3383       timevar_pop (TV_COMBINE);
3384
3385       ggc_collect ();
3386     }
3387
3388   /* Rerun if-conversion, as combine may have simplified things enough to
3389      now meet sequence length restrictions.  */
3390   if (optimize > 0)
3391     {
3392       timevar_push (TV_IFCVT);
3393       open_dump_file (DFI_ce, decl);
3394
3395       no_new_pseudos = 0;
3396       if_convert (1);
3397       no_new_pseudos = 1;
3398
3399       close_dump_file (DFI_ce, print_rtl_with_bb, insns);
3400       timevar_pop (TV_IFCVT);
3401     }
3402
3403   /* Register allocation pre-pass, to reduce number of moves
3404      necessary for two-address machines.  */
3405   if (optimize > 0 && (flag_regmove || flag_expensive_optimizations))
3406     {
3407       timevar_push (TV_REGMOVE);
3408       open_dump_file (DFI_regmove, decl);
3409
3410       regmove_optimize (insns, max_reg_num (), rtl_dump_file);
3411
3412       close_dump_file (DFI_regmove, print_rtl_with_bb, insns);
3413       timevar_pop (TV_REGMOVE);
3414
3415       ggc_collect ();
3416     }
3417
3418   /* Any of the several passes since flow1 will have munged register
3419      lifetime data a bit.  */
3420   if (optimize > 0)
3421     register_life_up_to_date = 0;
3422
3423 #ifdef OPTIMIZE_MODE_SWITCHING
3424   timevar_push (TV_GCSE);
3425
3426   if (optimize_mode_switching (NULL))
3427     {
3428       /* We did work, and so had to regenerate global life information.
3429          Take advantage of this and don't re-recompute register life
3430          information below.  */
3431       register_life_up_to_date = 1;
3432     }
3433
3434   timevar_pop (TV_GCSE);
3435 #endif
3436
3437   timevar_push (TV_SCHED);
3438
3439   split_all_insns (1);
3440
3441 #ifdef INSN_SCHEDULING
3442
3443   /* Print function header into sched dump now
3444      because doing the sched analysis makes some of the dump.  */
3445   if (optimize > 0 && flag_schedule_insns)
3446     {
3447       open_dump_file (DFI_sched, decl);
3448
3449       /* Do control and data sched analysis,
3450          and write some of the results to dump file.  */
3451
3452       schedule_insns (rtl_dump_file);
3453
3454       close_dump_file (DFI_sched, print_rtl_with_bb, insns);
3455
3456       /* Register lifetime information was updated as part of verifying
3457          the schedule.  */
3458       register_life_up_to_date = 1;
3459     }
3460 #endif
3461   timevar_pop (TV_SCHED);
3462
3463   ggc_collect ();
3464
3465   /* Determine if the current function is a leaf before running reload
3466      since this can impact optimizations done by the prologue and
3467      epilogue thus changing register elimination offsets.  */
3468   current_function_is_leaf = leaf_function_p ();
3469
3470   timevar_push (TV_LOCAL_ALLOC);
3471   open_dump_file (DFI_lreg, decl);
3472
3473   /* Allocate pseudo-regs that are used only within 1 basic block.
3474
3475      RUN_JUMP_AFTER_RELOAD records whether or not we need to rerun the
3476      jump optimizer after register allocation and reloading are finished.  */
3477
3478   if (! register_life_up_to_date)
3479     recompute_reg_usage (insns, ! optimize_size);
3480   regclass (insns, max_reg_num (), rtl_dump_file);
3481   rebuild_label_notes_after_reload = local_alloc ();
3482
3483   timevar_pop (TV_LOCAL_ALLOC);
3484
3485   if (dump_file[DFI_lreg].enabled)
3486     {
3487       timevar_push (TV_DUMP);
3488
3489       dump_flow_info (rtl_dump_file);
3490       dump_local_alloc (rtl_dump_file);
3491
3492       close_dump_file (DFI_lreg, print_rtl_with_bb, insns);
3493       timevar_pop (TV_DUMP);
3494     }
3495
3496   ggc_collect ();
3497
3498   timevar_push (TV_GLOBAL_ALLOC);
3499   open_dump_file (DFI_greg, decl);
3500
3501   /* If optimizing, allocate remaining pseudo-regs.  Do the reload
3502      pass fixing up any insns that are invalid.  */
3503
3504   if (optimize)
3505     failure = global_alloc (rtl_dump_file);
3506   else
3507     {
3508       build_insn_chain (insns);
3509       failure = reload (insns, 0);
3510     }
3511
3512   timevar_pop (TV_GLOBAL_ALLOC);
3513
3514   if (dump_file[DFI_greg].enabled)
3515     {
3516       timevar_push (TV_DUMP);
3517
3518       dump_global_regs (rtl_dump_file);
3519
3520       close_dump_file (DFI_greg, print_rtl_with_bb, insns);
3521       timevar_pop (TV_DUMP);
3522     }
3523
3524   if (failure)
3525     goto exit_rest_of_compilation;
3526
3527   ggc_collect ();
3528
3529   open_dump_file (DFI_postreload, decl);
3530
3531   /* Do a very simple CSE pass over just the hard registers.  */
3532   if (optimize > 0)
3533     {
3534       timevar_push (TV_RELOAD_CSE_REGS);
3535       reload_cse_regs (insns);
3536       timevar_pop (TV_RELOAD_CSE_REGS);
3537     }
3538
3539   /* If optimizing, then go ahead and split insns now since we are about
3540      to recompute flow information anyway.  */
3541   if (optimize > 0)
3542     {
3543       int old_labelnum = max_label_num ();
3544
3545       split_all_insns (0);
3546       rebuild_label_notes_after_reload |= old_labelnum != max_label_num ();
3547     }
3548
3549   /* Register allocation and reloading may have turned an indirect jump into
3550      a direct jump.  If so, we must rebuild the JUMP_LABEL fields of
3551      jumping instructions.  */
3552   if (rebuild_label_notes_after_reload)
3553     {
3554       timevar_push (TV_JUMP);
3555
3556       rebuild_jump_labels (insns);
3557
3558       timevar_pop (TV_JUMP);
3559     }
3560
3561   close_dump_file (DFI_postreload, print_rtl_with_bb, insns);
3562
3563   /* Re-create the death notes which were deleted during reload.  */
3564   timevar_push (TV_FLOW2);
3565   open_dump_file (DFI_flow2, decl);
3566
3567   jump_optimize (insns, !JUMP_CROSS_JUMP,
3568                  JUMP_NOOP_MOVES, !JUMP_AFTER_REGSCAN);
3569   find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3570
3571   /* On some machines, the prologue and epilogue code, or parts thereof,
3572      can be represented as RTL.  Doing so lets us schedule insns between
3573      it and the rest of the code and also allows delayed branch
3574      scheduling to operate in the epilogue.  */
3575   thread_prologue_and_epilogue_insns (insns);
3576
3577   if (optimize)
3578     {
3579       cleanup_cfg ();
3580       life_analysis (insns, rtl_dump_file, PROP_FINAL);
3581
3582       /* This is kind of a heuristic.  We need to run combine_stack_adjustments
3583          even for machines with possibly nonzero RETURN_POPS_ARGS
3584          and ACCUMULATE_OUTGOING_ARGS.  We expect that only ports having
3585          push instructions will have popping returns.  */
3586 #ifndef PUSH_ROUNDING
3587       if (!ACCUMULATE_OUTGOING_ARGS)
3588 #endif
3589         combine_stack_adjustments ();
3590
3591       ggc_collect ();
3592     }
3593
3594   flow2_completed = 1;
3595
3596   close_dump_file (DFI_flow2, print_rtl_with_bb, insns);
3597   timevar_pop (TV_FLOW2);
3598
3599 #ifdef HAVE_peephole2
3600   if (optimize > 0 && flag_peephole2)
3601     {
3602       timevar_push (TV_PEEPHOLE2);
3603       open_dump_file (DFI_peephole2, decl);
3604
3605       peephole2_optimize (rtl_dump_file);
3606
3607       close_dump_file (DFI_peephole2, print_rtl_with_bb, insns);
3608       timevar_pop (TV_PEEPHOLE2);
3609     }
3610 #endif
3611
3612   if (optimize > 0 && flag_rename_registers)
3613     {
3614       timevar_push (TV_RENAME_REGISTERS);
3615       open_dump_file (DFI_rnreg, decl);
3616
3617       regrename_optimize ();
3618
3619       close_dump_file (DFI_rnreg, print_rtl_with_bb, insns);
3620       timevar_pop (TV_RENAME_REGISTERS);
3621     }
3622
3623   if (optimize > 0)
3624     {
3625       timevar_push (TV_IFCVT2);
3626       open_dump_file (DFI_ce2, decl);
3627
3628       if_convert (1);
3629
3630       close_dump_file (DFI_ce2, print_rtl_with_bb, insns);
3631       timevar_pop (TV_IFCVT2);
3632     }
3633
3634 #ifdef INSN_SCHEDULING
3635   if (optimize > 0 && flag_schedule_insns_after_reload)
3636     {
3637       timevar_push (TV_SCHED2);
3638       open_dump_file (DFI_sched2, decl);
3639
3640       /* Do control and data sched analysis again,
3641          and write some more of the results to dump file.  */
3642
3643       split_all_insns (1);
3644
3645       schedule_insns (rtl_dump_file);
3646
3647       close_dump_file (DFI_sched2, print_rtl_with_bb, insns);
3648       timevar_pop (TV_SCHED2);
3649
3650       ggc_collect ();
3651     }
3652 #endif
3653
3654 #ifdef LEAF_REGISTERS
3655   current_function_uses_only_leaf_regs
3656     = optimize > 0 && only_leaf_regs_used () && leaf_function_p ();
3657 #endif
3658
3659   if (optimize > 0 && flag_reorder_blocks)
3660     {
3661       timevar_push (TV_REORDER_BLOCKS);
3662       open_dump_file (DFI_bbro, decl);
3663
3664       reorder_basic_blocks ();
3665
3666       close_dump_file (DFI_bbro, print_rtl_with_bb, insns);
3667       timevar_pop (TV_REORDER_BLOCKS);
3668     }
3669
3670   /* One more attempt to remove jumps to .+1 left by dead-store elimination.
3671      Also do cross-jumping this time and delete no-op move insns.  */
3672
3673   if (optimize > 0)
3674     {
3675       timevar_push (TV_JUMP);
3676       open_dump_file (DFI_jump2, decl);
3677
3678       jump_optimize (insns, JUMP_CROSS_JUMP, JUMP_NOOP_MOVES,
3679                      !JUMP_AFTER_REGSCAN);
3680
3681       /* CFG no longer kept up to date.  */
3682
3683       close_dump_file (DFI_jump2, print_rtl, insns);
3684       timevar_pop (TV_JUMP);
3685     }
3686
3687   /* If a machine dependent reorganization is needed, call it.  */
3688 #ifdef MACHINE_DEPENDENT_REORG
3689   open_dump_file (DFI_mach, decl);
3690
3691   MACHINE_DEPENDENT_REORG (insns);
3692
3693   close_dump_file (DFI_mach, print_rtl, insns);
3694
3695   ggc_collect ();
3696 #endif
3697
3698   /* If a scheduling pass for delayed branches is to be done,
3699      call the scheduling code.  */
3700
3701 #ifdef DELAY_SLOTS
3702   if (optimize > 0 && flag_delayed_branch)
3703     {
3704       timevar_push (TV_DBR_SCHED);
3705       open_dump_file (DFI_dbr, decl);
3706
3707       dbr_schedule (insns, rtl_dump_file);
3708
3709       close_dump_file (DFI_dbr, print_rtl, insns);
3710       timevar_pop (TV_DBR_SCHED);
3711
3712       ggc_collect ();
3713     }
3714 #endif
3715
3716   timevar_push (TV_SHORTEN_BRANCH);
3717   if (0
3718 #ifdef HAVE_ATTR_length
3719       || 1
3720 #endif
3721 #ifdef STACK_REGS
3722       || 1
3723 #endif
3724       )
3725     split_all_insns (0);
3726   timevar_pop (TV_SHORTEN_BRANCH);
3727
3728 #ifdef STACK_REGS
3729   timevar_push (TV_REG_STACK);
3730   open_dump_file (DFI_stack, decl);
3731
3732   reg_to_stack (insns, rtl_dump_file);
3733
3734   close_dump_file (DFI_stack, print_rtl, insns);
3735   timevar_pop (TV_REG_STACK);
3736
3737   ggc_collect ();
3738 #endif
3739
3740   convert_to_eh_region_ranges ();
3741
3742   /* Shorten branches.  */
3743   timevar_push (TV_SHORTEN_BRANCH);
3744   shorten_branches (get_insns ());
3745   timevar_pop (TV_SHORTEN_BRANCH);
3746
3747   current_function_nothrow = nothrow_function_p ();
3748   if (current_function_nothrow)
3749     /* Now we know that this can't throw; set the flag for the benefit
3750        of other functions later in this translation unit.  */
3751     TREE_NOTHROW (current_function_decl) = 1;
3752
3753   /* Now turn the rtl into assembler code.  */
3754
3755   timevar_push (TV_FINAL);
3756   {
3757     rtx x;
3758     const char *fnname;
3759
3760     /* Get the function's name, as described by its RTL.  This may be
3761        different from the DECL_NAME name used in the source file.  */
3762
3763     x = DECL_RTL (decl);
3764     if (GET_CODE (x) != MEM)
3765       abort ();
3766     x = XEXP (x, 0);
3767     if (GET_CODE (x) != SYMBOL_REF)
3768       abort ();
3769     fnname = XSTR (x, 0);
3770
3771     assemble_start_function (decl, fnname);
3772     final_start_function (insns, asm_out_file, optimize);
3773     final (insns, asm_out_file, optimize, 0);
3774     final_end_function (insns, asm_out_file, optimize);
3775
3776 #ifdef IA64_UNWIND_INFO
3777     /* ??? The IA-64 ".handlerdata" directive must be issued before
3778        the ".endp" directive that closes the procedure descriptor.  */
3779     output_function_exception_table ();
3780 #endif
3781
3782     assemble_end_function (decl, fnname);
3783
3784 #ifndef IA64_UNWIND_INFO
3785     /* Otherwise, it feels unclean to switch sections in the middle.  */
3786     output_function_exception_table ();
3787 #endif
3788
3789     if (! quiet_flag)
3790       fflush (asm_out_file);
3791
3792     /* Release all memory allocated by flow.  */
3793     free_basic_block_vars (0);
3794
3795     /* Release all memory held by regsets now.  */
3796     regset_release_memory ();
3797   }
3798   timevar_pop (TV_FINAL);
3799
3800   ggc_collect ();
3801
3802   /* Write DBX symbols if requested.  */
3803
3804   /* Note that for those inline functions where we don't initially
3805      know for certain that we will be generating an out-of-line copy,
3806      the first invocation of this routine (rest_of_compilation) will
3807      skip over this code by doing a `goto exit_rest_of_compilation;'.
3808      Later on, finish_compilation will call rest_of_compilation again
3809      for those inline functions that need to have out-of-line copies
3810      generated.  During that call, we *will* be routed past here.  */
3811
3812   timevar_push (TV_SYMOUT);
3813 #ifdef DBX_DEBUGGING_INFO
3814   if (write_symbols == DBX_DEBUG)
3815     dbxout_function (decl);
3816 #endif
3817
3818 #ifdef DWARF_DEBUGGING_INFO
3819   if (write_symbols == DWARF_DEBUG)
3820     dwarfout_file_scope_decl (decl, 0);
3821 #endif
3822
3823 #ifdef DWARF2_DEBUGGING_INFO
3824   if (write_symbols == DWARF2_DEBUG)
3825     dwarf2out_decl (decl);
3826 #endif
3827   timevar_pop (TV_SYMOUT);
3828
3829  exit_rest_of_compilation:
3830
3831   /* In case the function was not output,
3832      don't leave any temporary anonymous types
3833      queued up for sdb output.  */
3834 #ifdef SDB_DEBUGGING_INFO
3835   if (write_symbols == SDB_DEBUG)
3836     sdbout_types (NULL_TREE);
3837 #endif
3838
3839   reload_completed = 0;
3840   flow2_completed = 0;
3841   no_new_pseudos = 0;
3842
3843   timevar_push (TV_FINAL);
3844
3845   /* Clear out the insn_length contents now that they are no
3846      longer valid.  */
3847   init_insn_lengths ();
3848
3849   /* Clear out the real_constant_chain before some of the rtx's
3850      it runs through become garbage.  */
3851   clear_const_double_mem ();
3852
3853   /* Show no temporary slots allocated.  */
3854   init_temp_slots ();
3855
3856   free_basic_block_vars (0);
3857
3858   timevar_pop (TV_FINAL);
3859
3860   /* Make sure volatile mem refs aren't considered valid operands for
3861      arithmetic insns.  We must call this here if this is a nested inline
3862      function, since the above code leaves us in the init_recog state
3863      (from final.c), and the function context push/pop code does not
3864      save/restore volatile_ok.
3865
3866      ??? Maybe it isn't necessary for expand_start_function to call this
3867      anymore if we do it here?  */
3868
3869   init_recog_no_volatile ();
3870
3871   /* We're done with this function.  Free up memory if we can.  */
3872   free_after_parsing (cfun);
3873   if (! DECL_DEFER_OUTPUT (decl))
3874     free_after_compilation (cfun);
3875   cfun = 0;
3876
3877   ggc_collect ();
3878
3879   timevar_pop (TV_REST_OF_COMPILATION);
3880 }
3881 \f
3882 static void
3883 display_help ()
3884 {
3885   int undoc;
3886   unsigned long i;
3887   const char *lang;
3888
3889   printf (_("  -ffixed-<register>      Mark <register> as being unavailable to the compiler\n"));
3890   printf (_("  -fcall-used-<register>  Mark <register> as being corrupted by function calls\n"));
3891   printf (_("  -fcall-saved-<register> Mark <register> as being preserved across functions\n"));
3892   printf (_("  -finline-limit=<number> Limits the size of inlined functions to <number>\n"));
3893   printf (_("  -fmessage-length=<number> Limits diagnostics messages lengths to <number> characters per line.  0 suppresses line-wrapping\n"));
3894   printf (_("  -fdiagnostics-show-location=[once | every-line] Indicates how often source location information should be emitted, as prefix, at the beginning of diagnostics when line-wrapping\n"));
3895
3896   for (i = ARRAY_SIZE (f_options); i--;)
3897     {
3898       const char *description = f_options[i].description;
3899
3900       if (description != NULL && * description != 0)
3901         printf ("  -f%-21s %s\n",
3902                 f_options[i].string, _(description));
3903     }
3904
3905   printf (_("  -O[number]              Set optimisation level to [number]\n"));
3906   printf (_("  -Os                     Optimise for space rather than speed\n"));
3907   for (i = LAST_PARAM; i--;)
3908     {
3909       const char *description = compiler_params[i].help;
3910       const int length = 21-strlen(compiler_params[i].option);
3911
3912       if (description != NULL && * description != 0)
3913         printf ("  --param %s=<value>%.*s%s\n",
3914                 compiler_params[i].option,
3915                 length > 0 ? length : 1, "                     ",
3916                 _(description));
3917     }
3918   printf (_("  -pedantic               Issue warnings needed by strict compliance to ISO C\n"));
3919   printf (_("  -pedantic-errors        Like -pedantic except that errors are produced\n"));
3920   printf (_("  -w                      Suppress warnings\n"));
3921   printf (_("  -W                      Enable extra warnings\n"));
3922
3923   for (i = ARRAY_SIZE (W_options); i--;)
3924     {
3925       const char *description = W_options[i].description;
3926
3927       if (description != NULL && * description != 0)
3928         printf ("  -W%-21s %s\n",
3929                 W_options[i].string, _(description));
3930     }
3931
3932   printf (_("  -Wunused                Enable unused warnings\n"));
3933   printf (_("  -Wlarger-than-<number>  Warn if an object is larger than <number> bytes\n"));
3934   printf (_("  -p                      Enable function profiling\n"));
3935 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER)
3936   printf (_("  -a                      Enable block profiling \n"));
3937 #endif
3938 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER) || defined FUNCTION_BLOCK_PROFILER_EXIT
3939   printf (_("  -ax                     Enable jump profiling \n"));
3940 #endif
3941   printf (_("  -o <file>               Place output into <file> \n"));
3942   printf (_("\
3943   -G <number>             Put global and static data smaller than <number>\n\
3944                           bytes into a special section (on some targets)\n"));
3945
3946   for (i = ARRAY_SIZE (debug_args); i--;)
3947     {
3948       if (debug_args[i].description != NULL)
3949         printf ("  -g%-21s %s\n",
3950                 debug_args[i].arg, _(debug_args[i].description));
3951     }
3952
3953   printf (_("  -aux-info <file>        Emit declaration info into <file>\n"));
3954   printf (_("  -quiet                  Do not display functions compiled or elapsed time\n"));
3955   printf (_("  -version                Display the compiler's version\n"));
3956   printf (_("  -d[letters]             Enable dumps from specific passes of the compiler\n"));
3957   printf (_("  -dumpbase <file>        Base name to be used for dumps from specific passes\n"));
3958 #if defined INSN_SCHEDULING
3959   printf (_("  -fsched-verbose=<number> Set the verbosity level of the scheduler\n"));
3960 #endif
3961   printf (_("  --help                  Display this information\n"));
3962
3963   undoc = 0;
3964   lang  = "language";
3965
3966   /* Display descriptions of language specific options.
3967      If there is no description, note that there is an undocumented option.
3968      If the description is empty, do not display anything.  (This allows
3969      options to be deliberately undocumented, for whatever reason).
3970      If the option string is missing, then this is a marker, indicating
3971      that the description string is in fact the name of a language, whose
3972      language specific options are to follow.  */
3973
3974   if (ARRAY_SIZE (documented_lang_options) > 1)
3975     {
3976       printf (_("\nLanguage specific options:\n"));
3977
3978       for (i = 0; i < ARRAY_SIZE (documented_lang_options); i++)
3979         {
3980           const char *description = documented_lang_options[i].description;
3981           const char *option      = documented_lang_options[i].option;
3982
3983           if (description == NULL)
3984             {
3985               undoc = 1;
3986
3987               if (extra_warnings)
3988                 printf (_("  %-23.23s [undocumented]\n"), option);
3989             }
3990           else if (*description == 0)
3991             continue;
3992           else if (option == NULL)
3993             {
3994               if (undoc)
3995                 printf
3996                   (_("\nThere are undocumented %s specific options as well.\n"),
3997                         lang);
3998               undoc = 0;
3999
4000               printf (_("\n Options for %s:\n"), description);
4001
4002               lang = description;
4003             }
4004           else
4005             printf ("  %-23.23s %s\n", option, _(description));
4006         }
4007     }
4008
4009   if (undoc)
4010     printf (_("\nThere are undocumented %s specific options as well.\n"),
4011             lang);
4012
4013   display_target_options ();
4014 }
4015
4016 static void
4017 display_target_options ()
4018 {
4019   int undoc,i;
4020
4021   if (ARRAY_SIZE (target_switches) > 1
4022 #ifdef TARGET_OPTIONS
4023       || ARRAY_SIZE (target_options) > 1
4024 #endif
4025       )
4026     {
4027       int doc = 0;
4028
4029       undoc = 0;
4030
4031       printf (_("\nTarget specific options:\n"));
4032
4033       for (i = ARRAY_SIZE (target_switches); i--;)
4034         {
4035           const char *option      = target_switches[i].name;
4036           const char *description = target_switches[i].description;
4037
4038           if (option == NULL || *option == 0)
4039             continue;
4040           else if (description == NULL)
4041             {
4042               undoc = 1;
4043
4044               if (extra_warnings)
4045                 printf (_("  -m%-23.23s [undocumented]\n"), option);
4046             }
4047           else if (* description != 0)
4048             doc += printf ("  -m%-23.23s %s\n", option, _(description));
4049         }
4050
4051 #ifdef TARGET_OPTIONS
4052       for (i = ARRAY_SIZE (target_options); i--;)
4053         {
4054           const char *option      = target_options[i].prefix;
4055           const char *description = target_options[i].description;
4056
4057           if (option == NULL || *option == 0)
4058             continue;
4059           else if (description == NULL)
4060             {
4061               undoc = 1;
4062
4063               if (extra_warnings)
4064                 printf (_("  -m%-23.23s [undocumented]\n"), option);
4065             }
4066           else if (* description != 0)
4067             doc += printf ("  -m%-23.23s %s\n", option, _(description));
4068         }
4069 #endif
4070       if (undoc)
4071         {
4072           if (doc)
4073             printf (_("\nThere are undocumented target specific options as well.\n"));
4074           else
4075             printf (_("  They exist, but they are not documented.\n"));
4076         }
4077     }
4078 }
4079 \f
4080 /* Parse a -d... comand line switch.  */
4081
4082 static void
4083 decode_d_option (arg)
4084      const char *arg;
4085 {
4086   int i, c, matched;
4087
4088   while (*arg)
4089     switch (c = *arg++)
4090       {
4091       case 'a':
4092         for (i = 0; i < (int) DFI_MAX; ++i)
4093           dump_file[i].enabled = 1;
4094         break;
4095       case 'A':
4096         flag_debug_asm = 1;
4097         break;
4098       case 'p':
4099         flag_print_asm_name = 1;
4100         break;
4101       case 'P':
4102         flag_dump_rtl_in_asm = 1;
4103         flag_print_asm_name = 1;
4104         break;
4105       case 'v':
4106         graph_dump_format = vcg;
4107         break;
4108       case 'x':
4109         rtl_dump_and_exit = 1;
4110         break;
4111       case 'y':
4112         set_yydebug (1);
4113         break;
4114       case 'D': /* These are handled by the preprocessor.  */
4115       case 'I':
4116         break;
4117
4118       default:
4119         matched = 0;
4120         for (i = 0; i < (int) DFI_MAX; ++i)
4121           if (c == dump_file[i].debug_switch)
4122             {
4123               dump_file[i].enabled = 1;
4124               matched = 1;
4125             }
4126
4127         if (! matched)
4128           warning ("unrecognized gcc debugging option: %c", c);
4129         break;
4130       }
4131 }
4132
4133 /* Parse a -f... comand line switch.  ARG is the value after the -f.
4134    It is safe to access 'ARG - 2' to generate the full switch name.
4135    Return the number of strings consumed.  */
4136
4137 static int
4138 decode_f_option (arg)
4139      const char *arg;
4140 {
4141   int j;
4142   const char *option_value = NULL;
4143
4144   /* Search for the option in the table of binary f options.  */
4145   for (j = ARRAY_SIZE (f_options); j--;)
4146     {
4147       if (!strcmp (arg, f_options[j].string))
4148         {
4149           *f_options[j].variable = f_options[j].on_value;
4150           return 1;
4151         }
4152
4153       if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4154           && ! strcmp (arg + 3, f_options[j].string))
4155         {
4156           *f_options[j].variable = ! f_options[j].on_value;
4157           return 1;
4158         }
4159     }
4160
4161   if (!strcmp (arg, "fast-math"))
4162     set_fast_math_flags();
4163   else if (!strcmp (arg, "no-fast-math"))
4164     set_no_fast_math_flags();
4165   else if ((option_value = skip_leading_substring (arg, "inline-limit-"))
4166            || (option_value = skip_leading_substring (arg, "inline-limit=")))
4167     {
4168       int val =
4169         read_integral_parameter (option_value, arg - 2,
4170                                  MAX_INLINE_INSNS);
4171       set_param_value ("max-inline-insns", val);
4172     }
4173 #ifdef INSN_SCHEDULING
4174   else if ((option_value = skip_leading_substring (arg, "sched-verbose=")))
4175     fix_sched_param ("verbose", option_value);
4176 #endif
4177   else if ((option_value = skip_leading_substring (arg, "fixed-")))
4178     fix_register (option_value, 1, 1);
4179   else if ((option_value = skip_leading_substring (arg, "call-used-")))
4180     fix_register (option_value, 0, 1);
4181   else if ((option_value = skip_leading_substring (arg, "call-saved-")))
4182     fix_register (option_value, 0, 0);
4183   else if ((option_value = skip_leading_substring (arg, "align-loops=")))
4184     align_loops = read_integral_parameter (option_value, arg - 2, align_loops);
4185   else if ((option_value = skip_leading_substring (arg, "align-functions=")))
4186     align_functions
4187       = read_integral_parameter (option_value, arg - 2, align_functions);
4188   else if ((option_value = skip_leading_substring (arg, "align-jumps=")))
4189     align_jumps = read_integral_parameter (option_value, arg - 2, align_jumps);
4190   else if ((option_value = skip_leading_substring (arg, "align-labels=")))
4191     align_labels
4192       = read_integral_parameter (option_value, arg - 2, align_labels);
4193   else if ((option_value
4194             = skip_leading_substring (arg, "stack-limit-register=")))
4195     {
4196       int reg = decode_reg_name (option_value);
4197       if (reg < 0)
4198         error ("unrecognized register name `%s'", option_value);
4199       else
4200         stack_limit_rtx = gen_rtx_REG (Pmode, reg);
4201     }
4202   else if ((option_value
4203             = skip_leading_substring (arg, "stack-limit-symbol=")))
4204     {
4205       const char *nm;
4206       nm = ggc_strdup (option_value);
4207       stack_limit_rtx = gen_rtx_SYMBOL_REF (Pmode, nm);
4208     }
4209   else if ((option_value
4210             = skip_leading_substring (arg, "message-length=")))
4211     output_set_maximum_length
4212       (&global_dc->buffer, read_integral_parameter
4213        (option_value, arg - 2, diagnostic_line_cutoff (global_dc)));
4214   else if ((option_value
4215             = skip_leading_substring (arg, "diagnostics-show-location=")))
4216     {
4217       if (!strcmp (option_value, "once"))
4218         diagnostic_prefixing_rule (global_dc) = DIAGNOSTICS_SHOW_PREFIX_ONCE;
4219       else if (!strcmp (option_value, "every-line"))
4220         diagnostic_prefixing_rule (global_dc)
4221           = DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE;
4222       else
4223         error ("Unrecognized option `%s'", arg - 2);
4224     }
4225   else if (!strcmp (arg, "no-stack-limit"))
4226     stack_limit_rtx = NULL_RTX;
4227   else if (!strcmp (arg, "preprocessed"))
4228     /* Recognise this switch but do nothing.  This prevents warnings
4229        about an unrecognized switch if cpplib has not been linked in.  */
4230     ;
4231   else
4232     return 0;
4233
4234   return 1;
4235 }
4236
4237 /* Parse a -W... comand line switch.  ARG is the value after the -W.
4238    It is safe to access 'ARG - 2' to generate the full switch name.
4239    Return the number of strings consumed.  */
4240
4241 static int
4242 decode_W_option (arg)
4243      const char *arg;
4244 {
4245   const char *option_value = NULL;
4246   int j;
4247
4248   /* Search for the option in the table of binary W options.  */
4249
4250   for (j = ARRAY_SIZE (W_options); j--;)
4251     {
4252       if (!strcmp (arg, W_options[j].string))
4253         {
4254           *W_options[j].variable = W_options[j].on_value;
4255           return 1;
4256         }
4257
4258       if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4259           && ! strcmp (arg + 3, W_options[j].string))
4260         {
4261           *W_options[j].variable = ! W_options[j].on_value;
4262           return 1;
4263         }
4264     }
4265
4266   if ((option_value = skip_leading_substring (arg, "id-clash-")))
4267     warning ("-Wid-clash-LEN is no longer supported");
4268   else if ((option_value = skip_leading_substring (arg, "larger-than-")))
4269     {
4270       larger_than_size = read_integral_parameter (option_value, arg - 2, -1);
4271
4272       warn_larger_than = larger_than_size != -1;
4273     }
4274   else if (!strcmp (arg, "unused"))
4275     {
4276       set_Wunused (1);
4277     }
4278   else if (!strcmp (arg, "no-unused"))
4279     {
4280       set_Wunused (0);
4281     }
4282   else
4283     return 0;
4284
4285   return 1;
4286 }
4287
4288 /* Parse a -g... comand line switch.  ARG is the value after the -g.
4289    It is safe to access 'ARG - 2' to generate the full switch name.
4290    Return the number of strings consumed.  */
4291
4292 static int
4293 decode_g_option (arg)
4294      const char *arg;
4295 {
4296   static unsigned level=0;
4297   /* A lot of code assumes write_symbols == NO_DEBUG if the
4298      debugging level is 0 (thus -gstabs1 -gstabs0 would lose track
4299      of what debugging type has been selected).  This records the
4300      selected type.  It is an error to specify more than one
4301      debugging type.  */
4302   static enum debug_info_type selected_debug_type = NO_DEBUG;
4303   /* Non-zero if debugging format has been explicitly set.
4304      -g and -ggdb don't explicitly set the debugging format so
4305      -gdwarf -g3 is equivalent to -gdwarf3.  */
4306   static int type_explicitly_set_p = 0;
4307   /* Indexed by enum debug_info_type.  */
4308   static const char *debug_type_names[] =
4309   {
4310     "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff"
4311   };
4312
4313   /* The maximum admissible debug level value.  */
4314   static const unsigned max_debug_level = 3;
4315
4316   /* Look up ARG in the table.  */
4317   for (da = debug_args; da->arg; da++)
4318     {
4319       const int da_len = strlen (da->arg);
4320
4321       if (da_len == 0 || ! strncmp (arg, da->arg, da_len))
4322         {
4323           enum debug_info_type type = da->debug_type;
4324           const char *p = arg + da_len;
4325
4326           if (*p && (*p < '0' || *p > '9'))
4327             continue;
4328
4329           /* A debug flag without a level defaults to level 2.
4330              Note we do not want to call read_integral_parameter
4331              for that case since it will call atoi which
4332              will return zero.
4333
4334              ??? We may want to generalize the interface to
4335              read_integral_parameter to better handle this case
4336              if this case shows up often.  */
4337           if (*p)
4338             level = read_integral_parameter (p, 0, max_debug_level + 1);
4339           else
4340             level = (level == 0) ? 2 : level;
4341
4342           if (da_len > 1 && *p && !strncmp (arg, "dwarf", da_len))
4343             {
4344               error ("use -gdwarf -g%d for DWARF v1, level %d",
4345                      level, level);
4346               if (level == 2)
4347                 error ("use -gdwarf-2   for DWARF v2");
4348             }
4349
4350           if (level > max_debug_level)
4351             {
4352               warning ("\
4353 ignoring option `%s' due to invalid debug level specification",
4354                        arg - 2);
4355               level = debug_info_level;
4356             }
4357
4358           if (type == NO_DEBUG)
4359             {
4360               type = PREFERRED_DEBUGGING_TYPE;
4361
4362               if (da_len > 1 && strncmp (arg, "gdb", da_len) == 0)
4363                 {
4364 #if defined (DWARF2_DEBUGGING_INFO) && !defined (LINKER_DOES_NOT_WORK_WITH_DWARF2)
4365                   type = DWARF2_DEBUG;
4366 #else
4367 #ifdef DBX_DEBUGGING_INFO
4368                   type = DBX_DEBUG;
4369 #endif
4370 #endif
4371                 }
4372             }
4373
4374           if (type == NO_DEBUG)
4375             warning ("`%s': unknown or unsupported -g option", arg - 2);
4376
4377           /* Does it conflict with an already selected type?  */
4378           if (type_explicitly_set_p
4379               /* -g/-ggdb don't conflict with anything.  */
4380               && da->debug_type != NO_DEBUG
4381               && type != selected_debug_type)
4382             warning ("`%s' ignored, conflicts with `-g%s'",
4383                      arg - 2, debug_type_names[(int) selected_debug_type]);
4384           else
4385             {
4386               /* If the format has already been set, -g/-ggdb
4387                  only change the debug level.  */
4388               if (type_explicitly_set_p && da->debug_type == NO_DEBUG)
4389                 /* Don't change debugging type.  */
4390                 ;
4391               else
4392                 {
4393                   selected_debug_type = type;
4394                   type_explicitly_set_p = da->debug_type != NO_DEBUG;
4395                 }
4396
4397               write_symbols = (level == 0
4398                                ? NO_DEBUG
4399                                : selected_debug_type);
4400               use_gnu_debug_info_extensions = da->use_extensions_p;
4401               debug_info_level = (enum debug_info_level) level;
4402             }
4403
4404           break;
4405         }
4406     }
4407
4408   if (! da->arg)
4409     return 0;
4410
4411   return 1;
4412 }
4413
4414 /* Decode the first argument in the argv as a language-independent option.
4415    Return the number of strings consumed.  */
4416
4417 static unsigned int
4418 independent_decode_option (argc, argv)
4419      int argc;
4420      char **argv;
4421 {
4422   char *arg = argv[0];
4423
4424   if (arg[0] != '-' || arg[1] == 0)
4425     {
4426       if (arg[0] == '+')
4427         return 0;
4428
4429       filename = arg;
4430
4431       return 1;
4432     }
4433
4434   arg++;
4435
4436   if (!strcmp (arg, "-help"))
4437     {
4438       display_help ();
4439       exit_after_options = 1;
4440     }
4441
4442   if (!strcmp (arg, "-target-help"))
4443     {
4444       display_target_options ();
4445       exit_after_options = 1;
4446     }
4447
4448   if (!strcmp (arg, "-version"))
4449     {
4450       print_version (stderr, "");
4451       exit_after_options = 1;
4452     }
4453
4454   /* Handle '--param <name>=<value>'.  */
4455   if (strcmp (arg, "-param") == 0)
4456     {
4457       char *equal;
4458
4459       if (argc == 1)
4460         {
4461           error ("-param option missing argument");
4462           return 1;
4463         }
4464
4465       /* Get the '<name>=<value>' parameter.  */
4466       arg = argv[1];
4467       /* Look for the `='.  */
4468       equal = strchr (arg, '=');
4469       if (!equal)
4470         error ("invalid --param option: %s", arg);
4471       else
4472         {
4473           int val;
4474
4475           /* Zero out the `=' sign so that we get two separate strings.  */
4476           *equal = '\0';
4477           /* Figure out what value is specified.  */
4478           val = read_integral_parameter (equal + 1, NULL, INVALID_PARAM_VAL);
4479           if (val != INVALID_PARAM_VAL)
4480             set_param_value (arg, val);
4481           else
4482             error ("invalid parameter value `%s'", equal + 1);
4483         }
4484
4485       return 2;
4486     }
4487
4488   if (*arg == 'Y')
4489     arg++;
4490
4491   switch (*arg)
4492     {
4493     default:
4494       return 0;
4495
4496     case 'O':
4497       /* Already been treated in main (). Do nothing.  */
4498       break;
4499
4500     case 'm':
4501       set_target_switch (arg + 1);
4502       break;
4503
4504     case 'f':
4505       return decode_f_option (arg + 1);
4506
4507     case 'g':
4508       return decode_g_option (arg + 1);
4509
4510     case 'd':
4511       if (!strcmp (arg, "dumpbase"))
4512         {
4513           if (argc == 1)
4514             return 0;
4515
4516           dump_base_name = argv[1];
4517           return 2;
4518         }
4519       else
4520         decode_d_option (arg + 1);
4521       break;
4522
4523     case 'p':
4524       if (!strcmp (arg, "pedantic"))
4525         pedantic = 1;
4526       else if (!strcmp (arg, "pedantic-errors"))
4527         flag_pedantic_errors = pedantic = 1;
4528       else if (arg[1] == 0)
4529         profile_flag = 1;
4530       else
4531         return 0;
4532       break;
4533
4534     case 'q':
4535       if (!strcmp (arg, "quiet"))
4536         quiet_flag = 1;
4537       else
4538         return 0;
4539       break;
4540
4541     case 'v':
4542       if (!strcmp (arg, "version"))
4543         version_flag = 1;
4544       else
4545         return 0;
4546       break;
4547
4548     case 'w':
4549       if (arg[1] == 0)
4550         inhibit_warnings = 1;
4551       else
4552         return 0;
4553       break;
4554
4555     case 'W':
4556       if (arg[1] == 0)
4557         {
4558           extra_warnings = 1;
4559           /* We save the value of warn_uninitialized, since if they put
4560              -Wuninitialized on the command line, we need to generate a
4561              warning about not using it without also specifying -O.  */
4562           if (warn_uninitialized != 1)
4563             warn_uninitialized = 2;
4564         }
4565       else
4566         return decode_W_option (arg + 1);
4567       break;
4568
4569     case 'a':
4570       if (arg[1] == 0)
4571         {
4572 #if !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4573           warning ("`-a' option (basic block profile) not supported");
4574 #else
4575           profile_block_flag = (profile_block_flag < 2) ? 1 : 3;
4576 #endif
4577         }
4578       else if (!strcmp (arg, "ax"))
4579         {
4580 #if !defined (FUNCTION_BLOCK_PROFILER_EXIT) || !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4581           warning ("`-ax' option (jump profiling) not supported");
4582 #else
4583           profile_block_flag = (!profile_block_flag
4584                                 || profile_block_flag == 2) ? 2 : 3;
4585 #endif
4586         }
4587       else if (!strncmp (arg, "aux-info", 8))
4588         {
4589           if (arg[8] == '\0')
4590             {
4591               if (argc == 1)
4592                 return 0;
4593
4594               aux_info_file_name = argv[1];
4595               flag_gen_aux_info = 1;
4596               return 2;
4597             }
4598           else if (arg[8] == '=')
4599             {
4600               aux_info_file_name = arg + 9;
4601               flag_gen_aux_info = 1;
4602             }
4603           else
4604             return 0;
4605         }
4606       else
4607         return 0;
4608       break;
4609
4610     case 'o':
4611       if (arg[1] == 0)
4612         {
4613           if (argc == 1)
4614             return 0;
4615
4616           asm_file_name = argv[1];
4617           return 2;
4618         }
4619       return 0;
4620
4621     case 'G':
4622       {
4623         int g_switch_val;
4624         int return_val;
4625
4626         if (arg[1] == 0)
4627           {
4628             if (argc == 1)
4629               return 0;
4630
4631             g_switch_val = read_integral_parameter (argv[1], 0, -1);
4632             return_val = 2;
4633           }
4634         else
4635           {
4636             g_switch_val = read_integral_parameter (arg + 1, 0, -1);
4637             return_val = 1;
4638           }
4639
4640         if (g_switch_val == -1)
4641           return_val = 0;
4642         else
4643           {
4644             g_switch_set = TRUE;
4645             g_switch_value = g_switch_val;
4646           }
4647
4648         return return_val;
4649       }
4650     }
4651
4652   return 1;
4653 }
4654 \f
4655 /* Entry point of cc1, cc1plus, jc1, f771, etc.
4656    Decode command args, then call compile_file.
4657    Exit code is FATAL_EXIT_CODE if can't open files or if there were
4658    any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
4659
4660    It is not safe to call this function more than once.  */
4661
4662 int
4663 toplev_main (argc, argv)
4664      int argc;
4665      char **argv;
4666 {
4667   register int i;
4668   char *p;
4669
4670   /* save in case md file wants to emit args as a comment.  */
4671   save_argc = argc;
4672   save_argv = argv;
4673
4674   p = argv[0] + strlen (argv[0]);
4675   while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
4676     --p;
4677   progname = p;
4678
4679   xmalloc_set_program_name (progname);
4680
4681 /* LC_CTYPE determines the character set used by the terminal so it has be set
4682    to output messages correctly.  */
4683
4684 #ifdef HAVE_LC_MESSAGES
4685   setlocale (LC_CTYPE, "");
4686   setlocale (LC_MESSAGES, "");
4687 #else
4688   setlocale (LC_ALL, "");
4689 #endif
4690
4691   (void) bindtextdomain (PACKAGE, localedir);
4692   (void) textdomain (PACKAGE);
4693
4694   /* Install handler for SIGFPE, which may be received while we do
4695      compile-time floating point arithmetic.  */
4696   signal (SIGFPE, float_signal);
4697
4698   /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages.  */
4699 #ifdef SIGSEGV
4700   signal (SIGSEGV, crash_signal);
4701 #endif
4702 #ifdef SIGILL
4703   signal (SIGILL, crash_signal);
4704 #endif
4705 #ifdef SIGBUS
4706   signal (SIGBUS, crash_signal);
4707 #endif
4708 #ifdef SIGABRT
4709   signal (SIGABRT, crash_signal);
4710 #endif
4711 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
4712   signal (SIGIOT, crash_signal);
4713 #endif
4714
4715   decl_printable_name = decl_name;
4716   lang_expand_expr = (lang_expand_expr_t) do_abort;
4717
4718   /* Initialize whether `char' is signed.  */
4719   flag_signed_char = DEFAULT_SIGNED_CHAR;
4720 #ifdef DEFAULT_SHORT_ENUMS
4721   /* Initialize how much space enums occupy, by default.  */
4722   flag_short_enums = DEFAULT_SHORT_ENUMS;
4723 #endif
4724
4725   /* Initialize the garbage-collector.  */
4726   init_ggc ();
4727   init_stringpool ();
4728   ggc_add_rtx_root (&stack_limit_rtx, 1);
4729   ggc_add_tree_root (&current_function_decl, 1);
4730   ggc_add_tree_root (&current_function_func_begin_label, 1);
4731
4732   /* Initialize the diagnostics reporting machinery.  */
4733   diagnostic_initialize (global_dc);
4734
4735   /* Register the language-independent parameters.  */
4736   add_params (lang_independent_params, LAST_PARAM);
4737
4738   /* Perform language-specific options intialization.  */
4739   if (lang_hooks.init_options)
4740     (*lang_hooks.init_options) ();
4741
4742   /* Scan to see what optimization level has been specified.  That will
4743      determine the default value of many flags.  */
4744   for (i = 1; i < argc; i++)
4745     {
4746       if (!strcmp (argv[i], "-O"))
4747         {
4748           optimize = 1;
4749           optimize_size = 0;
4750         }
4751       else if (argv[i][0] == '-' && argv[i][1] == 'O')
4752         {
4753           /* Handle -Os, -O2, -O3, -O69, ...  */
4754           char *p = &argv[i][2];
4755
4756           if ((p[0] == 's') && (p[1] == 0))
4757             {
4758               optimize_size = 1;
4759
4760               /* Optimizing for size forces optimize to be 2.  */
4761               optimize = 2;
4762             }
4763           else
4764             {
4765               const int optimize_val = read_integral_parameter (p, p - 2, -1);
4766               if (optimize_val != -1)
4767                 {
4768                   optimize = optimize_val;
4769                   optimize_size = 0;
4770                 }
4771             }
4772         }
4773     }
4774
4775   if (optimize >= 1)
4776     {
4777       flag_defer_pop = 1;
4778       flag_thread_jumps = 1;
4779 #ifdef DELAY_SLOTS
4780       flag_delayed_branch = 1;
4781 #endif
4782 #ifdef CAN_DEBUG_WITHOUT_FP
4783       flag_omit_frame_pointer = 1;
4784 #endif
4785       flag_guess_branch_prob = 1;
4786     }
4787
4788   if (optimize >= 2)
4789     {
4790       flag_optimize_sibling_calls = 1;
4791       flag_cse_follow_jumps = 1;
4792       flag_cse_skip_blocks = 1;
4793       flag_gcse = 1;
4794       flag_expensive_optimizations = 1;
4795       flag_strength_reduce = 1;
4796       flag_rerun_cse_after_loop = 1;
4797       flag_rerun_loop_opt = 1;
4798       flag_caller_saves = 1;
4799       flag_force_mem = 1;
4800       flag_peephole2 = 1;
4801 #ifdef INSN_SCHEDULING
4802       flag_schedule_insns = 1;
4803       flag_schedule_insns_after_reload = 1;
4804 #endif
4805       flag_regmove = 1;
4806       flag_strict_aliasing = 1;
4807       flag_delete_null_pointer_checks = 1;
4808       flag_reorder_blocks = 1;
4809     }
4810
4811   if (optimize >= 3)
4812     {
4813       flag_inline_functions = 1;
4814       flag_rename_registers = 1;
4815     }
4816
4817   if (optimize < 2 || optimize_size)
4818     {
4819       align_loops = 1;
4820       align_jumps = 1;
4821       align_labels = 1;
4822       align_functions = 1;
4823     }
4824
4825   /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
4826      modify it.  */
4827   target_flags = 0;
4828   set_target_switch ("");
4829
4830   /* Unwind tables are always present in an ABI-conformant IA-64
4831      object file, so the default should be ON.  */
4832 #ifdef IA64_UNWIND_INFO
4833   flag_unwind_tables = IA64_UNWIND_INFO;
4834 #endif
4835
4836 #ifdef OPTIMIZATION_OPTIONS
4837   /* Allow default optimizations to be specified on a per-machine basis.  */
4838   OPTIMIZATION_OPTIONS (optimize, optimize_size);
4839 #endif
4840
4841   /* Initialize register usage now so switches may override.  */
4842   init_reg_sets ();
4843
4844   /* Perform normal command line switch decoding.  */
4845   for (i = 1; i < argc;)
4846     {
4847       int lang_processed;
4848       int indep_processed;
4849
4850       /* Give the language a chance to decode the option for itself.  */
4851       lang_processed = (*lang_hooks.decode_option) (argc - i, argv + i);
4852
4853       if (lang_processed >= 0)
4854         /* Now see if the option also has a language independent meaning.
4855            Some options are both language specific and language independent,
4856            eg --help.  */
4857         indep_processed = independent_decode_option (argc - i, argv + i);
4858       else
4859         {
4860           lang_processed = -lang_processed;
4861           indep_processed = 0;
4862         }
4863
4864       if (lang_processed || indep_processed)
4865         i += MAX (lang_processed, indep_processed);
4866       else
4867         {
4868           const char *option = NULL;
4869           const char *lang = NULL;
4870           unsigned int j;
4871
4872           /* It is possible that the command line switch is not valid for the
4873              current language, but it is valid for another language.  In order
4874              to be compatible with previous versions of the compiler (which
4875              did not issue an error message in this case) we check for this
4876              possibility here.  If we do find a match, then if extra_warnings
4877              is set we generate a warning message, otherwise we will just
4878              ignore the option.  */
4879           for (j = 0; j < ARRAY_SIZE (documented_lang_options); j++)
4880             {
4881               option = documented_lang_options[j].option;
4882
4883               if (option == NULL)
4884                 lang = documented_lang_options[j].description;
4885               else if (! strncmp (argv[i], option, strlen (option)))
4886                 break;
4887             }
4888
4889           if (j != ARRAY_SIZE (documented_lang_options))
4890             {
4891               if (extra_warnings)
4892                 {
4893                   warning ("Ignoring command line option '%s'", argv[i]);
4894                   if (lang)
4895                     warning
4896                       ("(It is valid for %s but not the selected language)",
4897                        lang);
4898                 }
4899             }
4900           else if (argv[i][0] == '-' && argv[i][1] == 'g')
4901             warning ("`%s': unknown or unsupported -g option", &argv[i][2]);
4902           else
4903             error ("Unrecognized option `%s'", argv[i]);
4904
4905           i++;
4906         }
4907     }
4908
4909   /* All command line options have been processed.  */
4910   if (lang_hooks.post_options)
4911     (*lang_hooks.post_options) ();
4912
4913   if (exit_after_options)
4914     exit (0);
4915
4916   /* Checker uses the frame pointer.  */
4917   if (flag_check_memory_usage)
4918     flag_omit_frame_pointer = 0;
4919
4920   if (optimize == 0)
4921     {
4922       /* Inlining does not work if not optimizing,
4923          so force it not to be done.  */
4924       flag_no_inline = 1;
4925       warn_inline = 0;
4926
4927       /* The c_decode_option function and decode_option hook set
4928          this to `2' if -Wall is used, so we can avoid giving out
4929          lots of errors for people who don't realize what -Wall does.  */
4930       if (warn_uninitialized == 1)
4931         warning ("-Wuninitialized is not supported without -O");
4932     }
4933
4934   /* We do not currently support sibling-call optimization in the
4935      presence of exceptions.  See PR2975 for a test-case that will
4936      fail if we try to combine both of these features.  */
4937   if (flag_exceptions)
4938     flag_optimize_sibling_calls = 0;
4939
4940 #ifdef OVERRIDE_OPTIONS
4941   /* Some machines may reject certain combinations of options.  */
4942   OVERRIDE_OPTIONS;
4943 #endif
4944
4945   /* Set up the align_*_log variables, defaulting them to 1 if they
4946      were still unset.  */
4947   if (align_loops <= 0) align_loops = 1;
4948   align_loops_log = floor_log2 (align_loops * 2 - 1);
4949   if (align_jumps <= 0) align_jumps = 1;
4950   align_jumps_log = floor_log2 (align_jumps * 2 - 1);
4951   if (align_labels <= 0) align_labels = 1;
4952   align_labels_log = floor_log2 (align_labels * 2 - 1);
4953   if (align_functions <= 0) align_functions = 1;
4954   align_functions_log = floor_log2 (align_functions * 2 - 1);
4955
4956   if (profile_block_flag == 3)
4957     {
4958       warning ("`-ax' and `-a' are conflicting options. `-a' ignored.");
4959       profile_block_flag = 2;
4960     }
4961
4962   /* Unrolling all loops implies that standard loop unrolling must also
4963      be done.  */
4964   if (flag_unroll_all_loops)
4965     flag_unroll_loops = 1;
4966   /* Loop unrolling requires that strength_reduction be on also.  Silently
4967      turn on strength reduction here if it isn't already on.  Also, the loop
4968      unrolling code assumes that cse will be run after loop, so that must
4969      be turned on also.  */
4970   if (flag_unroll_loops)
4971     {
4972       flag_strength_reduce = 1;
4973       flag_rerun_cse_after_loop = 1;
4974     }
4975
4976   /* Warn about options that are not supported on this machine.  */
4977 #ifndef INSN_SCHEDULING
4978   if (flag_schedule_insns || flag_schedule_insns_after_reload)
4979     warning ("instruction scheduling not supported on this target machine");
4980 #endif
4981 #ifndef DELAY_SLOTS
4982   if (flag_delayed_branch)
4983     warning ("this target machine does not have delayed branches");
4984 #endif
4985
4986   /* Some operating systems do not allow profiling without a frame
4987      pointer.  */
4988   if (!TARGET_ALLOWS_PROFILING_WITHOUT_FRAME_POINTER
4989       && profile_flag
4990       && flag_omit_frame_pointer)
4991     {
4992       error ("profiling does not work without a frame pointer");
4993       flag_omit_frame_pointer = 0;
4994     }
4995     
4996   user_label_prefix = USER_LABEL_PREFIX;
4997   if (flag_leading_underscore != -1)
4998     {
4999       /* If the default prefix is more complicated than "" or "_",
5000          issue a warning and ignore this option.  */
5001       if (user_label_prefix[0] == 0 ||
5002           (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
5003         {
5004           user_label_prefix = flag_leading_underscore ? "_" : "";
5005         }
5006       else
5007         warning ("-f%sleading-underscore not supported on this target machine",
5008                  flag_leading_underscore ? "" : "no-");
5009     }
5010
5011   /* If we are in verbose mode, write out the version and maybe all the
5012      option flags in use.  */
5013   if (version_flag)
5014     {
5015       print_version (stderr, "");
5016       if (! quiet_flag)
5017         print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
5018     }
5019
5020   compile_file (filename);
5021
5022   if (errorcount)
5023     return (FATAL_EXIT_CODE);
5024   if (sorrycount)
5025     return (FATAL_EXIT_CODE);
5026   return (SUCCESS_EXIT_CODE);
5027 }
5028 \f
5029 /* Decode -m switches.  */
5030 /* Decode the switch -mNAME.  */
5031
5032 static void
5033 set_target_switch (name)
5034      const char *name;
5035 {
5036   register size_t j;
5037   int valid_target_option = 0;
5038
5039   for (j = 0; j < ARRAY_SIZE (target_switches); j++)
5040     if (!strcmp (target_switches[j].name, name))
5041       {
5042         if (target_switches[j].value < 0)
5043           target_flags &= ~-target_switches[j].value;
5044         else
5045           target_flags |= target_switches[j].value;
5046         valid_target_option = 1;
5047       }
5048
5049 #ifdef TARGET_OPTIONS
5050   if (!valid_target_option)
5051     for (j = 0; j < ARRAY_SIZE (target_options); j++)
5052       {
5053         int len = strlen (target_options[j].prefix);
5054         if (!strncmp (target_options[j].prefix, name, len))
5055           {
5056             *target_options[j].variable = name + len;
5057             valid_target_option = 1;
5058           }
5059       }
5060 #endif
5061
5062   if (!valid_target_option)
5063     error ("Invalid option `%s'", name);
5064 }
5065 \f
5066 /* Print version information to FILE.
5067    Each line begins with INDENT (for the case where FILE is the
5068    assembler output file).  */
5069
5070 static void
5071 print_version (file, indent)
5072      FILE *file;
5073      const char *indent;
5074 {
5075 #ifndef __VERSION__
5076 #define __VERSION__ "[?]"
5077 #endif
5078   fnotice (file,
5079 #ifdef __GNUC__
5080            "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
5081 #else
5082            "%s%s%s version %s (%s) compiled by CC.\n"
5083 #endif
5084            , indent, *indent != 0 ? " " : "",
5085            language_string, version_string, TARGET_NAME,
5086            indent, __VERSION__);
5087 }
5088
5089 /* Print an option value and return the adjusted position in the line.
5090    ??? We don't handle error returns from fprintf (disk full); presumably
5091    other code will catch a disk full though.  */
5092
5093 static int
5094 print_single_switch (file, pos, max, indent, sep, term, type, name)
5095      FILE *file;
5096      int pos, max;
5097      const char *indent, *sep, *term, *type, *name;
5098 {
5099   /* The ultrix fprintf returns 0 on success, so compute the result we want
5100      here since we need it for the following test.  */
5101   int len = strlen (sep) + strlen (type) + strlen (name);
5102
5103   if (pos != 0
5104       && pos + len > max)
5105     {
5106       fprintf (file, "%s", term);
5107       pos = 0;
5108     }
5109   if (pos == 0)
5110     {
5111       fprintf (file, "%s", indent);
5112       pos = strlen (indent);
5113     }
5114   fprintf (file, "%s%s%s", sep, type, name);
5115   pos += len;
5116   return pos;
5117 }
5118
5119 /* Print active target switches to FILE.
5120    POS is the current cursor position and MAX is the size of a "line".
5121    Each line begins with INDENT and ends with TERM.
5122    Each switch is separated from the next by SEP.  */
5123
5124 static void
5125 print_switch_values (file, pos, max, indent, sep, term)
5126      FILE *file;
5127      int pos, max;
5128      const char *indent, *sep, *term;
5129 {
5130   size_t j;
5131   char **p;
5132
5133   /* Print the options as passed.  */
5134
5135   pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
5136                              _("options passed: "), "");
5137
5138   for (p = &save_argv[1]; *p != NULL; p++)
5139     if (**p == '-')
5140       {
5141         /* Ignore these.  */
5142         if (strcmp (*p, "-o") == 0)
5143           {
5144             if (p[1] != NULL)
5145               p++;
5146             continue;
5147           }
5148         if (strcmp (*p, "-quiet") == 0)
5149           continue;
5150         if (strcmp (*p, "-version") == 0)
5151           continue;
5152         if ((*p)[1] == 'd')
5153           continue;
5154
5155         pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
5156       }
5157   if (pos > 0)
5158     fprintf (file, "%s", term);
5159
5160   /* Print the -f and -m options that have been enabled.
5161      We don't handle language specific options but printing argv
5162      should suffice.  */
5163
5164   pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
5165                              _("options enabled: "), "");
5166
5167   for (j = 0; j < ARRAY_SIZE (f_options); j++)
5168     if (*f_options[j].variable == f_options[j].on_value)
5169       pos = print_single_switch (file, pos, max, indent, sep, term,
5170                                  "-f", f_options[j].string);
5171
5172   /* Print target specific options.  */
5173
5174   for (j = 0; j < ARRAY_SIZE (target_switches); j++)
5175     if (target_switches[j].name[0] != '\0'
5176         && target_switches[j].value > 0
5177         && ((target_switches[j].value & target_flags)
5178             == target_switches[j].value))
5179       {
5180         pos = print_single_switch (file, pos, max, indent, sep, term,
5181                                    "-m", target_switches[j].name);
5182       }
5183
5184 #ifdef TARGET_OPTIONS
5185   for (j = 0; j < ARRAY_SIZE (target_options); j++)
5186     if (*target_options[j].variable != NULL)
5187       {
5188         char prefix[256];
5189         sprintf (prefix, "-m%s", target_options[j].prefix);
5190         pos = print_single_switch (file, pos, max, indent, sep, term,
5191                                    prefix, *target_options[j].variable);
5192       }
5193 #endif
5194
5195   fprintf (file, "%s", term);
5196 }
5197
5198 /* Record the beginning of a new source file, named FILENAME.  */
5199
5200 void
5201 debug_start_source_file (lineno, filename)
5202      register unsigned int lineno ATTRIBUTE_UNUSED;
5203      register const char *filename ATTRIBUTE_UNUSED;
5204 {
5205 #ifdef DBX_DEBUGGING_INFO
5206   if (write_symbols == DBX_DEBUG)
5207     dbxout_start_new_source_file (filename);
5208 #endif
5209 #ifdef DWARF_DEBUGGING_INFO
5210   if (debug_info_level == DINFO_LEVEL_VERBOSE
5211       && write_symbols == DWARF_DEBUG)
5212     dwarfout_start_new_source_file (filename);
5213 #endif /* DWARF_DEBUGGING_INFO  */
5214 #ifdef DWARF2_DEBUGGING_INFO
5215   if (write_symbols == DWARF2_DEBUG)
5216     dwarf2out_start_source_file (lineno, filename);
5217 #endif /* DWARF2_DEBUGGING_INFO  */
5218 #ifdef SDB_DEBUGGING_INFO
5219   if (write_symbols == SDB_DEBUG)
5220     sdbout_start_new_source_file (filename);
5221 #endif
5222 }
5223
5224 /* Record the resumption of a source file.  LINENO is the line number in
5225    the source file we are returning to.  */
5226
5227 void
5228 debug_end_source_file (lineno)
5229      register unsigned lineno ATTRIBUTE_UNUSED;
5230 {
5231 #ifdef DBX_DEBUGGING_INFO
5232   if (write_symbols == DBX_DEBUG)
5233     dbxout_resume_previous_source_file ();
5234 #endif
5235 #ifdef DWARF_DEBUGGING_INFO
5236   if (debug_info_level == DINFO_LEVEL_VERBOSE
5237       && write_symbols == DWARF_DEBUG)
5238     dwarfout_resume_previous_source_file (lineno);
5239 #endif /* DWARF_DEBUGGING_INFO  */
5240 #ifdef DWARF2_DEBUGGING_INFO
5241   if (write_symbols == DWARF2_DEBUG)
5242     dwarf2out_end_source_file ();
5243 #endif /* DWARF2_DEBUGGING_INFO  */
5244 #ifdef SDB_DEBUGGING_INFO
5245   if (write_symbols == SDB_DEBUG)
5246     sdbout_resume_previous_source_file ();
5247 #endif
5248 }
5249
5250 /* Called from cb_define in c-lex.c.  The `buffer' parameter contains
5251    the tail part of the directive line, i.e. the part which is past the
5252    initial whitespace, #, whitespace, directive-name, whitespace part.  */
5253
5254 void
5255 debug_define (lineno, buffer)
5256      register unsigned lineno ATTRIBUTE_UNUSED;
5257      register const char *buffer ATTRIBUTE_UNUSED;
5258 {
5259 #ifdef DWARF_DEBUGGING_INFO
5260   if (write_symbols == DWARF_DEBUG)
5261     dwarfout_define (lineno, buffer);
5262 #endif /* DWARF_DEBUGGING_INFO  */
5263 #ifdef DWARF2_DEBUGGING_INFO
5264   if (write_symbols == DWARF2_DEBUG)
5265     dwarf2out_define (lineno, buffer);
5266 #endif /* DWARF2_DEBUGGING_INFO  */
5267 }
5268
5269 /* Called from cb_undef in c-lex.c.  The `buffer' parameter contains
5270    the tail part of the directive line, i.e. the part which is past the
5271    initial whitespace, #, whitespace, directive-name, whitespace part.  */
5272
5273 void
5274 debug_undef (lineno, buffer)
5275      register unsigned lineno ATTRIBUTE_UNUSED;
5276      register const char *buffer ATTRIBUTE_UNUSED;
5277 {
5278 #ifdef DWARF_DEBUGGING_INFO
5279   if (write_symbols == DWARF_DEBUG)
5280     dwarfout_undef (lineno, buffer);
5281 #endif /* DWARF_DEBUGGING_INFO  */
5282 #ifdef DWARF2_DEBUGGING_INFO
5283   if (write_symbols == DWARF2_DEBUG)
5284     dwarf2out_undef (lineno, buffer);
5285 #endif /* DWARF2_DEBUGGING_INFO  */
5286 }
5287
5288 /* Returns nonzero if it is appropriate not to emit any debugging
5289    information for BLOCK, because it doesn't contain any instructions.
5290    This may not be the case for blocks containing nested functions, since
5291    we may actually call such a function even though the BLOCK information
5292    is messed up.  */
5293
5294 int
5295 debug_ignore_block (block)
5296      tree block ATTRIBUTE_UNUSED;
5297 {
5298   /* Never delete the BLOCK for the outermost scope
5299      of the function; we can refer to names from
5300      that scope even if the block notes are messed up.  */
5301   if (is_body_block (block))
5302     return 0;
5303
5304 #ifdef DWARF2_DEBUGGING_INFO
5305   if (write_symbols == DWARF2_DEBUG)
5306     return dwarf2out_ignore_block (block);
5307 #endif
5308
5309   return 1;
5310 }