OSDN Git Service

Add -Wswitch-enum. Document.
[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   emit_initial_value_sets ();
2487
2488   /* Early return if there were errors.  We can run afoul of our
2489      consistency checks, and there's not really much point in fixing them.
2490      Don't return yet if -Wreturn-type; we need to do cleanup_cfg.  */
2491   if (((rtl_dump_and_exit || flag_syntax_only) && !warn_return_type)
2492       || errorcount || sorrycount)
2493     goto exit_rest_of_compilation;
2494
2495   /* We may have potential sibling or tail recursion sites.  Select one
2496      (of possibly multiple) methods of performing the call.  */
2497   if (flag_optimize_sibling_calls)
2498     {
2499       timevar_push (TV_JUMP);
2500       open_dump_file (DFI_sibling, decl);
2501
2502       optimize_sibling_and_tail_recursive_calls ();
2503
2504       close_dump_file (DFI_sibling, print_rtl, get_insns ());
2505       timevar_pop (TV_JUMP);
2506     }
2507
2508   /* Complete generation of exception handling code.  */
2509   find_exception_handler_labels ();
2510   if (doing_eh (0))
2511     {
2512       timevar_push (TV_JUMP);
2513       open_dump_file (DFI_eh, decl);
2514
2515       finish_eh_generation ();
2516
2517       close_dump_file (DFI_eh, print_rtl, get_insns ());
2518       timevar_pop (TV_JUMP);
2519     }
2520
2521 #ifdef FINALIZE_PIC
2522   /* If we are doing position-independent code generation, now
2523      is the time to output special prologues and epilogues.
2524      We do not want to do this earlier, because it just clutters
2525      up inline functions with meaningless insns.  */
2526   if (flag_pic)
2527     FINALIZE_PIC;
2528 #endif
2529
2530   insns = get_insns ();
2531
2532   /* Copy any shared structure that should not be shared.  */
2533   unshare_all_rtl (current_function_decl, insns);
2534
2535 #ifdef SETJMP_VIA_SAVE_AREA
2536   /* This must be performed before virtual register instantiation.  */
2537   if (current_function_calls_alloca)
2538     optimize_save_area_alloca (insns);
2539 #endif
2540
2541   /* Instantiate all virtual registers.  */
2542   instantiate_virtual_regs (current_function_decl, insns);
2543
2544   open_dump_file (DFI_jump, decl);
2545
2546   /* Always do one jump optimization pass to ensure that JUMP_LABEL fields
2547      are initialized and to compute whether control can drop off the end
2548      of the function.  */
2549
2550   timevar_push (TV_JUMP);
2551   /* Turn NOTE_INSN_EXPECTED_VALUE into REG_BR_PROB.  Do this
2552      before jump optimization switches branch directions.  */
2553   expected_value_to_br_prob ();
2554
2555   reg_scan (insns, max_reg_num (), 0);
2556   rebuild_jump_labels (insns);
2557   find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2558   if (rtl_dump_file)
2559     dump_flow_info (rtl_dump_file);
2560   cleanup_cfg ((optimize ? CLEANUP_EXPENSIVE : 0) | CLEANUP_PRE_LOOP
2561                | (flag_thread_jumps ? CLEANUP_THREADING : 0));
2562
2563   /* CFG is no longer maintained up-to-date.  */
2564   free_bb_for_insn ();
2565   copy_loop_headers (insns);
2566   purge_line_number_notes (insns);
2567
2568   timevar_pop (TV_JUMP);
2569   close_dump_file (DFI_jump, print_rtl, insns);
2570
2571   /* Now is when we stop if -fsyntax-only and -Wreturn-type.  */
2572   if (rtl_dump_and_exit || flag_syntax_only || DECL_DEFER_OUTPUT (decl))
2573     {
2574       goto exit_rest_of_compilation;
2575     }
2576
2577   /* Long term, this should probably move before the jump optimizer too,
2578      but I didn't want to disturb the rtl_dump_and_exit and related
2579      stuff at this time.  */
2580   if (optimize > 0 && flag_ssa)
2581     {
2582       /* Convert to SSA form.  */
2583
2584       timevar_push (TV_TO_SSA);
2585       open_dump_file (DFI_ssa, decl);
2586
2587       find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2588       cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2589       convert_to_ssa ();
2590
2591       close_dump_file (DFI_ssa, print_rtl_with_bb, insns);
2592       timevar_pop (TV_TO_SSA);
2593
2594       /* Perform sparse conditional constant propagation, if requested.  */
2595       if (flag_ssa_ccp)
2596         {
2597           timevar_push (TV_SSA_CCP);
2598           open_dump_file (DFI_ssa_ccp, decl);
2599
2600           ssa_const_prop ();
2601
2602           close_dump_file (DFI_ssa_ccp, print_rtl_with_bb, get_insns ());
2603           timevar_pop (TV_SSA_CCP);
2604         }
2605
2606       /* It would be useful to cleanup the CFG at this point, but block
2607          merging and possibly other transformations might leave a PHI
2608          node in the middle of a basic block, which is a strict no-no.  */
2609
2610       /* The SSA implementation uses basic block numbers in its phi
2611          nodes.  Thus, changing the control-flow graph or the basic
2612          blocks, e.g., calling find_basic_blocks () or cleanup_cfg (),
2613          may cause problems.  */
2614
2615       if (flag_ssa_dce)
2616         {
2617           /* Remove dead code.  */
2618
2619           timevar_push (TV_SSA_DCE);
2620           open_dump_file (DFI_ssa_dce, decl);
2621
2622           insns = get_insns ();
2623           ssa_eliminate_dead_code();
2624
2625           close_dump_file (DFI_ssa_dce, print_rtl_with_bb, insns);
2626           timevar_pop (TV_SSA_DCE);
2627         }
2628
2629       /* Convert from SSA form.  */
2630
2631       timevar_push (TV_FROM_SSA);
2632       open_dump_file (DFI_ussa, decl);
2633
2634       convert_from_ssa ();
2635       /* New registers have been created.  Rescan their usage.  */
2636       reg_scan (insns, max_reg_num (), 1);
2637
2638       close_dump_file (DFI_ussa, print_rtl_with_bb, insns);
2639       timevar_pop (TV_FROM_SSA);
2640
2641       ggc_collect ();
2642       /* CFG is no longer maintained up-to-date.  */
2643       free_bb_for_insn ();
2644     }
2645
2646   timevar_push (TV_JUMP);
2647
2648   if (optimize > 0)
2649     {
2650       open_dump_file (DFI_null, decl);
2651       find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2652       if (rtl_dump_file)
2653         dump_flow_info (rtl_dump_file);
2654       cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2655
2656       /* Try to identify useless null pointer tests and delete them.  */
2657       if (flag_delete_null_pointer_checks)
2658         delete_null_pointer_checks (insns);
2659
2660       timevar_push (TV_IFCVT);
2661       if_convert (0);
2662       timevar_pop (TV_IFCVT);
2663       cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2664       close_dump_file (DFI_null, print_rtl_with_bb, insns);
2665     }
2666
2667   /* Jump optimization, and the removal of NULL pointer checks, may
2668      have reduced the number of instructions substantially.  CSE, and
2669      future passes, allocate arrays whose dimensions involve the
2670      maximum instruction UID, so if we can reduce the maximum UID
2671      we'll save big on memory.  */
2672   renumber_insns (rtl_dump_file);
2673   if (optimize)
2674     compute_bb_for_insn (get_max_uid ());
2675   timevar_pop (TV_JUMP);
2676
2677   close_dump_file (DFI_jump, print_rtl_with_bb, insns);
2678
2679   ggc_collect ();
2680
2681   /* Perform common subexpression elimination.
2682      Nonzero value from `cse_main' means that jumps were simplified
2683      and some code may now be unreachable, so do
2684      jump optimization again.  */
2685
2686   if (optimize > 0)
2687     {
2688       open_dump_file (DFI_cse, decl);
2689       if (rtl_dump_file)
2690         dump_flow_info (rtl_dump_file);
2691       timevar_push (TV_CSE);
2692
2693       reg_scan (insns, max_reg_num (), 1);
2694
2695       tem = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2696       if (tem)
2697         rebuild_jump_labels (insns);
2698       purge_all_dead_edges (0);
2699
2700       delete_trivially_dead_insns (insns, max_reg_num ());
2701
2702       /* If we are not running more CSE passes, then we are no longer
2703          expecting CSE to be run.  But always rerun it in a cheap mode.  */
2704       cse_not_expected = !flag_rerun_cse_after_loop && !flag_gcse;
2705
2706       if (tem || optimize > 1)
2707         cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2708       /* Try to identify useless null pointer tests and delete them.  */
2709       if (flag_delete_null_pointer_checks || flag_thread_jumps)
2710         {
2711           timevar_push (TV_JUMP);
2712
2713           if (flag_delete_null_pointer_checks)
2714             delete_null_pointer_checks (insns);
2715           /* CFG is no longer maintained up-to-date.  */
2716           timevar_pop (TV_JUMP);
2717         }
2718
2719       /* The second pass of jump optimization is likely to have
2720          removed a bunch more instructions.  */
2721       renumber_insns (rtl_dump_file);
2722       compute_bb_for_insn (get_max_uid ());
2723
2724       timevar_pop (TV_CSE);
2725       close_dump_file (DFI_cse, print_rtl_with_bb, insns);
2726     }
2727
2728   open_dump_file (DFI_addressof, decl);
2729
2730   purge_addressof (insns);
2731   if (optimize)
2732     purge_all_dead_edges (0);
2733   reg_scan (insns, max_reg_num (), 1);
2734
2735   close_dump_file (DFI_addressof, print_rtl, insns);
2736
2737   ggc_collect ();
2738
2739   /* Perform global cse.  */
2740
2741   if (optimize > 0 && flag_gcse)
2742     {
2743       int save_csb, save_cfj;
2744       int tem2 = 0;
2745
2746       timevar_push (TV_GCSE);
2747       open_dump_file (DFI_gcse, decl);
2748
2749       cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2750       tem = gcse_main (insns, rtl_dump_file);
2751       rebuild_jump_labels (insns);
2752       delete_trivially_dead_insns (insns, max_reg_num ());
2753
2754       save_csb = flag_cse_skip_blocks;
2755       save_cfj = flag_cse_follow_jumps;
2756       flag_cse_skip_blocks = flag_cse_follow_jumps = 0;
2757
2758       /* If -fexpensive-optimizations, re-run CSE to clean up things done
2759          by gcse.  */
2760       if (flag_expensive_optimizations)
2761         {
2762           timevar_push (TV_CSE);
2763           reg_scan (insns, max_reg_num (), 1);
2764           tem2 = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2765           purge_all_dead_edges (0);
2766           delete_trivially_dead_insns (insns, max_reg_num ());
2767           timevar_pop (TV_CSE);
2768           cse_not_expected = !flag_rerun_cse_after_loop;
2769         }
2770
2771       /* If gcse or cse altered any jumps, rerun jump optimizations to clean
2772          things up.  Then possibly re-run CSE again.  */
2773       while (tem || tem2)
2774         {
2775           tem = tem2 = 0;
2776           timevar_push (TV_JUMP);
2777           rebuild_jump_labels (insns);
2778           cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2779           timevar_pop (TV_JUMP);
2780
2781           if (flag_expensive_optimizations)
2782             {
2783               timevar_push (TV_CSE);
2784               reg_scan (insns, max_reg_num (), 1);
2785               tem2 = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2786               purge_all_dead_edges (0);
2787               delete_trivially_dead_insns (insns, max_reg_num ());
2788               timevar_pop (TV_CSE);
2789             }
2790         }
2791
2792       close_dump_file (DFI_gcse, print_rtl_with_bb, insns);
2793       timevar_pop (TV_GCSE);
2794
2795       ggc_collect ();
2796       flag_cse_skip_blocks = save_csb;
2797       flag_cse_follow_jumps = save_cfj;
2798 #ifdef ENABLE_CHECKING
2799       verify_flow_info ();
2800 #endif
2801     }
2802
2803   /* Move constant computations out of loops.  */
2804
2805   if (optimize > 0 && flag_loop_optimize)
2806     {
2807       timevar_push (TV_LOOP);
2808       delete_dead_jumptables ();
2809       cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2810       open_dump_file (DFI_loop, decl);
2811       /* CFG is no longer maintained up-to-date.  */
2812       free_bb_for_insn ();
2813
2814       if (flag_rerun_loop_opt)
2815         {
2816           cleanup_barriers ();
2817
2818           /* We only want to perform unrolling once.  */
2819
2820           loop_optimize (insns, rtl_dump_file, 0);
2821
2822           /* The first call to loop_optimize makes some instructions
2823              trivially dead.  We delete those instructions now in the
2824              hope that doing so will make the heuristics in loop work
2825              better and possibly speed up compilation.  */
2826           delete_trivially_dead_insns (insns, max_reg_num ());
2827
2828           /* The regscan pass is currently necessary as the alias
2829                   analysis code depends on this information.  */
2830           reg_scan (insns, max_reg_num (), 1);
2831         }
2832       cleanup_barriers ();
2833       loop_optimize (insns, rtl_dump_file,
2834                      (flag_unroll_loops ? LOOP_UNROLL : 0) | LOOP_BCT
2835                      | (flag_prefetch_loop_arrays ? LOOP_PREFETCH : 0));
2836
2837       /* Loop can create trivially dead instructions.  */
2838       delete_trivially_dead_insns (insns, max_reg_num ());
2839       close_dump_file (DFI_loop, print_rtl, insns);
2840       timevar_pop (TV_LOOP);
2841
2842       ggc_collect ();
2843     }
2844
2845   /* Do control and data flow analysis; wrote some of the results to
2846      the dump file.  */
2847
2848   timevar_push (TV_FLOW);
2849   open_dump_file (DFI_cfg, decl);
2850
2851   find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2852   if (rtl_dump_file)
2853     dump_flow_info (rtl_dump_file);
2854   cleanup_cfg ((optimize ? CLEANUP_EXPENSIVE : 0)
2855                | (flag_thread_jumps ? CLEANUP_THREADING : 0));
2856
2857   /* It may make more sense to mark constant functions after dead code is
2858      eliminated by life_analyzis, but we need to do it early, as -fprofile-arcs
2859      may insert code making function non-constant, but we still must consider
2860      it as constant, otherwise -fbranch-probabilities will not read data back.
2861
2862      life_analyzis rarely eliminates modification of external memory.
2863    */
2864   mark_constant_function ();
2865
2866   close_dump_file (DFI_cfg, print_rtl_with_bb, insns);
2867
2868   /* Do branch profiling and static profile estimation passes.  */
2869   if (optimize > 0 || profile_arc_flag || flag_test_coverage
2870       || flag_branch_probabilities)
2871     {
2872       struct loops loops;
2873
2874       timevar_push (TV_BRANCH_PROB);
2875       open_dump_file (DFI_bp, decl);
2876       if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
2877         branch_prob ();
2878
2879       /* Discover and record the loop depth at the head of each basic
2880          block.  The loop infrastructure does the real job for us.  */
2881       flow_loops_find (&loops, LOOP_TREE);
2882
2883       /* Estimate using heuristics if no profiling info is available.  */
2884       if (flag_guess_branch_prob)
2885         estimate_probability (&loops);
2886
2887       if (rtl_dump_file)
2888         flow_loops_dump (&loops, rtl_dump_file, NULL, 0);
2889
2890       flow_loops_free (&loops);
2891       close_dump_file (DFI_bp, print_rtl_with_bb, insns);
2892       timevar_pop (TV_BRANCH_PROB);
2893     }
2894
2895   if (optimize > 0)
2896     {
2897       timevar_push (TV_CSE2);
2898       open_dump_file (DFI_cse2, decl);
2899       if (rtl_dump_file)
2900         dump_flow_info (rtl_dump_file);
2901
2902       if (flag_rerun_cse_after_loop)
2903         {
2904           timevar_push (TV_JUMP);
2905
2906           reg_scan (insns, max_reg_num (), 0);
2907
2908           timevar_push (TV_IFCVT);
2909           cleanup_cfg (CLEANUP_EXPENSIVE);
2910           if_convert (0);
2911           timevar_pop(TV_IFCVT);
2912
2913           timevar_pop (TV_JUMP);
2914           /* CFG is no longer maintained up-to-date.  */
2915           reg_scan (insns, max_reg_num (), 0);
2916           tem = cse_main (insns, max_reg_num (), 1, rtl_dump_file);
2917           purge_all_dead_edges (0);
2918           delete_trivially_dead_insns (insns, max_reg_num ());
2919
2920           if (tem)
2921             {
2922               timevar_push (TV_JUMP);
2923               rebuild_jump_labels (insns);
2924               cleanup_cfg (CLEANUP_EXPENSIVE);
2925               timevar_pop (TV_JUMP);
2926             }
2927         }
2928
2929       close_dump_file (DFI_cse2, print_rtl_with_bb, insns);
2930       timevar_pop (TV_CSE2);
2931
2932       ggc_collect ();
2933     }
2934
2935   cse_not_expected = 1;
2936
2937   open_dump_file (DFI_life, decl);
2938   regclass_init ();
2939
2940   check_function_return_warnings ();
2941
2942 #ifdef ENABLE_CHECKING
2943   verify_flow_info ();
2944 #endif
2945   life_analysis (insns, rtl_dump_file, PROP_FINAL);
2946   if (optimize)
2947     cleanup_cfg ((optimize ? CLEANUP_EXPENSIVE : 0) | CLEANUP_UPDATE_LIFE
2948                  | (flag_thread_jumps ? CLEANUP_THREADING : 0));
2949   timevar_pop (TV_FLOW);
2950
2951   no_new_pseudos = 1;
2952
2953   if (warn_uninitialized || extra_warnings)
2954     {
2955       uninitialized_vars_warning (DECL_INITIAL (decl));
2956       if (extra_warnings)
2957         setjmp_args_warning ();
2958     }
2959
2960   if (optimize)
2961     {
2962       clear_bb_flags ();
2963       if (initialize_uninitialized_subregs ())
2964         {
2965           /* Insns were inserted, so things might look a bit different.  */
2966           insns = get_insns ();
2967           update_life_info_in_dirty_blocks (UPDATE_LIFE_GLOBAL_RM_NOTES,
2968                                             PROP_LOG_LINKS | PROP_REG_INFO
2969                                             | PROP_DEATH_NOTES);
2970         }
2971     }
2972
2973   close_dump_file (DFI_life, print_rtl_with_bb, insns);
2974
2975   ggc_collect ();
2976
2977   /* If -opt, try combining insns through substitution.  */
2978
2979   if (optimize > 0)
2980     {
2981       int rebuild_jump_labels_after_combine = 0;
2982
2983       timevar_push (TV_COMBINE);
2984       open_dump_file (DFI_combine, decl);
2985
2986       rebuild_jump_labels_after_combine
2987         = combine_instructions (insns, max_reg_num ());
2988
2989       /* Combining insns may have turned an indirect jump into a
2990          direct jump.  Rebuid the JUMP_LABEL fields of jumping
2991          instructions.  */
2992       if (rebuild_jump_labels_after_combine)
2993         {
2994           timevar_push (TV_JUMP);
2995           rebuild_jump_labels (insns);
2996           timevar_pop (TV_JUMP);
2997
2998           cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_UPDATE_LIFE);
2999         }
3000
3001       close_dump_file (DFI_combine, print_rtl_with_bb, insns);
3002       timevar_pop (TV_COMBINE);
3003
3004       ggc_collect ();
3005     }
3006
3007   /* Rerun if-conversion, as combine may have simplified things enough to
3008      now meet sequence length restrictions.  */
3009   if (optimize > 0)
3010     {
3011       timevar_push (TV_IFCVT);
3012       open_dump_file (DFI_ce, decl);
3013
3014       no_new_pseudos = 0;
3015       if_convert (1);
3016       no_new_pseudos = 1;
3017
3018       close_dump_file (DFI_ce, print_rtl_with_bb, insns);
3019       timevar_pop (TV_IFCVT);
3020     }
3021
3022   /* Register allocation pre-pass, to reduce number of moves
3023      necessary for two-address machines.  */
3024   if (optimize > 0 && (flag_regmove || flag_expensive_optimizations))
3025     {
3026       timevar_push (TV_REGMOVE);
3027       open_dump_file (DFI_regmove, decl);
3028
3029       regmove_optimize (insns, max_reg_num (), rtl_dump_file);
3030
3031       cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_UPDATE_LIFE);
3032       close_dump_file (DFI_regmove, print_rtl_with_bb, insns);
3033       timevar_pop (TV_REGMOVE);
3034
3035       ggc_collect ();
3036     }
3037
3038   /* Do unconditional splitting before register allocation to allow machine
3039      description to add extra information not needed previously.  */
3040   split_all_insns (1);
3041
3042   /* Any of the several passes since flow1 will have munged register
3043      lifetime data a bit.  */
3044   register_life_up_to_date = 0;
3045
3046 #ifdef OPTIMIZE_MODE_SWITCHING
3047   timevar_push (TV_MODE_SWITCH);
3048
3049   no_new_pseudos = 0;
3050   optimize_mode_switching (NULL);
3051   no_new_pseudos = 1;
3052
3053   timevar_pop (TV_MODE_SWITCH);
3054 #endif
3055
3056   timevar_push (TV_SCHED);
3057
3058 #ifdef INSN_SCHEDULING
3059
3060   /* Print function header into sched dump now
3061      because doing the sched analysis makes some of the dump.  */
3062   if (optimize > 0 && flag_schedule_insns)
3063     {
3064       open_dump_file (DFI_sched, decl);
3065
3066       /* Do control and data sched analysis,
3067          and write some of the results to dump file.  */
3068
3069       schedule_insns (rtl_dump_file);
3070
3071       close_dump_file (DFI_sched, print_rtl_with_bb, insns);
3072
3073       /* Register lifetime information was updated as part of verifying
3074          the schedule.  */
3075       register_life_up_to_date = 1;
3076     }
3077 #endif
3078   timevar_pop (TV_SCHED);
3079
3080   ggc_collect ();
3081
3082   /* Determine if the current function is a leaf before running reload
3083      since this can impact optimizations done by the prologue and
3084      epilogue thus changing register elimination offsets.  */
3085   current_function_is_leaf = leaf_function_p ();
3086
3087   timevar_push (TV_LOCAL_ALLOC);
3088   open_dump_file (DFI_lreg, decl);
3089
3090   /* Allocate pseudo-regs that are used only within 1 basic block.
3091
3092      RUN_JUMP_AFTER_RELOAD records whether or not we need to rerun the
3093      jump optimizer after register allocation and reloading are finished.  */
3094
3095   if (! register_life_up_to_date)
3096     recompute_reg_usage (insns, ! optimize_size);
3097
3098   /* Allocate the reg_renumber array.  */
3099   allocate_reg_info (max_regno, FALSE, TRUE);
3100
3101   /* And the reg_equiv_memory_loc array.  */
3102   reg_equiv_memory_loc = (rtx *) xcalloc (max_regno, sizeof (rtx));
3103
3104   allocate_initial_values (reg_equiv_memory_loc);
3105
3106   regclass (insns, max_reg_num (), rtl_dump_file);
3107   rebuild_label_notes_after_reload = local_alloc ();
3108
3109   timevar_pop (TV_LOCAL_ALLOC);
3110
3111   if (dump_file[DFI_lreg].enabled)
3112     {
3113       timevar_push (TV_DUMP);
3114
3115       dump_flow_info (rtl_dump_file);
3116       dump_local_alloc (rtl_dump_file);
3117
3118       close_dump_file (DFI_lreg, print_rtl_with_bb, insns);
3119       timevar_pop (TV_DUMP);
3120     }
3121
3122   ggc_collect ();
3123
3124   timevar_push (TV_GLOBAL_ALLOC);
3125   open_dump_file (DFI_greg, decl);
3126
3127   /* If optimizing, allocate remaining pseudo-regs.  Do the reload
3128      pass fixing up any insns that are invalid.  */
3129
3130   if (optimize)
3131     failure = global_alloc (rtl_dump_file);
3132   else
3133     {
3134       build_insn_chain (insns);
3135       failure = reload (insns, 0);
3136     }
3137
3138   timevar_pop (TV_GLOBAL_ALLOC);
3139
3140   if (dump_file[DFI_greg].enabled)
3141     {
3142       timevar_push (TV_DUMP);
3143
3144       dump_global_regs (rtl_dump_file);
3145
3146       close_dump_file (DFI_greg, print_rtl_with_bb, insns);
3147       timevar_pop (TV_DUMP);
3148     }
3149
3150   if (failure)
3151     goto exit_rest_of_compilation;
3152
3153   ggc_collect ();
3154
3155   open_dump_file (DFI_postreload, decl);
3156
3157   /* Do a very simple CSE pass over just the hard registers.  */
3158   if (optimize > 0)
3159     {
3160       timevar_push (TV_RELOAD_CSE_REGS);
3161       reload_cse_regs (insns);
3162       timevar_pop (TV_RELOAD_CSE_REGS);
3163     }
3164
3165   /* Register allocation and reloading may have turned an indirect jump into
3166      a direct jump.  If so, we must rebuild the JUMP_LABEL fields of
3167      jumping instructions.  */
3168   if (rebuild_label_notes_after_reload)
3169     {
3170       timevar_push (TV_JUMP);
3171
3172       rebuild_jump_labels (insns);
3173       purge_all_dead_edges (0);
3174
3175       timevar_pop (TV_JUMP);
3176     }
3177
3178   close_dump_file (DFI_postreload, print_rtl_with_bb, insns);
3179
3180   /* Re-create the death notes which were deleted during reload.  */
3181   timevar_push (TV_FLOW2);
3182   open_dump_file (DFI_flow2, decl);
3183
3184 #ifdef ENABLE_CHECKING
3185   verify_flow_info ();
3186 #endif
3187
3188   /* If optimizing, then go ahead and split insns now.  */
3189   if (optimize > 0)
3190     split_all_insns (0);
3191
3192   cleanup_cfg (optimize ? CLEANUP_EXPENSIVE : 0);
3193
3194   /* On some machines, the prologue and epilogue code, or parts thereof,
3195      can be represented as RTL.  Doing so lets us schedule insns between
3196      it and the rest of the code and also allows delayed branch
3197      scheduling to operate in the epilogue.  */
3198   thread_prologue_and_epilogue_insns (insns);
3199
3200   if (optimize)
3201     {
3202       life_analysis (insns, rtl_dump_file, PROP_FINAL);
3203       cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_UPDATE_LIFE
3204                    | (flag_crossjumping ? CLEANUP_CROSSJUMP : 0));
3205
3206       /* This is kind of a heuristic.  We need to run combine_stack_adjustments
3207          even for machines with possibly nonzero RETURN_POPS_ARGS
3208          and ACCUMULATE_OUTGOING_ARGS.  We expect that only ports having
3209          push instructions will have popping returns.  */
3210 #ifndef PUSH_ROUNDING
3211       if (!ACCUMULATE_OUTGOING_ARGS)
3212 #endif
3213         combine_stack_adjustments ();
3214
3215       ggc_collect ();
3216     }
3217
3218   flow2_completed = 1;
3219
3220   close_dump_file (DFI_flow2, print_rtl_with_bb, insns);
3221   timevar_pop (TV_FLOW2);
3222
3223 #ifdef HAVE_peephole2
3224   if (optimize > 0 && flag_peephole2)
3225     {
3226       timevar_push (TV_PEEPHOLE2);
3227       open_dump_file (DFI_peephole2, decl);
3228
3229       peephole2_optimize (rtl_dump_file);
3230
3231       close_dump_file (DFI_peephole2, print_rtl_with_bb, insns);
3232       timevar_pop (TV_PEEPHOLE2);
3233     }
3234 #endif
3235
3236   if (flag_rename_registers || flag_cprop_registers)
3237     {
3238       timevar_push (TV_RENAME_REGISTERS);
3239       open_dump_file (DFI_rnreg, decl);
3240
3241       if (flag_rename_registers)
3242         regrename_optimize ();
3243       if (flag_cprop_registers)
3244         copyprop_hardreg_forward ();
3245
3246       close_dump_file (DFI_rnreg, print_rtl_with_bb, insns);
3247       timevar_pop (TV_RENAME_REGISTERS);
3248     }
3249
3250   if (optimize > 0)
3251     {
3252       timevar_push (TV_IFCVT2);
3253       open_dump_file (DFI_ce2, decl);
3254
3255       if_convert (1);
3256
3257       close_dump_file (DFI_ce2, print_rtl_with_bb, insns);
3258       timevar_pop (TV_IFCVT2);
3259     }
3260 #ifdef STACK_REGS
3261   if (optimize)
3262     split_all_insns (1);
3263 #endif
3264
3265 #ifdef INSN_SCHEDULING
3266   if (optimize > 0 && flag_schedule_insns_after_reload)
3267     {
3268       timevar_push (TV_SCHED2);
3269       open_dump_file (DFI_sched2, decl);
3270
3271       /* Do control and data sched analysis again,
3272          and write some more of the results to dump file.  */
3273
3274       split_all_insns (1);
3275
3276       schedule_insns (rtl_dump_file);
3277
3278       close_dump_file (DFI_sched2, print_rtl_with_bb, insns);
3279       timevar_pop (TV_SCHED2);
3280
3281       ggc_collect ();
3282     }
3283 #endif
3284
3285 #ifdef LEAF_REGISTERS
3286   current_function_uses_only_leaf_regs
3287     = optimize > 0 && only_leaf_regs_used () && leaf_function_p ();
3288 #endif
3289
3290 #ifdef STACK_REGS
3291   timevar_push (TV_REG_STACK);
3292   open_dump_file (DFI_stack, decl);
3293
3294   reg_to_stack (insns, rtl_dump_file);
3295
3296   close_dump_file (DFI_stack, print_rtl_with_bb, insns);
3297   timevar_pop (TV_REG_STACK);
3298
3299   ggc_collect ();
3300 #endif
3301   if (optimize > 0)
3302     {
3303       timevar_push (TV_REORDER_BLOCKS);
3304       open_dump_file (DFI_bbro, decl);
3305
3306       /* Last attempt to optimize CFG, as scheduling, peepholing
3307          and insn splitting possibly introduced more crossjumping
3308          oppurtuntities.  */
3309       cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_POST_REGSTACK
3310                    | (flag_crossjumping ? CLEANUP_CROSSJUMP : 0));
3311       if (flag_reorder_blocks)
3312         {
3313           reorder_basic_blocks ();
3314           cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_POST_REGSTACK);
3315         }
3316
3317       close_dump_file (DFI_bbro, print_rtl_with_bb, insns);
3318       timevar_pop (TV_REORDER_BLOCKS);
3319     }
3320   compute_alignments ();
3321
3322   /* CFG is no longer maintained up-to-date.  */
3323   free_bb_for_insn ();
3324
3325   /* If a machine dependent reorganization is needed, call it.  */
3326 #ifdef MACHINE_DEPENDENT_REORG
3327   timevar_push (TV_MACH_DEP);
3328   open_dump_file (DFI_mach, decl);
3329
3330   MACHINE_DEPENDENT_REORG (insns);
3331
3332   close_dump_file (DFI_mach, print_rtl, insns);
3333   timevar_pop (TV_MACH_DEP);
3334
3335   ggc_collect ();
3336 #endif
3337
3338   purge_line_number_notes (insns);
3339   cleanup_barriers ();
3340
3341   /* If a scheduling pass for delayed branches is to be done,
3342      call the scheduling code.  */
3343
3344 #ifdef DELAY_SLOTS
3345   if (optimize > 0 && flag_delayed_branch)
3346     {
3347       timevar_push (TV_DBR_SCHED);
3348       open_dump_file (DFI_dbr, decl);
3349
3350       dbr_schedule (insns, rtl_dump_file);
3351
3352       close_dump_file (DFI_dbr, print_rtl, insns);
3353       timevar_pop (TV_DBR_SCHED);
3354
3355       ggc_collect ();
3356     }
3357 #endif
3358
3359 #if defined (HAVE_ATTR_length) && !defined (STACK_REGS)
3360   timevar_push (TV_SHORTEN_BRANCH);
3361   split_all_insns_noflow ();
3362   timevar_pop (TV_SHORTEN_BRANCH);
3363 #endif
3364
3365   convert_to_eh_region_ranges ();
3366
3367   /* Shorten branches.  */
3368   timevar_push (TV_SHORTEN_BRANCH);
3369   shorten_branches (get_insns ());
3370   timevar_pop (TV_SHORTEN_BRANCH);
3371
3372   current_function_nothrow = nothrow_function_p ();
3373   if (current_function_nothrow)
3374     /* Now we know that this can't throw; set the flag for the benefit
3375        of other functions later in this translation unit.  */
3376     TREE_NOTHROW (current_function_decl) = 1;
3377
3378   /* Now turn the rtl into assembler code.  */
3379
3380   timevar_push (TV_FINAL);
3381   {
3382     rtx x;
3383     const char *fnname;
3384
3385     /* Get the function's name, as described by its RTL.  This may be
3386        different from the DECL_NAME name used in the source file.  */
3387
3388     x = DECL_RTL (decl);
3389     if (GET_CODE (x) != MEM)
3390       abort ();
3391     x = XEXP (x, 0);
3392     if (GET_CODE (x) != SYMBOL_REF)
3393       abort ();
3394     fnname = XSTR (x, 0);
3395
3396     assemble_start_function (decl, fnname);
3397     final_start_function (insns, asm_out_file, optimize);
3398     final (insns, asm_out_file, optimize, 0);
3399     final_end_function ();
3400
3401 #ifdef IA64_UNWIND_INFO
3402     /* ??? The IA-64 ".handlerdata" directive must be issued before
3403        the ".endp" directive that closes the procedure descriptor.  */
3404     output_function_exception_table ();
3405 #endif
3406
3407     assemble_end_function (decl, fnname);
3408
3409 #ifndef IA64_UNWIND_INFO
3410     /* Otherwise, it feels unclean to switch sections in the middle.  */
3411     output_function_exception_table ();
3412 #endif
3413
3414     if (! quiet_flag)
3415       fflush (asm_out_file);
3416
3417     /* Release all memory allocated by flow.  */
3418     free_basic_block_vars (0);
3419
3420     /* Release all memory held by regsets now.  */
3421     regset_release_memory ();
3422   }
3423   timevar_pop (TV_FINAL);
3424
3425   ggc_collect ();
3426
3427   /* Write DBX symbols if requested.  */
3428
3429   /* Note that for those inline functions where we don't initially
3430      know for certain that we will be generating an out-of-line copy,
3431      the first invocation of this routine (rest_of_compilation) will
3432      skip over this code by doing a `goto exit_rest_of_compilation;'.
3433      Later on, finish_compilation will call rest_of_compilation again
3434      for those inline functions that need to have out-of-line copies
3435      generated.  During that call, we *will* be routed past here.  */
3436
3437   timevar_push (TV_SYMOUT);
3438   (*debug_hooks->function_decl) (decl);
3439   timevar_pop (TV_SYMOUT);
3440
3441  exit_rest_of_compilation:
3442
3443   /* In case the function was not output,
3444      don't leave any temporary anonymous types
3445      queued up for sdb output.  */
3446 #ifdef SDB_DEBUGGING_INFO
3447   if (write_symbols == SDB_DEBUG)
3448     sdbout_types (NULL_TREE);
3449 #endif
3450
3451   reload_completed = 0;
3452   flow2_completed = 0;
3453   no_new_pseudos = 0;
3454
3455   timevar_push (TV_FINAL);
3456
3457   /* Clear out the insn_length contents now that they are no
3458      longer valid.  */
3459   init_insn_lengths ();
3460
3461   /* Clear out the real_constant_chain before some of the rtx's
3462      it runs through become garbage.  */
3463   clear_const_double_mem ();
3464
3465   /* Show no temporary slots allocated.  */
3466   init_temp_slots ();
3467
3468   free_basic_block_vars (0);
3469   free_bb_for_insn ();
3470
3471   timevar_pop (TV_FINAL);
3472
3473   /* Make sure volatile mem refs aren't considered valid operands for
3474      arithmetic insns.  We must call this here if this is a nested inline
3475      function, since the above code leaves us in the init_recog state
3476      (from final.c), and the function context push/pop code does not
3477      save/restore volatile_ok.
3478
3479      ??? Maybe it isn't necessary for expand_start_function to call this
3480      anymore if we do it here?  */
3481
3482   init_recog_no_volatile ();
3483
3484   /* We're done with this function.  Free up memory if we can.  */
3485   free_after_parsing (cfun);
3486   if (! DECL_DEFER_OUTPUT (decl))
3487     {
3488       free_after_compilation (cfun);
3489
3490       /* Clear integrate.c's pointer to the cfun structure we just
3491          destroyed.  */
3492       DECL_SAVED_INSNS (decl) = 0;
3493     }
3494   cfun = 0;
3495
3496   ggc_collect ();
3497
3498   timevar_pop (TV_REST_OF_COMPILATION);
3499 }
3500 \f
3501 static void
3502 display_help ()
3503 {
3504   int undoc;
3505   unsigned long i;
3506   const char *lang;
3507
3508   printf (_("  -ffixed-<register>      Mark <register> as being unavailable to the compiler\n"));
3509   printf (_("  -fcall-used-<register>  Mark <register> as being corrupted by function calls\n"));
3510   printf (_("  -fcall-saved-<register> Mark <register> as being preserved across functions\n"));
3511   printf (_("  -finline-limit=<number> Limits the size of inlined functions to <number>\n"));
3512   printf (_("  -fmessage-length=<number> Limits diagnostics messages lengths to <number> characters per line.  0 suppresses line-wrapping\n"));
3513   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"));
3514
3515   for (i = ARRAY_SIZE (f_options); i--;)
3516     {
3517       const char *description = f_options[i].description;
3518
3519       if (description != NULL && * description != 0)
3520         printf ("  -f%-21s %s\n",
3521                 f_options[i].string, _(description));
3522     }
3523
3524   printf (_("  -O[number]              Set optimization level to [number]\n"));
3525   printf (_("  -Os                     Optimize for space rather than speed\n"));
3526   for (i = LAST_PARAM; i--;)
3527     {
3528       const char *description = compiler_params[i].help;
3529       const int length = 21-strlen(compiler_params[i].option);
3530
3531       if (description != NULL && * description != 0)
3532         printf ("  --param %s=<value>%.*s%s\n",
3533                 compiler_params[i].option,
3534                 length > 0 ? length : 1, "                     ",
3535                 _(description));
3536     }
3537   printf (_("  -pedantic               Issue warnings needed by strict compliance to ISO C\n"));
3538   printf (_("  -pedantic-errors        Like -pedantic except that errors are produced\n"));
3539   printf (_("  -w                      Suppress warnings\n"));
3540   printf (_("  -W                      Enable extra warnings\n"));
3541
3542   for (i = ARRAY_SIZE (W_options); i--;)
3543     {
3544       const char *description = W_options[i].description;
3545
3546       if (description != NULL && * description != 0)
3547         printf ("  -W%-21s %s\n",
3548                 W_options[i].string, _(description));
3549     }
3550
3551   printf (_("  -Wunused                Enable unused warnings\n"));
3552   printf (_("  -Wlarger-than-<number>  Warn if an object is larger than <number> bytes\n"));
3553   printf (_("  -p                      Enable function profiling\n"));
3554 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER)
3555   printf (_("  -a                      Enable block profiling \n"));
3556 #endif
3557 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER) || defined FUNCTION_BLOCK_PROFILER_EXIT
3558   printf (_("  -ax                     Enable jump profiling \n"));
3559 #endif
3560   printf (_("  -o <file>               Place output into <file> \n"));
3561   printf (_("\
3562   -G <number>             Put global and static data smaller than <number>\n\
3563                           bytes into a special section (on some targets)\n"));
3564
3565   for (i = ARRAY_SIZE (debug_args); i--;)
3566     {
3567       if (debug_args[i].description != NULL)
3568         printf ("  -g%-21s %s\n",
3569                 debug_args[i].arg, _(debug_args[i].description));
3570     }
3571
3572   printf (_("  -aux-info <file>        Emit declaration info into <file>\n"));
3573   printf (_("  -quiet                  Do not display functions compiled or elapsed time\n"));
3574   printf (_("  -version                Display the compiler's version\n"));
3575   printf (_("  -d[letters]             Enable dumps from specific passes of the compiler\n"));
3576   printf (_("  -dumpbase <file>        Base name to be used for dumps from specific passes\n"));
3577 #if defined INSN_SCHEDULING
3578   printf (_("  -fsched-verbose=<number> Set the verbosity level of the scheduler\n"));
3579 #endif
3580   printf (_("  --help                  Display this information\n"));
3581
3582   undoc = 0;
3583   lang  = "language";
3584
3585   /* Display descriptions of language specific options.
3586      If there is no description, note that there is an undocumented option.
3587      If the description is empty, do not display anything.  (This allows
3588      options to be deliberately undocumented, for whatever reason).
3589      If the option string is missing, then this is a marker, indicating
3590      that the description string is in fact the name of a language, whose
3591      language specific options are to follow.  */
3592
3593   if (ARRAY_SIZE (documented_lang_options) > 1)
3594     {
3595       printf (_("\nLanguage specific options:\n"));
3596
3597       for (i = 0; i < ARRAY_SIZE (documented_lang_options); i++)
3598         {
3599           const char *description = documented_lang_options[i].description;
3600           const char *option      = documented_lang_options[i].option;
3601
3602           if (description == NULL)
3603             {
3604               undoc = 1;
3605
3606               if (extra_warnings)
3607                 printf (_("  %-23.23s [undocumented]\n"), option);
3608             }
3609           else if (*description == 0)
3610             continue;
3611           else if (option == NULL)
3612             {
3613               if (undoc)
3614                 printf
3615                   (_("\nThere are undocumented %s specific options as well.\n"),
3616                         lang);
3617               undoc = 0;
3618
3619               printf (_("\n Options for %s:\n"), description);
3620
3621               lang = description;
3622             }
3623           else
3624             printf ("  %-23.23s %s\n", option, _(description));
3625         }
3626     }
3627
3628   if (undoc)
3629     printf (_("\nThere are undocumented %s specific options as well.\n"),
3630             lang);
3631
3632   display_target_options ();
3633 }
3634
3635 static void
3636 display_target_options ()
3637 {
3638   int undoc, i;
3639   static bool displayed = false;
3640
3641   /* Avoid double printing for --help --target-help.  */
3642   if (displayed)
3643     return;
3644   displayed = true;
3645
3646   if (ARRAY_SIZE (target_switches) > 1
3647 #ifdef TARGET_OPTIONS
3648       || ARRAY_SIZE (target_options) > 1
3649 #endif
3650       )
3651     {
3652       int doc = 0;
3653
3654       undoc = 0;
3655
3656       printf (_("\nTarget specific options:\n"));
3657
3658       for (i = ARRAY_SIZE (target_switches); i--;)
3659         {
3660           const char *option      = target_switches[i].name;
3661           const char *description = target_switches[i].description;
3662
3663           if (option == NULL || *option == 0)
3664             continue;
3665           else if (description == NULL)
3666             {
3667               undoc = 1;
3668
3669               if (extra_warnings)
3670                 printf (_("  -m%-23.23s [undocumented]\n"), option);
3671             }
3672           else if (* description != 0)
3673             doc += printf ("  -m%-23.23s %s\n", option, _(description));
3674         }
3675
3676 #ifdef TARGET_OPTIONS
3677       for (i = ARRAY_SIZE (target_options); i--;)
3678         {
3679           const char *option      = target_options[i].prefix;
3680           const char *description = target_options[i].description;
3681
3682           if (option == NULL || *option == 0)
3683             continue;
3684           else if (description == NULL)
3685             {
3686               undoc = 1;
3687
3688               if (extra_warnings)
3689                 printf (_("  -m%-23.23s [undocumented]\n"), option);
3690             }
3691           else if (* description != 0)
3692             doc += printf ("  -m%-23.23s %s\n", option, _(description));
3693         }
3694 #endif
3695       if (undoc)
3696         {
3697           if (doc)
3698             printf (_("\nThere are undocumented target specific options as well.\n"));
3699           else
3700             printf (_("  They exist, but they are not documented.\n"));
3701         }
3702     }
3703 }
3704 \f
3705 /* Parse a -d... command line switch.  */
3706
3707 static void
3708 decode_d_option (arg)
3709      const char *arg;
3710 {
3711   int i, c, matched;
3712
3713   while (*arg)
3714     switch (c = *arg++)
3715       {
3716       case 'a':
3717         for (i = 0; i < (int) DFI_MAX; ++i)
3718           dump_file[i].enabled = 1;
3719         break;
3720       case 'A':
3721         flag_debug_asm = 1;
3722         break;
3723       case 'p':
3724         flag_print_asm_name = 1;
3725         break;
3726       case 'P':
3727         flag_dump_rtl_in_asm = 1;
3728         flag_print_asm_name = 1;
3729         break;
3730       case 'v':
3731         graph_dump_format = vcg;
3732         break;
3733       case 'x':
3734         rtl_dump_and_exit = 1;
3735         break;
3736       case 'y':
3737         (*lang_hooks.set_yydebug) (1);
3738         break;
3739       case 'D': /* These are handled by the preprocessor.  */
3740       case 'I':
3741         break;
3742
3743       default:
3744         matched = 0;
3745         for (i = 0; i < (int) DFI_MAX; ++i)
3746           if (c == dump_file[i].debug_switch)
3747             {
3748               dump_file[i].enabled = 1;
3749               matched = 1;
3750             }
3751
3752         if (! matched)
3753           warning ("unrecognized gcc debugging option: %c", c);
3754         break;
3755       }
3756 }
3757
3758 /* Parse a -f... command line switch.  ARG is the value after the -f.
3759    It is safe to access 'ARG - 2' to generate the full switch name.
3760    Return the number of strings consumed.  */
3761
3762 static int
3763 decode_f_option (arg)
3764      const char *arg;
3765 {
3766   int j;
3767   const char *option_value = NULL;
3768
3769   /* Search for the option in the table of binary f options.  */
3770   for (j = ARRAY_SIZE (f_options); j--;)
3771     {
3772       if (!strcmp (arg, f_options[j].string))
3773         {
3774           *f_options[j].variable = f_options[j].on_value;
3775           return 1;
3776         }
3777
3778       if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
3779           && ! strcmp (arg + 3, f_options[j].string))
3780         {
3781           *f_options[j].variable = ! f_options[j].on_value;
3782           return 1;
3783         }
3784     }
3785
3786   if (!strcmp (arg, "fast-math"))
3787     set_fast_math_flags ();
3788   else if (!strcmp (arg, "no-fast-math"))
3789     set_no_fast_math_flags ();
3790   else if ((option_value = skip_leading_substring (arg, "inline-limit-"))
3791            || (option_value = skip_leading_substring (arg, "inline-limit=")))
3792     {
3793       int val =
3794         read_integral_parameter (option_value, arg - 2,
3795                                  MAX_INLINE_INSNS);
3796       set_param_value ("max-inline-insns", val);
3797     }
3798 #ifdef INSN_SCHEDULING
3799   else if ((option_value = skip_leading_substring (arg, "sched-verbose=")))
3800     fix_sched_param ("verbose", option_value);
3801 #endif
3802   else if ((option_value = skip_leading_substring (arg, "fixed-")))
3803     fix_register (option_value, 1, 1);
3804   else if ((option_value = skip_leading_substring (arg, "call-used-")))
3805     fix_register (option_value, 0, 1);
3806   else if ((option_value = skip_leading_substring (arg, "call-saved-")))
3807     fix_register (option_value, 0, 0);
3808   else if ((option_value = skip_leading_substring (arg, "align-loops=")))
3809     align_loops = read_integral_parameter (option_value, arg - 2, align_loops);
3810   else if ((option_value = skip_leading_substring (arg, "align-functions=")))
3811     align_functions
3812       = read_integral_parameter (option_value, arg - 2, align_functions);
3813   else if ((option_value = skip_leading_substring (arg, "align-jumps=")))
3814     align_jumps = read_integral_parameter (option_value, arg - 2, align_jumps);
3815   else if ((option_value = skip_leading_substring (arg, "align-labels=")))
3816     align_labels
3817       = read_integral_parameter (option_value, arg - 2, align_labels);
3818   else if ((option_value
3819             = skip_leading_substring (arg, "stack-limit-register=")))
3820     {
3821       int reg = decode_reg_name (option_value);
3822       if (reg < 0)
3823         error ("unrecognized register name `%s'", option_value);
3824       else
3825         stack_limit_rtx = gen_rtx_REG (Pmode, reg);
3826     }
3827   else if ((option_value
3828             = skip_leading_substring (arg, "stack-limit-symbol=")))
3829     {
3830       const char *nm;
3831       nm = ggc_strdup (option_value);
3832       stack_limit_rtx = gen_rtx_SYMBOL_REF (Pmode, nm);
3833     }
3834   else if ((option_value
3835             = skip_leading_substring (arg, "message-length=")))
3836     output_set_maximum_length
3837       (&global_dc->buffer, read_integral_parameter
3838        (option_value, arg - 2, diagnostic_line_cutoff (global_dc)));
3839   else if ((option_value
3840             = skip_leading_substring (arg, "diagnostics-show-location=")))
3841     {
3842       if (!strcmp (option_value, "once"))
3843         diagnostic_prefixing_rule (global_dc) = DIAGNOSTICS_SHOW_PREFIX_ONCE;
3844       else if (!strcmp (option_value, "every-line"))
3845         diagnostic_prefixing_rule (global_dc)
3846           = DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE;
3847       else
3848         error ("unrecognized option `%s'", arg - 2);
3849     }
3850   else if (!strcmp (arg, "no-stack-limit"))
3851     stack_limit_rtx = NULL_RTX;
3852   else if (!strcmp (arg, "preprocessed"))
3853     /* Recognise this switch but do nothing.  This prevents warnings
3854        about an unrecognized switch if cpplib has not been linked in.  */
3855     ;
3856   else
3857     return 0;
3858
3859   return 1;
3860 }
3861
3862 /* Parse a -W... command line switch.  ARG is the value after the -W.
3863    It is safe to access 'ARG - 2' to generate the full switch name.
3864    Return the number of strings consumed.  */
3865
3866 static int
3867 decode_W_option (arg)
3868      const char *arg;
3869 {
3870   const char *option_value = NULL;
3871   int j;
3872
3873   /* Search for the option in the table of binary W options.  */
3874
3875   for (j = ARRAY_SIZE (W_options); j--;)
3876     {
3877       if (!strcmp (arg, W_options[j].string))
3878         {
3879           *W_options[j].variable = W_options[j].on_value;
3880           return 1;
3881         }
3882
3883       if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
3884           && ! strcmp (arg + 3, W_options[j].string))
3885         {
3886           *W_options[j].variable = ! W_options[j].on_value;
3887           return 1;
3888         }
3889     }
3890
3891   if ((option_value = skip_leading_substring (arg, "id-clash-")))
3892     warning ("-Wid-clash-LEN is no longer supported");
3893   else if ((option_value = skip_leading_substring (arg, "larger-than-")))
3894     {
3895       larger_than_size = read_integral_parameter (option_value, arg - 2, -1);
3896
3897       warn_larger_than = larger_than_size != -1;
3898     }
3899   else if (!strcmp (arg, "unused"))
3900     {
3901       set_Wunused (1);
3902     }
3903   else if (!strcmp (arg, "no-unused"))
3904     {
3905       set_Wunused (0);
3906     }
3907   else
3908     return 0;
3909
3910   return 1;
3911 }
3912
3913 /* Parse a -g... command line switch.  ARG is the value after the -g.
3914    It is safe to access 'ARG - 2' to generate the full switch name.
3915    Return the number of strings consumed.  */
3916
3917 static int
3918 decode_g_option (arg)
3919      const char *arg;
3920 {
3921   static unsigned level=0;
3922   /* A lot of code assumes write_symbols == NO_DEBUG if the
3923      debugging level is 0 (thus -gstabs1 -gstabs0 would lose track
3924      of what debugging type has been selected).  This records the
3925      selected type.  It is an error to specify more than one
3926      debugging type.  */
3927   static enum debug_info_type selected_debug_type = NO_DEBUG;
3928   /* Non-zero if debugging format has been explicitly set.
3929      -g and -ggdb don't explicitly set the debugging format so
3930      -gdwarf -g3 is equivalent to -gdwarf3.  */
3931   static int type_explicitly_set_p = 0;
3932   /* Indexed by enum debug_info_type.  */
3933   static const char *const debug_type_names[] =
3934   {
3935     "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff", "vms"
3936   };
3937
3938   /* The maximum admissible debug level value.  */
3939   static const unsigned max_debug_level = 3;
3940
3941   /* Look up ARG in the table.  */
3942   for (da = debug_args; da->arg; da++)
3943     {
3944       const int da_len = strlen (da->arg);
3945
3946       if (da_len == 0 || ! strncmp (arg, da->arg, da_len))
3947         {
3948           enum debug_info_type type = da->debug_type;
3949           const char *p = arg + da_len;
3950
3951           if (*p && ! ISDIGIT (*p))
3952             continue;
3953
3954           /* A debug flag without a level defaults to level 2.
3955              Note we do not want to call read_integral_parameter
3956              for that case since it will call atoi which
3957              will return zero.
3958
3959              ??? We may want to generalize the interface to
3960              read_integral_parameter to better handle this case
3961              if this case shows up often.  */
3962           if (*p)
3963             level = read_integral_parameter (p, 0, max_debug_level + 1);
3964           else
3965             level = (level == 0) ? 2 : level;
3966
3967           if (da_len > 1 && *p && !strncmp (arg, "dwarf", da_len))
3968             {
3969               error ("use -gdwarf -g%d for DWARF v1, level %d",
3970                      level, level);
3971               if (level == 2)
3972                 error ("use -gdwarf-2   for DWARF v2");
3973             }
3974
3975           if (level > max_debug_level)
3976             {
3977               warning ("\
3978 ignoring option `%s' due to invalid debug level specification",
3979                        arg - 2);
3980               level = debug_info_level;
3981             }
3982
3983           if (type == NO_DEBUG)
3984             {
3985               type = PREFERRED_DEBUGGING_TYPE;
3986
3987               if (da_len > 1 && strncmp (arg, "gdb", da_len) == 0)
3988                 {
3989 #if defined (DWARF2_DEBUGGING_INFO) && !defined (LINKER_DOES_NOT_WORK_WITH_DWARF2)
3990                   type = DWARF2_DEBUG;
3991 #else
3992 #ifdef DBX_DEBUGGING_INFO
3993                   type = DBX_DEBUG;
3994 #endif
3995 #endif
3996                 }
3997             }
3998
3999           if (type == NO_DEBUG)
4000             warning ("`%s': unknown or unsupported -g option", arg - 2);
4001
4002           /* Does it conflict with an already selected type?  */
4003           if (type_explicitly_set_p
4004               /* -g/-ggdb don't conflict with anything.  */
4005               && da->debug_type != NO_DEBUG
4006               && type != selected_debug_type)
4007             warning ("`%s' ignored, conflicts with `-g%s'",
4008                      arg - 2, debug_type_names[(int) selected_debug_type]);
4009           else
4010             {
4011               /* If the format has already been set, -g/-ggdb
4012                  only change the debug level.  */
4013               if (type_explicitly_set_p && da->debug_type == NO_DEBUG)
4014                 /* Don't change debugging type.  */
4015                 ;
4016               else
4017                 {
4018                   selected_debug_type = type;
4019                   type_explicitly_set_p = da->debug_type != NO_DEBUG;
4020                 }
4021
4022               write_symbols = (level == 0
4023                                ? NO_DEBUG
4024                                : selected_debug_type);
4025               use_gnu_debug_info_extensions = da->use_extensions_p;
4026               debug_info_level = (enum debug_info_level) level;
4027             }
4028
4029           break;
4030         }
4031     }
4032
4033   if (! da->arg)
4034     return 0;
4035
4036   return 1;
4037 }
4038
4039 /* Decode the first argument in the argv as a language-independent option.
4040    Return the number of strings consumed.  */
4041
4042 static unsigned int
4043 independent_decode_option (argc, argv)
4044      int argc;
4045      char **argv;
4046 {
4047   char *arg = argv[0];
4048
4049   if (arg[0] != '-' || arg[1] == 0)
4050     {
4051       if (arg[0] == '+')
4052         return 0;
4053
4054       filename = arg;
4055
4056       return 1;
4057     }
4058
4059   arg++;
4060
4061   if (!strcmp (arg, "-help"))
4062     {
4063       display_help ();
4064       exit_after_options = 1;
4065     }
4066
4067   if (!strcmp (arg, "-target-help"))
4068     {
4069       display_target_options ();
4070       exit_after_options = 1;
4071     }
4072
4073   if (!strcmp (arg, "-version"))
4074     {
4075       print_version (stderr, "");
4076       exit_after_options = 1;
4077     }
4078
4079   /* Handle '--param <name>=<value>'.  */
4080   if (strcmp (arg, "-param") == 0)
4081     {
4082       char *equal;
4083
4084       if (argc == 1)
4085         {
4086           error ("-param option missing argument");
4087           return 1;
4088         }
4089
4090       /* Get the '<name>=<value>' parameter.  */
4091       arg = argv[1];
4092       /* Look for the `='.  */
4093       equal = strchr (arg, '=');
4094       if (!equal)
4095         error ("invalid --param option: %s", arg);
4096       else
4097         {
4098           int val;
4099
4100           /* Zero out the `=' sign so that we get two separate strings.  */
4101           *equal = '\0';
4102           /* Figure out what value is specified.  */
4103           val = read_integral_parameter (equal + 1, NULL, INVALID_PARAM_VAL);
4104           if (val != INVALID_PARAM_VAL)
4105             set_param_value (arg, val);
4106           else
4107             error ("invalid parameter value `%s'", equal + 1);
4108         }
4109
4110       return 2;
4111     }
4112
4113   if (*arg == 'Y')
4114     arg++;
4115
4116   switch (*arg)
4117     {
4118     default:
4119       return 0;
4120
4121     case 'O':
4122       /* Already been treated in main (). Do nothing.  */
4123       break;
4124
4125     case 'm':
4126       set_target_switch (arg + 1);
4127       break;
4128
4129     case 'f':
4130       return decode_f_option (arg + 1);
4131
4132     case 'g':
4133       return decode_g_option (arg + 1);
4134
4135     case 'd':
4136       if (!strcmp (arg, "dumpbase"))
4137         {
4138           if (argc == 1)
4139             return 0;
4140
4141           dump_base_name = argv[1];
4142           return 2;
4143         }
4144       else
4145         decode_d_option (arg + 1);
4146       break;
4147
4148     case 'p':
4149       if (!strcmp (arg, "pedantic"))
4150         pedantic = 1;
4151       else if (!strcmp (arg, "pedantic-errors"))
4152         flag_pedantic_errors = pedantic = 1;
4153       else if (arg[1] == 0)
4154         profile_flag = 1;
4155       else
4156         return 0;
4157       break;
4158
4159     case 'q':
4160       if (!strcmp (arg, "quiet"))
4161         quiet_flag = 1;
4162       else
4163         return 0;
4164       break;
4165
4166     case 'v':
4167       if (!strcmp (arg, "version"))
4168         version_flag = 1;
4169       else
4170         return 0;
4171       break;
4172
4173     case 'w':
4174       if (arg[1] == 0)
4175         inhibit_warnings = 1;
4176       else
4177         return 0;
4178       break;
4179
4180     case 'W':
4181       if (arg[1] == 0)
4182         {
4183           extra_warnings = 1;
4184           /* We save the value of warn_uninitialized, since if they put
4185              -Wuninitialized on the command line, we need to generate a
4186              warning about not using it without also specifying -O.  */
4187           if (warn_uninitialized != 1)
4188             warn_uninitialized = 2;
4189         }
4190       else
4191         return decode_W_option (arg + 1);
4192       break;
4193
4194     case 'a':
4195       if (!strncmp (arg, "aux-info", 8))
4196         {
4197           if (arg[8] == '\0')
4198             {
4199               if (argc == 1)
4200                 return 0;
4201
4202               aux_info_file_name = argv[1];
4203               flag_gen_aux_info = 1;
4204               return 2;
4205             }
4206           else if (arg[8] == '=')
4207             {
4208               aux_info_file_name = arg + 9;
4209               flag_gen_aux_info = 1;
4210             }
4211           else
4212             return 0;
4213         }
4214       else
4215         return 0;
4216       break;
4217
4218     case 'o':
4219       if (arg[1] == 0)
4220         {
4221           if (argc == 1)
4222             return 0;
4223
4224           asm_file_name = argv[1];
4225           return 2;
4226         }
4227       return 0;
4228
4229     case 'G':
4230       {
4231         int g_switch_val;
4232         int return_val;
4233
4234         if (arg[1] == 0)
4235           {
4236             if (argc == 1)
4237               return 0;
4238
4239             g_switch_val = read_integral_parameter (argv[1], 0, -1);
4240             return_val = 2;
4241           }
4242         else
4243           {
4244             g_switch_val = read_integral_parameter (arg + 1, 0, -1);
4245             return_val = 1;
4246           }
4247
4248         if (g_switch_val == -1)
4249           return_val = 0;
4250         else
4251           {
4252             g_switch_set = TRUE;
4253             g_switch_value = g_switch_val;
4254           }
4255
4256         return return_val;
4257       }
4258     }
4259
4260   return 1;
4261 }
4262 \f
4263 /* Decode -m switches.  */
4264 /* Decode the switch -mNAME.  */
4265
4266 static void
4267 set_target_switch (name)
4268      const char *name;
4269 {
4270   size_t j;
4271   int valid_target_option = 0;
4272
4273   for (j = 0; j < ARRAY_SIZE (target_switches); j++)
4274     if (!strcmp (target_switches[j].name, name))
4275       {
4276         if (target_switches[j].value < 0)
4277           target_flags &= ~-target_switches[j].value;
4278         else
4279           target_flags |= target_switches[j].value;
4280         valid_target_option = 1;
4281       }
4282
4283 #ifdef TARGET_OPTIONS
4284   if (!valid_target_option)
4285     for (j = 0; j < ARRAY_SIZE (target_options); j++)
4286       {
4287         int len = strlen (target_options[j].prefix);
4288         if (!strncmp (target_options[j].prefix, name, len))
4289           {
4290             *target_options[j].variable = name + len;
4291             valid_target_option = 1;
4292           }
4293       }
4294 #endif
4295
4296   if (!valid_target_option)
4297     error ("invalid option `%s'", name);
4298 }
4299 \f
4300 /* Print version information to FILE.
4301    Each line begins with INDENT (for the case where FILE is the
4302    assembler output file).  */
4303
4304 static void
4305 print_version (file, indent)
4306      FILE *file;
4307      const char *indent;
4308 {
4309 #ifndef __VERSION__
4310 #define __VERSION__ "[?]"
4311 #endif
4312   fnotice (file,
4313 #ifdef __GNUC__
4314            "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
4315 #else
4316            "%s%s%s version %s (%s) compiled by CC.\n"
4317 #endif
4318            , indent, *indent != 0 ? " " : "",
4319            lang_hooks.name, version_string, TARGET_NAME,
4320            indent, __VERSION__);
4321 }
4322
4323 /* Print an option value and return the adjusted position in the line.
4324    ??? We don't handle error returns from fprintf (disk full); presumably
4325    other code will catch a disk full though.  */
4326
4327 static int
4328 print_single_switch (file, pos, max, indent, sep, term, type, name)
4329      FILE *file;
4330      int pos, max;
4331      const char *indent, *sep, *term, *type, *name;
4332 {
4333   /* The ultrix fprintf returns 0 on success, so compute the result we want
4334      here since we need it for the following test.  */
4335   int len = strlen (sep) + strlen (type) + strlen (name);
4336
4337   if (pos != 0
4338       && pos + len > max)
4339     {
4340       fprintf (file, "%s", term);
4341       pos = 0;
4342     }
4343   if (pos == 0)
4344     {
4345       fprintf (file, "%s", indent);
4346       pos = strlen (indent);
4347     }
4348   fprintf (file, "%s%s%s", sep, type, name);
4349   pos += len;
4350   return pos;
4351 }
4352
4353 /* Print active target switches to FILE.
4354    POS is the current cursor position and MAX is the size of a "line".
4355    Each line begins with INDENT and ends with TERM.
4356    Each switch is separated from the next by SEP.  */
4357
4358 static void
4359 print_switch_values (file, pos, max, indent, sep, term)
4360      FILE *file;
4361      int pos, max;
4362      const char *indent, *sep, *term;
4363 {
4364   size_t j;
4365   char **p;
4366
4367   /* Print the options as passed.  */
4368
4369   pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
4370                              _("options passed: "), "");
4371
4372   for (p = &save_argv[1]; *p != NULL; p++)
4373     if (**p == '-')
4374       {
4375         /* Ignore these.  */
4376         if (strcmp (*p, "-o") == 0)
4377           {
4378             if (p[1] != NULL)
4379               p++;
4380             continue;
4381           }
4382         if (strcmp (*p, "-quiet") == 0)
4383           continue;
4384         if (strcmp (*p, "-version") == 0)
4385           continue;
4386         if ((*p)[1] == 'd')
4387           continue;
4388
4389         pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
4390       }
4391   if (pos > 0)
4392     fprintf (file, "%s", term);
4393
4394   /* Print the -f and -m options that have been enabled.
4395      We don't handle language specific options but printing argv
4396      should suffice.  */
4397
4398   pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
4399                              _("options enabled: "), "");
4400
4401   for (j = 0; j < ARRAY_SIZE (f_options); j++)
4402     if (*f_options[j].variable == f_options[j].on_value)
4403       pos = print_single_switch (file, pos, max, indent, sep, term,
4404                                  "-f", f_options[j].string);
4405
4406   /* Print target specific options.  */
4407
4408   for (j = 0; j < ARRAY_SIZE (target_switches); j++)
4409     if (target_switches[j].name[0] != '\0'
4410         && target_switches[j].value > 0
4411         && ((target_switches[j].value & target_flags)
4412             == target_switches[j].value))
4413       {
4414         pos = print_single_switch (file, pos, max, indent, sep, term,
4415                                    "-m", target_switches[j].name);
4416       }
4417
4418 #ifdef TARGET_OPTIONS
4419   for (j = 0; j < ARRAY_SIZE (target_options); j++)
4420     if (*target_options[j].variable != NULL)
4421       {
4422         char prefix[256];
4423         sprintf (prefix, "-m%s", target_options[j].prefix);
4424         pos = print_single_switch (file, pos, max, indent, sep, term,
4425                                    prefix, *target_options[j].variable);
4426       }
4427 #endif
4428
4429   fprintf (file, "%s", term);
4430 }
4431 \f
4432 /* Open assembly code output file.  Do this even if -fsyntax-only is
4433    on, because then the driver will have provided the name of a
4434    temporary file or bit bucket for us.  NAME is the file specified on
4435    the command line, possibly NULL.  */
4436 static void
4437 init_asm_output (name)
4438      const char *name;
4439 {
4440   if (name == NULL && asm_file_name == 0)
4441     asm_out_file = stdout;
4442   else
4443     {
4444       if (asm_file_name == 0)
4445         {
4446           int len = strlen (dump_base_name);
4447           char *dumpname = (char *) xmalloc (len + 6);
4448           memcpy (dumpname, dump_base_name, len + 1);
4449           strip_off_ending (dumpname, len);
4450           strcat (dumpname, ".s");
4451           asm_file_name = dumpname;
4452         }
4453       if (!strcmp (asm_file_name, "-"))
4454         asm_out_file = stdout;
4455       else
4456         asm_out_file = fopen (asm_file_name, "w");
4457       if (asm_out_file == 0)
4458         fatal_io_error ("can't open %s for writing", asm_file_name);
4459     }
4460
4461 #ifdef IO_BUFFER_SIZE
4462   setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
4463            _IOFBF, IO_BUFFER_SIZE);
4464 #endif
4465
4466   if (!flag_syntax_only)
4467     {
4468 #ifdef ASM_FILE_START
4469       ASM_FILE_START (asm_out_file);
4470 #endif
4471
4472 #ifdef ASM_COMMENT_START
4473       if (flag_verbose_asm)
4474         {
4475           /* Print the list of options in effect.  */
4476           print_version (asm_out_file, ASM_COMMENT_START);
4477           print_switch_values (asm_out_file, 0, MAX_LINE,
4478                                ASM_COMMENT_START, " ", "\n");
4479           /* Add a blank line here so it appears in assembler output but not
4480              screen output.  */
4481           fprintf (asm_out_file, "\n");
4482         }
4483 #endif
4484     }
4485 }
4486 \f
4487 /* Initialization of the front end environment, before command line
4488    options are parsed.  Signal handlers, internationalization etc.
4489    ARGV0 is main's argv[0].  */
4490 static void
4491 general_init (argv0)
4492      char *argv0;
4493 {
4494   char *p;
4495
4496   p = argv0 + strlen (argv0);
4497   while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
4498     --p;
4499   progname = p;
4500
4501   xmalloc_set_program_name (progname);
4502
4503   gcc_init_libintl ();
4504
4505   /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages.  */
4506 #ifdef SIGSEGV
4507   signal (SIGSEGV, crash_signal);
4508 #endif
4509 #ifdef SIGILL
4510   signal (SIGILL, crash_signal);
4511 #endif
4512 #ifdef SIGBUS
4513   signal (SIGBUS, crash_signal);
4514 #endif
4515 #ifdef SIGABRT
4516   signal (SIGABRT, crash_signal);
4517 #endif
4518 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
4519   signal (SIGIOT, crash_signal);
4520 #endif
4521 #ifdef SIGFPE
4522   signal (SIGFPE, crash_signal);
4523 #endif
4524
4525   /* Initialize the diagnostics reporting machinery, so option parsing
4526      can give warnings and errors.  */
4527   diagnostic_initialize (global_dc);
4528 }
4529 \f
4530 /* Parse command line options and set default flag values, called
4531    after language-independent option-independent initialization.  Do
4532    minimal options processing.  Outputting diagnostics is OK, but GC
4533    and identifier hashtables etc. are not initialized yet.  */
4534 static void
4535 parse_options_and_default_flags (argc, argv)
4536      int argc;
4537      char **argv;
4538 {
4539   int i;
4540
4541   /* Save in case md file wants to emit args as a comment.  */
4542   save_argc = argc;
4543   save_argv = argv;
4544
4545   /* Initialize register usage now so switches may override.  */
4546   init_reg_sets ();
4547
4548   /* Register the language-independent parameters.  */
4549   add_params (lang_independent_params, LAST_PARAM);
4550
4551   /* Perform language-specific options initialization.  */
4552   (*lang_hooks.init_options) ();
4553
4554   /* Scan to see what optimization level has been specified.  That will
4555      determine the default value of many flags.  */
4556   for (i = 1; i < argc; i++)
4557     {
4558       if (!strcmp (argv[i], "-O"))
4559         {
4560           optimize = 1;
4561           optimize_size = 0;
4562         }
4563       else if (argv[i][0] == '-' && argv[i][1] == 'O')
4564         {
4565           /* Handle -Os, -O2, -O3, -O69, ...  */
4566           char *p = &argv[i][2];
4567
4568           if ((p[0] == 's') && (p[1] == 0))
4569             {
4570               optimize_size = 1;
4571
4572               /* Optimizing for size forces optimize to be 2.  */
4573               optimize = 2;
4574             }
4575           else
4576             {
4577               const int optimize_val = read_integral_parameter (p, p - 2, -1);
4578               if (optimize_val != -1)
4579                 {
4580                   optimize = optimize_val;
4581                   optimize_size = 0;
4582                 }
4583             }
4584         }
4585     }
4586
4587   if (!optimize)
4588     {
4589       flag_merge_constants = 0;
4590     }
4591
4592   if (optimize >= 1)
4593     {
4594       flag_defer_pop = 1;
4595       flag_thread_jumps = 1;
4596 #ifdef DELAY_SLOTS
4597       flag_delayed_branch = 1;
4598 #endif
4599 #ifdef CAN_DEBUG_WITHOUT_FP
4600       flag_omit_frame_pointer = 1;
4601 #endif
4602       flag_guess_branch_prob = 1;
4603       flag_cprop_registers = 1;
4604       flag_loop_optimize = 1;
4605       flag_crossjumping = 1;
4606     }
4607
4608   if (optimize >= 2)
4609     {
4610       flag_optimize_sibling_calls = 1;
4611       flag_cse_follow_jumps = 1;
4612       flag_cse_skip_blocks = 1;
4613       flag_gcse = 1;
4614       flag_expensive_optimizations = 1;
4615       flag_strength_reduce = 1;
4616       flag_rerun_cse_after_loop = 1;
4617       flag_rerun_loop_opt = 1;
4618       flag_caller_saves = 1;
4619       flag_force_mem = 1;
4620       flag_peephole2 = 1;
4621 #ifdef INSN_SCHEDULING
4622       flag_schedule_insns = 1;
4623       flag_schedule_insns_after_reload = 1;
4624 #endif
4625       flag_regmove = 1;
4626       flag_strict_aliasing = 1;
4627       flag_delete_null_pointer_checks = 1;
4628       flag_reorder_blocks = 1;
4629     }
4630
4631   if (optimize >= 3)
4632     {
4633       flag_inline_functions = 1;
4634       flag_rename_registers = 1;
4635     }
4636
4637   if (optimize < 2 || optimize_size)
4638     {
4639       align_loops = 1;
4640       align_jumps = 1;
4641       align_labels = 1;
4642       align_functions = 1;
4643     }
4644
4645   /* Initialize whether `char' is signed.  */
4646   flag_signed_char = DEFAULT_SIGNED_CHAR;
4647 #ifdef DEFAULT_SHORT_ENUMS
4648   /* Initialize how much space enums occupy, by default.  */
4649   flag_short_enums = DEFAULT_SHORT_ENUMS;
4650 #endif
4651
4652   /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
4653      modify it.  */
4654   target_flags = 0;
4655   set_target_switch ("");
4656
4657   /* Unwind tables are always present in an ABI-conformant IA-64
4658      object file, so the default should be ON.  */
4659 #ifdef IA64_UNWIND_INFO
4660   flag_unwind_tables = IA64_UNWIND_INFO;
4661 #endif
4662
4663 #ifdef OPTIMIZATION_OPTIONS
4664   /* Allow default optimizations to be specified on a per-machine basis.  */
4665   OPTIMIZATION_OPTIONS (optimize, optimize_size);
4666 #endif
4667
4668   /* Perform normal command line switch decoding.  */
4669   for (i = 1; i < argc;)
4670     {
4671       int lang_processed;
4672       int indep_processed;
4673
4674       /* Give the language a chance to decode the option for itself.  */
4675       lang_processed = (*lang_hooks.decode_option) (argc - i, argv + i);
4676
4677       if (lang_processed >= 0)
4678         /* Now see if the option also has a language independent meaning.
4679            Some options are both language specific and language independent,
4680            eg --help.  */
4681         indep_processed = independent_decode_option (argc - i, argv + i);
4682       else
4683         {
4684           lang_processed = -lang_processed;
4685           indep_processed = 0;
4686         }
4687
4688       if (lang_processed || indep_processed)
4689         i += MAX (lang_processed, indep_processed);
4690       else
4691         {
4692           const char *option = NULL;
4693           const char *lang = NULL;
4694           unsigned int j;
4695
4696           /* It is possible that the command line switch is not valid for the
4697              current language, but it is valid for another language.  In order
4698              to be compatible with previous versions of the compiler (which
4699              did not issue an error message in this case) we check for this
4700              possibility here.  If we do find a match, then if extra_warnings
4701              is set we generate a warning message, otherwise we will just
4702              ignore the option.  */
4703           for (j = 0; j < ARRAY_SIZE (documented_lang_options); j++)
4704             {
4705               option = documented_lang_options[j].option;
4706
4707               if (option == NULL)
4708                 lang = documented_lang_options[j].description;
4709               else if (! strncmp (argv[i], option, strlen (option)))
4710                 break;
4711             }
4712
4713           if (j != ARRAY_SIZE (documented_lang_options))
4714             {
4715               if (extra_warnings)
4716                 {
4717                   warning ("ignoring command line option '%s'", argv[i]);
4718                   if (lang)
4719                     warning
4720                       ("(it is valid for %s but not the selected language)",
4721                        lang);
4722                 }
4723             }
4724           else if (argv[i][0] == '-' && argv[i][1] == 'g')
4725             warning ("`%s': unknown or unsupported -g option", &argv[i][2]);
4726           else
4727             error ("unrecognized option `%s'", argv[i]);
4728
4729           i++;
4730         }
4731     }
4732
4733   /* Set flag_no_inline before the post_options () hook.  The C front
4734      ends use it to determine tree inlining defaults.  FIXME: such
4735      code should be lang-independent when all front ends use tree
4736      inlining, in which case it, and this condition, should be moved
4737      to the top of process_options() instead.  */
4738   if (optimize == 0)
4739     {
4740       /* Inlining does not work if not optimizing,
4741          so force it not to be done.  */
4742       flag_no_inline = 1;
4743       warn_inline = 0;
4744
4745       /* The c_decode_option function and decode_option hook set
4746          this to `2' if -Wall is used, so we can avoid giving out
4747          lots of errors for people who don't realize what -Wall does.  */
4748       if (warn_uninitialized == 1)
4749         warning ("-Wuninitialized is not supported without -O");
4750     }
4751
4752   /* All command line options have been parsed; allow the front end to
4753      perform consistency checks, etc.  */
4754   (*lang_hooks.post_options) ();
4755 }
4756 \f
4757 /* Process the options that have been parsed.  */
4758 static void
4759 process_options ()
4760 {
4761 #ifdef OVERRIDE_OPTIONS
4762   /* Some machines may reject certain combinations of options.  */
4763   OVERRIDE_OPTIONS;
4764 #endif
4765
4766   /* Set up the align_*_log variables, defaulting them to 1 if they
4767      were still unset.  */
4768   if (align_loops <= 0) align_loops = 1;
4769   if (align_loops_max_skip > align_loops || !align_loops)
4770     align_loops_max_skip = align_loops - 1;
4771   align_loops_log = floor_log2 (align_loops * 2 - 1);
4772   if (align_jumps <= 0) align_jumps = 1;
4773   if (align_jumps_max_skip > align_jumps || !align_jumps)
4774     align_jumps_max_skip = align_jumps - 1;
4775   align_jumps_log = floor_log2 (align_jumps * 2 - 1);
4776   if (align_labels <= 0) align_labels = 1;
4777   align_labels_log = floor_log2 (align_labels * 2 - 1);
4778   if (align_labels_max_skip > align_labels || !align_labels)
4779     align_labels_max_skip = align_labels - 1;
4780   if (align_functions <= 0) align_functions = 1;
4781   align_functions_log = floor_log2 (align_functions * 2 - 1);
4782
4783   /* Unrolling all loops implies that standard loop unrolling must also
4784      be done.  */
4785   if (flag_unroll_all_loops)
4786     flag_unroll_loops = 1;
4787   /* Loop unrolling requires that strength_reduction be on also.  Silently
4788      turn on strength reduction here if it isn't already on.  Also, the loop
4789      unrolling code assumes that cse will be run after loop, so that must
4790      be turned on also.  */
4791   if (flag_unroll_loops)
4792     {
4793       flag_strength_reduce = 1;
4794       flag_rerun_cse_after_loop = 1;
4795     }
4796
4797   if (flag_non_call_exceptions)
4798     flag_asynchronous_unwind_tables = 1;
4799   if (flag_asynchronous_unwind_tables)
4800     flag_unwind_tables = 1;
4801
4802   /* Warn about options that are not supported on this machine.  */
4803 #ifndef INSN_SCHEDULING
4804   if (flag_schedule_insns || flag_schedule_insns_after_reload)
4805     warning ("instruction scheduling not supported on this target machine");
4806 #endif
4807 #ifndef DELAY_SLOTS
4808   if (flag_delayed_branch)
4809     warning ("this target machine does not have delayed branches");
4810 #endif
4811
4812   /* Some operating systems do not allow profiling without a frame
4813      pointer.  */
4814   if (!TARGET_ALLOWS_PROFILING_WITHOUT_FRAME_POINTER
4815       && profile_flag
4816       && flag_omit_frame_pointer)
4817     {
4818       error ("profiling does not work without a frame pointer");
4819       flag_omit_frame_pointer = 0;
4820     }
4821     
4822   user_label_prefix = USER_LABEL_PREFIX;
4823   if (flag_leading_underscore != -1)
4824     {
4825       /* If the default prefix is more complicated than "" or "_",
4826          issue a warning and ignore this option.  */
4827       if (user_label_prefix[0] == 0 ||
4828           (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
4829         {
4830           user_label_prefix = flag_leading_underscore ? "_" : "";
4831         }
4832       else
4833         warning ("-f%sleading-underscore not supported on this target machine",
4834                  flag_leading_underscore ? "" : "no-");
4835     }
4836
4837   /* If we are in verbose mode, write out the version and maybe all the
4838      option flags in use.  */
4839   if (version_flag)
4840     {
4841       print_version (stderr, "");
4842       if (! quiet_flag)
4843         print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
4844     }
4845
4846   if (! quiet_flag)
4847     time_report = 1;
4848
4849   if (flag_syntax_only)
4850     {
4851       write_symbols = NO_DEBUG;
4852       profile_flag = 0;
4853     }
4854
4855   /* Now we know write_symbols, set up the debug hooks based on it.
4856      By default we do nothing for debug output.  */
4857 #if defined(DBX_DEBUGGING_INFO)
4858   if (write_symbols == DBX_DEBUG)
4859     debug_hooks = &dbx_debug_hooks;
4860 #endif
4861 #if defined(XCOFF_DEBUGGING_INFO)
4862   if (write_symbols == XCOFF_DEBUG)
4863     debug_hooks = &xcoff_debug_hooks;
4864 #endif
4865 #ifdef SDB_DEBUGGING_INFO
4866   if (write_symbols == SDB_DEBUG)
4867     debug_hooks = &sdb_debug_hooks;
4868 #endif
4869 #ifdef DWARF_DEBUGGING_INFO
4870   if (write_symbols == DWARF_DEBUG)
4871     debug_hooks = &dwarf_debug_hooks;
4872 #endif
4873 #ifdef DWARF2_DEBUGGING_INFO
4874   if (write_symbols == DWARF2_DEBUG)
4875     debug_hooks = &dwarf2_debug_hooks;
4876 #endif
4877 #ifdef VMS_DEBUGGING_INFO
4878   if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
4879     debug_hooks = &vmsdbg_debug_hooks;
4880 #endif
4881
4882   /* If auxiliary info generation is desired, open the output file.
4883      This goes in the same directory as the source file--unlike
4884      all the other output files.  */
4885   if (flag_gen_aux_info)
4886     {
4887       aux_info_file = fopen (aux_info_file_name, "w");
4888       if (aux_info_file == 0)
4889         fatal_io_error ("can't open %s", aux_info_file_name);
4890     }
4891
4892   if (! targetm.have_named_sections)
4893     {
4894       if (flag_function_sections)
4895         {
4896           warning ("-ffunction-sections not supported for this target");
4897           flag_function_sections = 0;
4898         }
4899       if (flag_data_sections)
4900         {
4901           warning ("-fdata-sections not supported for this target");
4902           flag_data_sections = 0;
4903         }
4904     }
4905
4906   if (flag_function_sections && profile_flag)
4907     {
4908       warning ("-ffunction-sections disabled; it makes profiling impossible");
4909       flag_function_sections = 0;
4910     }
4911
4912 #ifndef HAVE_prefetch
4913   if (flag_prefetch_loop_arrays)
4914     {
4915       warning ("-fprefetch-loop-arrays not supported for this target");
4916       flag_prefetch_loop_arrays = 0;
4917     }
4918 #else
4919   if (flag_prefetch_loop_arrays && !HAVE_prefetch)
4920     {
4921       warning ("-fprefetch-loop-arrays not supported for this target (try -march switches)");
4922       flag_prefetch_loop_arrays = 0;
4923     }
4924 #endif
4925
4926   /* This combination of options isn't handled for i386 targets and doesn't
4927      make much sense anyway, so don't allow it.  */
4928   if (flag_prefetch_loop_arrays && optimize_size)
4929     {
4930       warning ("-fprefetch-loop-arrays is not supported with -Os");
4931       flag_prefetch_loop_arrays = 0;
4932     }
4933
4934 #ifndef OBJECT_FORMAT_ELF
4935   if (flag_function_sections && write_symbols != NO_DEBUG)
4936     warning ("-ffunction-sections may affect debugging on some targets");
4937 #endif
4938 }
4939 \f
4940 /* Language-independent initialization, before language-dependent
4941    initialization.  */
4942 static void
4943 lang_independent_init ()
4944 {
4945   lang_expand_expr = (lang_expand_expr_t) do_abort;
4946
4947   /* Initialize the garbage-collector, and string pools.  */
4948   init_ggc ();
4949   ggc_add_rtx_root (&stack_limit_rtx, 1);
4950   ggc_add_tree_root (&current_function_decl, 1);
4951   ggc_add_tree_root (&current_function_func_begin_label, 1);
4952
4953   init_stringpool ();
4954   init_obstacks ();
4955
4956   init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
4957                   || debug_info_level == DINFO_LEVEL_VERBOSE
4958 #ifdef VMS_DEBUGGING_INFO
4959                     /* Enable line number info for traceback */
4960                     || debug_info_level > DINFO_LEVEL_NONE
4961 #endif
4962                     || flag_test_coverage
4963                     || warn_notreached);
4964   init_regs ();
4965   init_alias_once ();
4966   init_stmt ();
4967   init_loop ();
4968   init_reload ();
4969   init_function_once ();
4970   init_stor_layout_once ();
4971   init_varasm_once ();
4972   init_EXPR_INSN_LIST_cache ();
4973
4974   /* The following initialization functions need to generate rtl, so
4975      provide a dummy function context for them.  */
4976   init_dummy_function_start ();
4977   init_expmed ();
4978   init_expr_once ();
4979   if (flag_caller_saves)
4980     init_caller_save ();
4981   expand_dummy_function_end ();
4982 }
4983 \f
4984 /* Language-dependent initialization.  Returns non-zero on success.  */
4985 static int
4986 lang_dependent_init (name)
4987      const char *name;
4988 {
4989   if (dump_base_name == 0)
4990     dump_base_name = name ? name : "gccdump";
4991
4992   /* Front-end initialization.  This hook can assume that GC,
4993      identifier hashes etc. are set up, but debug initialization is
4994      not done yet.  This routine must return the original filename
4995      (e.g. foo.i -> foo.c) so can correctly initialize debug output.  */
4996   name = (*lang_hooks.init) (name);
4997   if (name == NULL)
4998     return 0;
4999
5000   /* Is this duplication necessary?  */
5001   name = ggc_strdup (name);
5002   main_input_filename = input_filename = name;
5003   init_asm_output (name);
5004
5005   /* These create various _DECL nodes, so need to be called after the
5006      front end is initialized.  */
5007   init_eh ();
5008   init_optabs ();
5009
5010   /* Put an entry on the input file stack for the main input file.  */
5011   push_srcloc (input_filename, 0);
5012
5013   /* If dbx symbol table desired, initialize writing it and output the
5014      predefined types.  */
5015   timevar_push (TV_SYMOUT);
5016
5017 #ifdef DWARF2_UNWIND_INFO
5018   if (dwarf2out_do_frame ())
5019     dwarf2out_frame_init ();
5020 #endif
5021
5022   /* Now we have the correct original filename, we can initialize
5023      debug output.  */
5024   (*debug_hooks->init) (name);
5025
5026   timevar_pop (TV_SYMOUT);
5027
5028   return 1;
5029 }
5030 \f
5031 /* Clean up: close opened files, etc.  */
5032
5033 static void
5034 finalize ()
5035 {
5036   /* Close the dump files.  */
5037   if (flag_gen_aux_info)
5038     {
5039       fclose (aux_info_file);
5040       if (errorcount)
5041         unlink (aux_info_file_name);
5042     }
5043
5044   /* Close non-debugging input and output files.  Take special care to note
5045      whether fclose returns an error, since the pages might still be on the
5046      buffer chain while the file is open.  */
5047
5048   if (asm_out_file)
5049     {
5050       if (ferror (asm_out_file) != 0)
5051         fatal_io_error ("error writing to %s", asm_file_name);
5052       if (fclose (asm_out_file) != 0)
5053         fatal_io_error ("error closing %s", asm_file_name);
5054     }
5055
5056   /* Do whatever is necessary to finish printing the graphs.  */
5057   if (graph_dump_format != no_graph)
5058     {
5059       int i;
5060
5061       for (i = 0; i < (int) DFI_MAX; ++i)
5062         if (dump_file[i].initialized && dump_file[i].graph_dump_p)
5063           {
5064             char seq[16];
5065             char *suffix;
5066
5067             sprintf (seq, DUMPFILE_FORMAT, i);
5068             suffix = concat (seq, dump_file[i].extension, NULL);
5069             finish_graph_dump_file (dump_base_name, suffix);
5070             free (suffix);
5071           }
5072     }
5073
5074   if (mem_report)
5075     {
5076       ggc_print_statistics ();
5077       stringpool_statistics ();
5078       dump_tree_statistics ();
5079     }
5080
5081   /* Free up memory for the benefit of leak detectors.  */
5082   free_reg_info ();
5083
5084   /* Language-specific end of compilation actions.  */
5085   (*lang_hooks.finish) ();
5086 }
5087 \f
5088 /* Initialize the compiler, and compile the input file.  */
5089 static void
5090 do_compile ()
5091 {
5092   /* The bulk of command line switch processing.  */
5093   process_options ();
5094
5095   /* We cannot start timing until after options are processed since that
5096      says if we run timers or not.  */
5097   init_timevar ();
5098   timevar_start (TV_TOTAL);
5099
5100   /* Language-independent initialization.  Also sets up GC, identifier
5101      hashes etc.  */
5102   lang_independent_init ();
5103
5104   /* Language-dependent initialization.  Returns true on success.  */
5105   if (lang_dependent_init (filename))
5106     compile_file ();
5107
5108   finalize ();
5109
5110   /* Stop timing and print the times.  */
5111   timevar_stop (TV_TOTAL);
5112   timevar_print (stderr);
5113 }
5114 \f
5115 /* Entry point of cc1, cc1plus, jc1, f771, etc.
5116    Decode command args, then call compile_file.
5117    Exit code is FATAL_EXIT_CODE if can't open files or if there were
5118    any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
5119
5120    It is not safe to call this function more than once.  */
5121
5122 int
5123 toplev_main (argc, argv)
5124      int argc;
5125      char **argv;
5126 {
5127   hex_init ();
5128
5129   /* Initialization of GCC's environment, and diagnostics.  */
5130   general_init (argv [0]);
5131
5132   /* Parse the options and do minimal processing; basically just
5133      enough to default flags appropriately.  */
5134   parse_options_and_default_flags (argc, argv);
5135
5136   /* Exit early if we can (e.g. -help).  */
5137   if (!exit_after_options)
5138     do_compile ();
5139
5140   if (errorcount || sorrycount)
5141     return (FATAL_EXIT_CODE);
5142
5143   return (SUCCESS_EXIT_CODE);
5144 }