OSDN Git Service

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