OSDN Git Service

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