OSDN Git Service

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