OSDN Git Service

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