OSDN Git Service

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