OSDN Git Service

* except.c (convert_from_eh_region_ranges_1): Smash REG_EH_REGION
[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 }
1441 target_options[] = TARGET_OPTIONS;
1442 #endif
1443 \f
1444 /* Options controlling warnings.  */
1445
1446 /* Don't print warning messages.  -w.  */
1447
1448 int inhibit_warnings = 0;
1449
1450 /* Don't suppress warnings from system headers.  -Wsystem-headers.  */
1451
1452 int warn_system_headers = 0;
1453
1454 /* Print various extra warnings.  -W/-Wextra.  */
1455
1456 int extra_warnings = 0;
1457
1458 /* Treat warnings as errors.  -Werror.  */
1459
1460 int warnings_are_errors = 0;
1461
1462 /* Nonzero to warn about unused variables, functions et.al.  */
1463
1464 int warn_unused_function;
1465 int warn_unused_label;
1466 int warn_unused_parameter;
1467 int warn_unused_variable;
1468 int warn_unused_value;
1469
1470 /* Nonzero to warn about code which is never reached.  */
1471
1472 int warn_notreached;
1473
1474 /* Nonzero to warn about variables used before they are initialized.  */
1475
1476 int warn_uninitialized;
1477
1478 /* Nonzero means warn about all declarations which shadow others.  */
1479
1480 int warn_shadow;
1481
1482 /* Warn if a switch on an enum, that does not have a default case,
1483    fails to have a case for every enum value.  */
1484
1485 int warn_switch;
1486
1487 /* Warn if a switch does not have a default case.  */
1488
1489 int warn_switch_default;
1490
1491 /* Warn if a switch on an enum fails to have a case for every enum
1492    value (regardless of the presence or otherwise of a default case).  */
1493
1494 int warn_switch_enum;
1495
1496 /* Nonzero means warn about function definitions that default the return type
1497    or that use a null return and have a return-type other than void.  */
1498
1499 int warn_return_type;
1500
1501 /* Nonzero means warn about pointer casts that increase the required
1502    alignment of the target type (and might therefore lead to a crash
1503    due to a misaligned access).  */
1504
1505 int warn_cast_align;
1506
1507 /* Nonzero means warn about any objects definitions whose size is larger
1508    than N bytes.  Also want about function definitions whose returned
1509    values are larger than N bytes. The value N is in `larger_than_size'.  */
1510
1511 int warn_larger_than;
1512 HOST_WIDE_INT larger_than_size;
1513
1514 /* Nonzero means warn if inline function is too large.  */
1515
1516 int warn_inline;
1517
1518 /* Warn if a function returns an aggregate,
1519    since there are often incompatible calling conventions for doing this.  */
1520
1521 int warn_aggregate_return;
1522
1523 /* Warn if packed attribute on struct is unnecessary and inefficient.  */
1524
1525 int warn_packed;
1526
1527 /* Warn when gcc pads a structure to an alignment boundary.  */
1528
1529 int warn_padded;
1530
1531 /* Warn when an optimization pass is disabled.  */
1532
1533 int warn_disabled_optimization;
1534
1535 /* Warn about functions which might be candidates for attribute noreturn.  */
1536
1537 int warn_missing_noreturn;
1538
1539 /* Nonzero means warn about uses of __attribute__((deprecated))
1540    declarations.  */
1541
1542 int warn_deprecated_decl = 1;
1543
1544 /* Nonzero means warn about constructs which might not be
1545    strict-aliasing safe.  */
1546
1547 int warn_strict_aliasing;
1548
1549 /* Like f_options, but for -W.  */
1550
1551 static const lang_independent_options W_options[] =
1552 {
1553   {"unused-function", &warn_unused_function, 1,
1554    N_("Warn when a function is unused") },
1555   {"unused-label", &warn_unused_label, 1,
1556    N_("Warn when a label is unused") },
1557   {"unused-parameter", &warn_unused_parameter, 1,
1558    N_("Warn when a function parameter is unused") },
1559   {"unused-variable", &warn_unused_variable, 1,
1560    N_("Warn when a variable is unused") },
1561   {"unused-value", &warn_unused_value, 1,
1562    N_("Warn when an expression value is unused") },
1563   {"system-headers", &warn_system_headers, 1,
1564    N_("Do not suppress warnings from system headers") },
1565   {"error", &warnings_are_errors, 1,
1566    N_("Treat all warnings as errors") },
1567   {"shadow", &warn_shadow, 1,
1568    N_("Warn when one local variable shadows another") },
1569   {"switch", &warn_switch, 1,
1570    N_("Warn about enumerated switches, with no default, missing a case") },
1571   {"switch-default", &warn_switch_default, 1,
1572    N_("Warn about enumerated switches missing a default case") },
1573   {"switch-enum", &warn_switch_enum, 1,
1574    N_("Warn about all enumerated switches missing a specific case") },
1575   {"aggregate-return", &warn_aggregate_return, 1,
1576    N_("Warn about returning structures, unions or arrays") },
1577   {"cast-align", &warn_cast_align, 1,
1578    N_("Warn about pointer casts which increase alignment") },
1579   {"unreachable-code", &warn_notreached, 1,
1580    N_("Warn about code that will never be executed") },
1581   {"uninitialized", &warn_uninitialized, 1,
1582    N_("Warn about uninitialized automatic variables") },
1583   {"inline", &warn_inline, 1,
1584    N_("Warn when an inlined function cannot be inlined") },
1585   {"packed", &warn_packed, 1,
1586    N_("Warn when the packed attribute has no effect on struct layout") },
1587   {"padded", &warn_padded, 1,
1588    N_("Warn when padding is required to align struct members") },
1589   {"disabled-optimization", &warn_disabled_optimization, 1,
1590    N_("Warn when an optimization pass is disabled") },
1591   {"deprecated-declarations", &warn_deprecated_decl, 1,
1592    N_("Warn about uses of __attribute__((deprecated)) declarations") },
1593   {"extra", &extra_warnings, 1,
1594    N_("Print extra (possibly unwanted) warnings") },
1595   {"missing-noreturn", &warn_missing_noreturn, 1,
1596    N_("Warn about functions which might be candidates for attribute noreturn") },
1597   {"strict-aliasing", &warn_strict_aliasing, 1,
1598    N_ ("Warn about code which might break the strict aliasing rules") }
1599 };
1600
1601 void
1602 set_Wunused (setting)
1603      int setting;
1604 {
1605   warn_unused_function = setting;
1606   warn_unused_label = setting;
1607   /* Unused function parameter warnings are reported when either ``-W
1608      -Wunused'' or ``-Wunused-parameter'' is specified.  Differentiate
1609      -Wunused by setting WARN_UNUSED_PARAMETER to -1.  */
1610   if (!setting)
1611     warn_unused_parameter = 0;
1612   else if (!warn_unused_parameter)
1613     warn_unused_parameter = -1;
1614   warn_unused_variable = setting;
1615   warn_unused_value = setting;
1616 }
1617
1618 /* The following routines are useful in setting all the flags that
1619    -ffast-math and -fno-fast-math imply.  */
1620
1621 void
1622 set_fast_math_flags (set)
1623      int set;
1624 {
1625   flag_trapping_math = !set;
1626   flag_unsafe_math_optimizations = set;
1627   flag_finite_math_only = set;
1628   flag_errno_math = !set;
1629   if (set)
1630     flag_signaling_nans = 0;
1631 }
1632
1633 /* Return true iff flags are set as if -ffast-math.  */
1634 bool
1635 fast_math_flags_set_p ()
1636 {
1637   return (!flag_trapping_math
1638           && flag_unsafe_math_optimizations
1639           && flag_finite_math_only
1640           && !flag_errno_math);
1641 }
1642
1643 \f
1644 /* Output files for assembler code (real compiler output)
1645    and debugging dumps.  */
1646
1647 FILE *asm_out_file;
1648 FILE *aux_info_file;
1649 FILE *rtl_dump_file = NULL;
1650
1651 /* Decode the string P as an integral parameter.
1652    If the string is indeed an integer return its numeric value else
1653    issue an Invalid Option error for the option PNAME and return DEFVAL.
1654    If PNAME is zero just return DEFVAL, do not call error.  */
1655
1656 int
1657 read_integral_parameter (p, pname, defval)
1658      const char *p;
1659      const char *pname;
1660      const int  defval;
1661 {
1662   const char *endp = p;
1663
1664   while (*endp)
1665     {
1666       if (ISDIGIT (*endp))
1667         endp++;
1668       else
1669         break;
1670     }
1671
1672   if (*endp != 0)
1673     {
1674       if (pname != 0)
1675         error ("invalid option `%s'", pname);
1676       return defval;
1677     }
1678
1679   return atoi (p);
1680 }
1681 \f
1682 /* This calls abort and is used to avoid problems when abort is a macro.
1683    It is used when we need to pass the address of abort.  */
1684
1685 void
1686 do_abort ()
1687 {
1688   abort ();
1689 }
1690
1691 /* When `malloc.c' is compiled with `rcheck' defined,
1692    it calls this function to report clobberage.  */
1693
1694 void
1695 botch (s)
1696      const char *s ATTRIBUTE_UNUSED;
1697 {
1698   abort ();
1699 }
1700 \f
1701 /* Return the logarithm of X, base 2, considering X unsigned,
1702    if X is a power of 2.  Otherwise, returns -1.
1703
1704    This should be used via the `exact_log2' macro.  */
1705
1706 int
1707 exact_log2_wide (x)
1708      unsigned HOST_WIDE_INT x;
1709 {
1710   int log = 0;
1711   /* Test for 0 or a power of 2.  */
1712   if (x == 0 || x != (x & -x))
1713     return -1;
1714   while ((x >>= 1) != 0)
1715     log++;
1716   return log;
1717 }
1718
1719 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1720    If X is 0, return -1.
1721
1722    This should be used via the floor_log2 macro.  */
1723
1724 int
1725 floor_log2_wide (x)
1726      unsigned HOST_WIDE_INT x;
1727 {
1728   int log = -1;
1729   while (x != 0)
1730     log++,
1731     x >>= 1;
1732   return log;
1733 }
1734
1735 /* Handler for fatal signals, such as SIGSEGV.  These are transformed
1736    into ICE messages, which is much more user friendly.  */
1737
1738 static void
1739 crash_signal (signo)
1740      int signo;
1741 {
1742   internal_error ("%s", strsignal (signo));
1743 }
1744
1745 /* Arrange to dump core on error.  (The regular error message is still
1746    printed first, except in the case of abort().)  */
1747
1748 static void
1749 setup_core_dumping ()
1750 {
1751 #ifdef SIGABRT
1752   signal (SIGABRT, SIG_DFL);
1753 #endif
1754 #if defined(HAVE_SETRLIMIT)
1755   {
1756     struct rlimit rlim;
1757     if (getrlimit (RLIMIT_CORE, &rlim) != 0)
1758       fatal_io_error ("getting core file size maximum limit");
1759     rlim.rlim_cur = rlim.rlim_max;
1760     if (setrlimit (RLIMIT_CORE, &rlim) != 0)
1761       fatal_io_error ("setting core file size limit to maximum");
1762   }
1763 #endif
1764   diagnostic_abort_on_error (global_dc);
1765 }
1766
1767
1768 /* Strip off a legitimate source ending from the input string NAME of
1769    length LEN.  Rather than having to know the names used by all of
1770    our front ends, we strip off an ending of a period followed by
1771    up to five characters.  (Java uses ".class".)  */
1772
1773 void
1774 strip_off_ending (name, len)
1775      char *name;
1776      int len;
1777 {
1778   int i;
1779   for (i = 2; i < 6 && len > i; i++)
1780     {
1781       if (name[len - i] == '.')
1782         {
1783           name[len - i] = '\0';
1784           break;
1785         }
1786     }
1787 }
1788
1789 /* Output a quoted string.  */
1790
1791 void
1792 output_quoted_string (asm_file, string)
1793      FILE *asm_file;
1794      const char *string;
1795 {
1796 #ifdef OUTPUT_QUOTED_STRING
1797   OUTPUT_QUOTED_STRING (asm_file, string);
1798 #else
1799   char c;
1800
1801   putc ('\"', asm_file);
1802   while ((c = *string++) != 0)
1803     {
1804       if (ISPRINT (c))
1805         {
1806           if (c == '\"' || c == '\\')
1807             putc ('\\', asm_file);
1808           putc (c, asm_file);
1809         }
1810       else
1811         fprintf (asm_file, "\\%03o", (unsigned char) c);
1812     }
1813   putc ('\"', asm_file);
1814 #endif
1815 }
1816
1817 /* Output NAME into FILE after having turned it into something
1818    usable as an identifier in a target's assembly file.  */
1819 void
1820 output_clean_symbol_name (file, name)
1821      FILE *file;
1822      const char *name;
1823 {
1824   /* Make a copy of NAME.  */
1825   char *id = xstrdup (name);
1826
1827   /* Make it look like a valid identifier for an assembler.  */
1828   clean_symbol_name (id);
1829
1830   fputs (id, file);
1831   free (id);
1832 }
1833
1834
1835 /* Output a file name in the form wanted by System V.  */
1836
1837 void
1838 output_file_directive (asm_file, input_name)
1839      FILE *asm_file;
1840      const char *input_name;
1841 {
1842   int len = strlen (input_name);
1843   const char *na = input_name + len;
1844
1845   /* NA gets INPUT_NAME sans directory names.  */
1846   while (na > input_name)
1847     {
1848       if (IS_DIR_SEPARATOR (na[-1]))
1849         break;
1850       na--;
1851     }
1852
1853 #ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
1854   ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file, na);
1855 #else
1856 #ifdef ASM_OUTPUT_SOURCE_FILENAME
1857   ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
1858 #else
1859   fprintf (asm_file, "\t.file\t");
1860   output_quoted_string (asm_file, na);
1861   fputc ('\n', asm_file);
1862 #endif
1863 #endif
1864 }
1865 \f
1866 /* Routine to open a dump file.  Return true if the dump file is enabled.  */
1867
1868 static int
1869 open_dump_file (index, decl)
1870      enum dump_file_index index;
1871      tree decl;
1872 {
1873   char *dump_name;
1874   const char *open_arg;
1875   char seq[16];
1876
1877   if (! dump_file[index].enabled)
1878     return 0;
1879
1880   timevar_push (TV_DUMP);
1881   if (rtl_dump_file != NULL)
1882     fclose (rtl_dump_file);
1883
1884   sprintf (seq, DUMPFILE_FORMAT, index);
1885
1886   if (! dump_file[index].initialized)
1887     {
1888       /* If we've not initialized the files, do so now.  */
1889       if (graph_dump_format != no_graph
1890           && dump_file[index].graph_dump_p)
1891         {
1892           dump_name = concat (seq, dump_file[index].extension, NULL);
1893           clean_graph_dump_file (dump_base_name, dump_name);
1894           free (dump_name);
1895         }
1896       dump_file[index].initialized = 1;
1897       open_arg = "w";
1898     }
1899   else
1900     open_arg = "a";
1901
1902   dump_name = concat (dump_base_name, seq,
1903                       dump_file[index].extension, NULL);
1904
1905   rtl_dump_file = fopen (dump_name, open_arg);
1906   if (rtl_dump_file == NULL)
1907     fatal_io_error ("can't open %s", dump_name);
1908
1909   free (dump_name);
1910
1911   if (decl)
1912     fprintf (rtl_dump_file, "\n;; Function %s%s\n\n",
1913              (*lang_hooks.decl_printable_name) (decl, 2),
1914              cfun->function_frequency == FUNCTION_FREQUENCY_HOT
1915              ? " (hot)"
1916              : cfun->function_frequency == FUNCTION_FREQUENCY_UNLIKELY_EXECUTED
1917              ? " (unlikely executed)"
1918              : "");
1919
1920   timevar_pop (TV_DUMP);
1921   return 1;
1922 }
1923
1924 /* Routine to close a dump file.  */
1925
1926 static void
1927 close_dump_file (index, func, insns)
1928      enum dump_file_index index;
1929      void (*func) PARAMS ((FILE *, rtx));
1930      rtx insns;
1931 {
1932   if (! rtl_dump_file)
1933     return;
1934
1935   timevar_push (TV_DUMP);
1936   if (insns
1937       && graph_dump_format != no_graph
1938       && dump_file[index].graph_dump_p)
1939     {
1940       char seq[16];
1941       char *suffix;
1942
1943       sprintf (seq, DUMPFILE_FORMAT, index);
1944       suffix = concat (seq, dump_file[index].extension, NULL);
1945       print_rtl_graph_with_bb (dump_base_name, suffix, insns);
1946       free (suffix);
1947     }
1948
1949   if (func && insns)
1950     func (rtl_dump_file, insns);
1951
1952   fflush (rtl_dump_file);
1953   fclose (rtl_dump_file);
1954
1955   rtl_dump_file = NULL;
1956   timevar_pop (TV_DUMP);
1957 }
1958
1959 /* Do any final processing required for the declarations in VEC, of
1960    which there are LEN.  We write out inline functions and variables
1961    that have been deferred until this point, but which are required.
1962    Returns nonzero if anything was put out.  */
1963
1964 int
1965 wrapup_global_declarations (vec, len)
1966      tree *vec;
1967      int len;
1968 {
1969   tree decl;
1970   int i;
1971   int reconsider;
1972   int output_something = 0;
1973
1974   for (i = 0; i < len; i++)
1975     {
1976       decl = vec[i];
1977
1978       /* We're not deferring this any longer.  Assignment is
1979          conditional to avoid needlessly dirtying PCH pages.  */
1980       if (DECL_DEFER_OUTPUT (decl) != 0)
1981         DECL_DEFER_OUTPUT (decl) = 0;
1982
1983       if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
1984         (*lang_hooks.finish_incomplete_decl) (decl);
1985     }
1986
1987   /* Now emit any global variables or functions that we have been
1988      putting off.  We need to loop in case one of the things emitted
1989      here references another one which comes earlier in the list.  */
1990   do
1991     {
1992       reconsider = 0;
1993       for (i = 0; i < len; i++)
1994         {
1995           decl = vec[i];
1996
1997           if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
1998             continue;
1999
2000           /* Don't write out static consts, unless we still need them.
2001
2002              We also keep static consts if not optimizing (for debugging),
2003              unless the user specified -fno-keep-static-consts.
2004              ??? They might be better written into the debug information.
2005              This is possible when using DWARF.
2006
2007              A language processor that wants static constants to be always
2008              written out (even if it is not used) is responsible for
2009              calling rest_of_decl_compilation itself.  E.g. the C front-end
2010              calls rest_of_decl_compilation from finish_decl.
2011              One motivation for this is that is conventional in some
2012              environments to write things like:
2013              static const char rcsid[] = "... version string ...";
2014              intending to force the string to be in the executable.
2015
2016              A language processor that would prefer to have unneeded
2017              static constants "optimized away" would just defer writing
2018              them out until here.  E.g. C++ does this, because static
2019              constants are often defined in header files.
2020
2021              ??? A tempting alternative (for both C and C++) would be
2022              to force a constant to be written if and only if it is
2023              defined in a main file, as opposed to an include file.  */
2024
2025           if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
2026             {
2027               bool needed = 1;
2028
2029               if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2030                 /* needed */;
2031               else if (DECL_COMDAT (decl))
2032                 needed = 0;
2033               else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
2034                        && (optimize || !flag_keep_static_consts
2035                            || DECL_ARTIFICIAL (decl)))
2036                 needed = 0;
2037
2038               if (needed)
2039                 {
2040                   reconsider = 1;
2041                   rest_of_decl_compilation (decl, NULL, 1, 1);
2042                 }
2043             }
2044
2045           if (TREE_CODE (decl) == FUNCTION_DECL
2046               && DECL_INITIAL (decl) != 0
2047               && DECL_SAVED_INSNS (decl) != 0
2048               && (flag_keep_inline_functions
2049                   || (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
2050                   || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
2051             {
2052               reconsider = 1;
2053               output_inline_function (decl);
2054             }
2055         }
2056
2057       if (reconsider)
2058         output_something = 1;
2059     }
2060   while (reconsider);
2061
2062   return output_something;
2063 }
2064
2065 /* Issue appropriate warnings for the global declarations in VEC (of
2066    which there are LEN).  Output debugging information for them.  */
2067
2068 void
2069 check_global_declarations (vec, len)
2070      tree *vec;
2071      int len;
2072 {
2073   tree decl;
2074   int i;
2075
2076   for (i = 0; i < len; i++)
2077     {
2078       decl = vec[i];
2079
2080       if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
2081           && ! TREE_ASM_WRITTEN (decl))
2082         /* Cancel the RTL for this decl so that, if debugging info
2083            output for global variables is still to come,
2084            this one will be omitted.  */
2085         SET_DECL_RTL (decl, NULL_RTX);
2086
2087       /* Warn about any function
2088          declared static but not defined.
2089          We don't warn about variables,
2090          because many programs have static variables
2091          that exist only to get some text into the object file.  */
2092       if (TREE_CODE (decl) == FUNCTION_DECL
2093           && (warn_unused_function
2094               || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2095           && DECL_INITIAL (decl) == 0
2096           && DECL_EXTERNAL (decl)
2097           && ! DECL_ARTIFICIAL (decl)
2098           && ! TREE_PUBLIC (decl))
2099         {
2100           if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2101             pedwarn_with_decl (decl,
2102                                "`%s' used but never defined");
2103           else
2104             warning_with_decl (decl,
2105                                "`%s' declared `static' but never defined");
2106           /* This symbol is effectively an "extern" declaration now.  */
2107           TREE_PUBLIC (decl) = 1;
2108           assemble_external (decl);
2109         }
2110
2111       /* Warn about static fns or vars defined but not used.  */
2112       if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
2113            || (warn_unused_variable && TREE_CODE (decl) == VAR_DECL))
2114           && ! TREE_USED (decl)
2115           /* The TREE_USED bit for file-scope decls is kept in the identifier,
2116              to handle multiple external decls in different scopes.  */
2117           && ! TREE_USED (DECL_NAME (decl))
2118           && ! DECL_EXTERNAL (decl)
2119           && ! TREE_PUBLIC (decl)
2120           /* Global register variables must be declared to reserve them.  */
2121           && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
2122           /* Otherwise, ask the language.  */
2123           && (*lang_hooks.decls.warn_unused_global) (decl))
2124         warning_with_decl (decl, "`%s' defined but not used");
2125
2126       /* Avoid confusing the debug information machinery when there are
2127          errors.  */
2128       if (errorcount == 0 && sorrycount == 0)
2129         {
2130           timevar_push (TV_SYMOUT);
2131           (*debug_hooks->global_decl) (decl);
2132           timevar_pop (TV_SYMOUT);
2133         }
2134     }
2135 }
2136
2137 /* Save the current INPUT_FILENAME and LINENO on the top entry in the
2138    INPUT_FILE_STACK.  Push a new entry for FILE and LINE, and set the
2139    INPUT_FILENAME and LINENO accordingly.  */
2140
2141 void
2142 push_srcloc (file, line)
2143      const char *file;
2144      int line;
2145 {
2146   struct file_stack *fs;
2147
2148   if (input_file_stack)
2149     {
2150       input_file_stack->name = input_filename;
2151       input_file_stack->line = lineno;
2152     }
2153
2154   fs = (struct file_stack *) xmalloc (sizeof (struct file_stack));
2155   fs->name = input_filename = file;
2156   fs->line = lineno = line;
2157   fs->next = input_file_stack;
2158   input_file_stack = fs;
2159   input_file_stack_tick++;
2160 }
2161
2162 /* Pop the top entry off the stack of presently open source files.
2163    Restore the INPUT_FILENAME and LINENO from the new topmost entry on
2164    the stack.  */
2165
2166 void
2167 pop_srcloc ()
2168 {
2169   struct file_stack *fs;
2170
2171   fs = input_file_stack;
2172   input_file_stack = fs->next;
2173   free (fs);
2174   input_file_stack_tick++;
2175
2176   if (input_file_stack)
2177     {
2178       input_filename = input_file_stack->name;
2179       lineno = input_file_stack->line;
2180     }
2181   else
2182     {
2183       input_filename = NULL;
2184       lineno = 0;
2185     }
2186 }
2187
2188 /* Compile an entire translation unit.  Write a file of assembly
2189    output and various debugging dumps.  */
2190
2191 static void
2192 compile_file ()
2193 {
2194   /* Initialize yet another pass.  */
2195
2196   init_final (main_input_filename);
2197   init_branch_prob (aux_base_name);
2198
2199   timevar_push (TV_PARSE);
2200
2201   /* Call the parser, which parses the entire file (calling
2202      rest_of_compilation for each function).  */
2203   (*lang_hooks.parse_file) (set_yydebug);
2204
2205   /* In case there were missing block closers,
2206      get us back to the global binding level.  */
2207   (*lang_hooks.clear_binding_stack) ();
2208
2209   /* Compilation is now finished except for writing
2210      what's left of the symbol table output.  */
2211   timevar_pop (TV_PARSE);
2212
2213   if (flag_syntax_only)
2214     return;
2215
2216   (*lang_hooks.decls.final_write_globals)();
2217
2218     if (profile_arc_flag)
2219       /* This must occur after the loop to output deferred functions.
2220          Else the profiler initializer would not be emitted if all the
2221          functions in this compilation unit were deferred.  */
2222       create_profiler ();
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   no_new_pseudos = 1;
3220
3221   if (warn_uninitialized || extra_warnings)
3222     {
3223       uninitialized_vars_warning (DECL_INITIAL (decl));
3224       if (extra_warnings)
3225         setjmp_args_warning ();
3226     }
3227
3228   if (optimize)
3229     {
3230       clear_bb_flags ();
3231       if (!flag_new_regalloc && initialize_uninitialized_subregs ())
3232         {
3233           /* Insns were inserted, so things might look a bit different.  */
3234           insns = get_insns ();
3235           update_life_info_in_dirty_blocks (UPDATE_LIFE_GLOBAL_RM_NOTES,
3236                                             PROP_LOG_LINKS | PROP_REG_INFO
3237                                             | PROP_DEATH_NOTES);
3238         }
3239     }
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   /* In case the function was not output,
3768      don't leave any temporary anonymous types
3769      queued up for sdb output.  */
3770 #ifdef SDB_DEBUGGING_INFO
3771   if (write_symbols == SDB_DEBUG)
3772     sdbout_types (NULL_TREE);
3773 #endif
3774
3775   reload_completed = 0;
3776   flow2_completed = 0;
3777   no_new_pseudos = 0;
3778
3779   timevar_push (TV_FINAL);
3780
3781   /* Clear out the insn_length contents now that they are no
3782      longer valid.  */
3783   init_insn_lengths ();
3784
3785   /* Show no temporary slots allocated.  */
3786   init_temp_slots ();
3787
3788   free_basic_block_vars (0);
3789   free_bb_for_insn ();
3790
3791   timevar_pop (TV_FINAL);
3792
3793   if ((*targetm.binds_local_p) (current_function_decl))
3794     {
3795       int pref = cfun->preferred_stack_boundary;
3796       if (cfun->recursive_call_emit
3797           && cfun->stack_alignment_needed > cfun->preferred_stack_boundary)
3798         pref = cfun->stack_alignment_needed;
3799       cgraph_rtl_info (current_function_decl)->preferred_incoming_stack_boundary
3800         = pref;
3801     }
3802
3803   /* Make sure volatile mem refs aren't considered valid operands for
3804      arithmetic insns.  We must call this here if this is a nested inline
3805      function, since the above code leaves us in the init_recog state
3806      (from final.c), and the function context push/pop code does not
3807      save/restore volatile_ok.
3808
3809      ??? Maybe it isn't necessary for expand_start_function to call this
3810      anymore if we do it here?  */
3811
3812   init_recog_no_volatile ();
3813
3814   /* We're done with this function.  Free up memory if we can.  */
3815   free_after_parsing (cfun);
3816   if (! DECL_DEFER_OUTPUT (decl))
3817     {
3818       free_after_compilation (cfun);
3819
3820       /* Clear integrate.c's pointer to the cfun structure we just
3821          destroyed.  */
3822       DECL_SAVED_INSNS (decl) = 0;
3823     }
3824   cfun = 0;
3825
3826   ggc_collect ();
3827
3828   timevar_pop (TV_REST_OF_COMPILATION);
3829 }
3830 \f
3831 static void
3832 display_help ()
3833 {
3834   int undoc;
3835   unsigned long i;
3836   const char *lang;
3837
3838   printf (_("  -ffixed-<register>      Mark <register> as being unavailable to the compiler\n"));
3839   printf (_("  -fcall-used-<register>  Mark <register> as being corrupted by function calls\n"));
3840   printf (_("  -fcall-saved-<register> Mark <register> as being preserved across functions\n"));
3841   printf (_("  -finline-limit=<number> Limits the size of inlined functions to <number>\n"));
3842   printf (_("  -fmessage-length=<number> Limits diagnostics messages lengths to <number> characters per line.  0 suppresses line-wrapping\n"));
3843   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"));
3844   printf (_("  -ftls-model=[global-dynamic | local-dynamic | initial-exec | local-exec] Indicates the default thread-local storage code generation model\n"));
3845
3846   for (i = ARRAY_SIZE (f_options); i--;)
3847     {
3848       const char *description = f_options[i].description;
3849
3850       if (description != NULL && *description != 0)
3851         printf ("  -f%-21s %s\n",
3852                 f_options[i].string, _(description));
3853     }
3854
3855   printf (_("  -O[number]              Set optimization level to [number]\n"));
3856   printf (_("  -Os                     Optimize for space rather than speed\n"));
3857   for (i = LAST_PARAM; i--;)
3858     {
3859       const char *description = compiler_params[i].help;
3860       const int length = 21 - strlen (compiler_params[i].option);
3861
3862       if (description != NULL && *description != 0)
3863         printf ("  --param %s=<value>%.*s%s\n",
3864                 compiler_params[i].option,
3865                 length > 0 ? length : 1, "                     ",
3866                 _(description));
3867     }
3868   printf (_("  -pedantic               Issue warnings needed by strict compliance to ISO C\n"));
3869   printf (_("  -pedantic-errors        Like -pedantic except that errors are produced\n"));
3870   printf (_("  -w                      Suppress warnings\n"));
3871
3872   for (i = ARRAY_SIZE (W_options); i--;)
3873     {
3874       const char *description = W_options[i].description;
3875
3876       if (description != NULL && *description != 0)
3877         printf ("  -W%-21s %s\n",
3878                 W_options[i].string, _(description));
3879     }
3880
3881   printf (_("  -Wunused                Enable unused warnings\n"));
3882   printf (_("  -Wlarger-than-<number>  Warn if an object is larger than <number> bytes\n"));
3883   printf (_("  -p                      Enable function profiling\n"));
3884   printf (_("  -o <file>               Place output into <file> \n"));
3885   printf (_("\
3886   -G <number>             Put global and static data smaller than <number>\n\
3887                           bytes into a special section (on some targets)\n"));
3888
3889   for (i = ARRAY_SIZE (debug_args); i--;)
3890     {
3891       if (debug_args[i].description != NULL)
3892         printf ("  -g%-21s %s\n",
3893                 debug_args[i].arg, _(debug_args[i].description));
3894     }
3895
3896   printf (_("  -aux-info <file>        Emit declaration info into <file>\n"));
3897   printf (_("  -quiet                  Do not display functions compiled or elapsed time\n"));
3898   printf (_("  -version                Display the compiler's version\n"));
3899   printf (_("  -d[letters]             Enable dumps from specific passes of the compiler\n"));
3900   printf (_("  -dumpbase <file>        Base name to be used for dumps from specific passes\n"));
3901 #if defined INSN_SCHEDULING
3902   printf (_("  -fsched-verbose=<number> Set the verbosity level of the scheduler\n"));
3903 #endif
3904   printf (_("  --help                  Display this information\n"));
3905
3906   undoc = 0;
3907   lang  = "language";
3908
3909   /* Display descriptions of language specific options.
3910      If there is no description, note that there is an undocumented option.
3911      If the description is empty, do not display anything.  (This allows
3912      options to be deliberately undocumented, for whatever reason).
3913      If the option string is missing, then this is a marker, indicating
3914      that the description string is in fact the name of a language, whose
3915      language specific options are to follow.  */
3916
3917   if (ARRAY_SIZE (documented_lang_options) > 1)
3918     {
3919       printf (_("\nLanguage specific options:\n"));
3920
3921       for (i = 0; i < ARRAY_SIZE (documented_lang_options); i++)
3922         {
3923           const char *description = documented_lang_options[i].description;
3924           const char *option      = documented_lang_options[i].option;
3925
3926           if (description == NULL)
3927             {
3928               undoc = 1;
3929
3930               if (extra_warnings)
3931                 printf (_("  %-23.23s [undocumented]\n"), option);
3932             }
3933           else if (*description == 0)
3934             continue;
3935           else if (option == NULL)
3936             {
3937               if (undoc)
3938                 printf
3939                   (_("\nThere are undocumented %s specific options as well.\n"),
3940                         lang);
3941               undoc = 0;
3942
3943               printf (_("\n Options for %s:\n"), description);
3944
3945               lang = description;
3946             }
3947           else
3948             printf ("  %-23.23s %s\n", option, _(description));
3949         }
3950     }
3951
3952   if (undoc)
3953     printf (_("\nThere are undocumented %s specific options as well.\n"),
3954             lang);
3955
3956   display_target_options ();
3957 }
3958
3959 static void
3960 display_target_options ()
3961 {
3962   int undoc, i;
3963   static bool displayed = false;
3964
3965   /* Avoid double printing for --help --target-help.  */
3966   if (displayed)
3967     return;
3968   displayed = true;
3969
3970   if (ARRAY_SIZE (target_switches) > 1
3971 #ifdef TARGET_OPTIONS
3972       || ARRAY_SIZE (target_options) > 1
3973 #endif
3974       )
3975     {
3976       int doc = 0;
3977
3978       undoc = 0;
3979
3980       printf (_("\nTarget specific options:\n"));
3981
3982       for (i = ARRAY_SIZE (target_switches); i--;)
3983         {
3984           const char *option      = target_switches[i].name;
3985           const char *description = target_switches[i].description;
3986
3987           if (option == NULL || *option == 0)
3988             continue;
3989           else if (description == NULL)
3990             {
3991               undoc = 1;
3992
3993               if (extra_warnings)
3994                 printf (_("  -m%-23.23s [undocumented]\n"), option);
3995             }
3996           else if (*description != 0)
3997             doc += printf ("  -m%-23.23s %s\n", option, _(description));
3998         }
3999
4000 #ifdef TARGET_OPTIONS
4001       for (i = ARRAY_SIZE (target_options); i--;)
4002         {
4003           const char *option      = target_options[i].prefix;
4004           const char *description = target_options[i].description;
4005
4006           if (option == NULL || *option == 0)
4007             continue;
4008           else if (description == NULL)
4009             {
4010               undoc = 1;
4011
4012               if (extra_warnings)
4013                 printf (_("  -m%-23.23s [undocumented]\n"), option);
4014             }
4015           else if (*description != 0)
4016             doc += printf ("  -m%-23.23s %s\n", option, _(description));
4017         }
4018 #endif
4019       if (undoc)
4020         {
4021           if (doc)
4022             printf (_("\nThere are undocumented target specific options as well.\n"));
4023           else
4024             printf (_("  They exist, but they are not documented.\n"));
4025         }
4026     }
4027 }
4028 \f
4029 /* Parse a -d... command line switch.  */
4030
4031 static void
4032 decode_d_option (arg)
4033      const char *arg;
4034 {
4035   int i, c, matched;
4036
4037   while (*arg)
4038     switch (c = *arg++)
4039       {
4040       case 'a':
4041         for (i = 0; i < (int) DFI_MAX; ++i)
4042           dump_file[i].enabled = 1;
4043         break;
4044       case 'A':
4045         flag_debug_asm = 1;
4046         break;
4047       case 'p':
4048         flag_print_asm_name = 1;
4049         break;
4050       case 'P':
4051         flag_dump_rtl_in_asm = 1;
4052         flag_print_asm_name = 1;
4053         break;
4054       case 'v':
4055         graph_dump_format = vcg;
4056         break;
4057       case 'x':
4058         rtl_dump_and_exit = 1;
4059         break;
4060       case 'y':
4061         set_yydebug = 1;
4062         break;
4063       case 'D': /* These are handled by the preprocessor.  */
4064       case 'I':
4065         break;
4066       case 'H':
4067         setup_core_dumping();
4068         break;
4069
4070       default:
4071         matched = 0;
4072         for (i = 0; i < (int) DFI_MAX; ++i)
4073           if (c == dump_file[i].debug_switch)
4074             {
4075               dump_file[i].enabled = 1;
4076               matched = 1;
4077             }
4078
4079         if (! matched)
4080           warning ("unrecognized gcc debugging option: %c", c);
4081         break;
4082       }
4083 }
4084
4085 /* Parse a -f... command line switch.  ARG is the value after the -f.
4086    It is safe to access 'ARG - 2' to generate the full switch name.
4087    Return the number of strings consumed.  */
4088
4089 static int
4090 decode_f_option (arg)
4091      const char *arg;
4092 {
4093   int j;
4094   const char *option_value = NULL;
4095
4096   /* Search for the option in the table of binary f options.  */
4097   for (j = ARRAY_SIZE (f_options); j--;)
4098     {
4099       if (!strcmp (arg, f_options[j].string))
4100         {
4101           *f_options[j].variable = f_options[j].on_value;
4102           return 1;
4103         }
4104
4105       if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4106           && ! strcmp (arg + 3, f_options[j].string))
4107         {
4108           *f_options[j].variable = ! f_options[j].on_value;
4109           return 1;
4110         }
4111     }
4112
4113   if (!strcmp (arg, "fast-math"))
4114     set_fast_math_flags (1);
4115   else if (!strcmp (arg, "no-fast-math"))
4116     set_fast_math_flags (0);
4117   else if ((option_value = skip_leading_substring (arg, "inline-limit-"))
4118            || (option_value = skip_leading_substring (arg, "inline-limit=")))
4119     {
4120       int val =
4121         read_integral_parameter (option_value, arg - 2,
4122                                  MAX_INLINE_INSNS);
4123       set_param_value ("max-inline-insns", val);
4124       set_param_value ("max-inline-insns-single", val/2);
4125       set_param_value ("max-inline-insns-auto", val/2);
4126       set_param_value ("max-inline-insns-rtl", val);
4127       if (val/4 < MIN_INLINE_INSNS)
4128         {
4129           if (val/4 > 10)
4130             set_param_value ("min-inline-insns", val/4);
4131           else
4132             set_param_value ("min-inline-insns", 10);
4133         }
4134     }
4135   else if ((option_value = skip_leading_substring (arg, "tls-model=")))
4136     {
4137       if (strcmp (option_value, "global-dynamic") == 0)
4138         flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
4139       else if (strcmp (option_value, "local-dynamic") == 0)
4140         flag_tls_default = TLS_MODEL_LOCAL_DYNAMIC;
4141       else if (strcmp (option_value, "initial-exec") == 0)
4142         flag_tls_default = TLS_MODEL_INITIAL_EXEC;
4143       else if (strcmp (option_value, "local-exec") == 0)
4144         flag_tls_default = TLS_MODEL_LOCAL_EXEC;
4145       else
4146         warning ("`%s': unknown tls-model option", arg - 2);
4147     }
4148 #ifdef INSN_SCHEDULING
4149   else if ((option_value = skip_leading_substring (arg, "sched-verbose=")))
4150     fix_sched_param ("verbose", option_value);
4151 #endif
4152   else if ((option_value = skip_leading_substring (arg, "fixed-")))
4153     fix_register (option_value, 1, 1);
4154   else if ((option_value = skip_leading_substring (arg, "call-used-")))
4155     fix_register (option_value, 0, 1);
4156   else if ((option_value = skip_leading_substring (arg, "call-saved-")))
4157     fix_register (option_value, 0, 0);
4158   else if ((option_value = skip_leading_substring (arg, "align-loops=")))
4159     align_loops = read_integral_parameter (option_value, arg - 2, align_loops);
4160   else if ((option_value = skip_leading_substring (arg, "align-functions=")))
4161     align_functions
4162       = read_integral_parameter (option_value, arg - 2, align_functions);
4163   else if ((option_value = skip_leading_substring (arg, "align-jumps=")))
4164     align_jumps = read_integral_parameter (option_value, arg - 2, align_jumps);
4165   else if ((option_value = skip_leading_substring (arg, "align-labels=")))
4166     align_labels
4167       = read_integral_parameter (option_value, arg - 2, align_labels);
4168   else if ((option_value
4169             = skip_leading_substring (arg, "stack-limit-register=")))
4170     {
4171       int reg = decode_reg_name (option_value);
4172       if (reg < 0)
4173         error ("unrecognized register name `%s'", option_value);
4174       else
4175         stack_limit_rtx = gen_rtx_REG (Pmode, reg);
4176     }
4177   else if ((option_value
4178             = skip_leading_substring (arg, "stack-limit-symbol=")))
4179     {
4180       const char *nm;
4181       nm = ggc_strdup (option_value);
4182       stack_limit_rtx = gen_rtx_SYMBOL_REF (Pmode, nm);
4183     }
4184   else if ((option_value
4185             = skip_leading_substring (arg, "message-length=")))
4186     output_set_maximum_length
4187       (&global_dc->buffer, read_integral_parameter
4188        (option_value, arg - 2, diagnostic_line_cutoff (global_dc)));
4189   else if ((option_value
4190             = skip_leading_substring (arg, "diagnostics-show-location=")))
4191     {
4192       if (!strcmp (option_value, "once"))
4193         diagnostic_prefixing_rule (global_dc) = DIAGNOSTICS_SHOW_PREFIX_ONCE;
4194       else if (!strcmp (option_value, "every-line"))
4195         diagnostic_prefixing_rule (global_dc)
4196           = DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE;
4197       else
4198         error ("unrecognized option `%s'", arg - 2);
4199     }
4200   else if (!strcmp (arg, "no-stack-limit"))
4201     stack_limit_rtx = NULL_RTX;
4202   else if (!strcmp (arg, "preprocessed"))
4203     /* Recognize this switch but do nothing.  This prevents warnings
4204        about an unrecognized switch if cpplib has not been linked in.  */
4205     ;
4206   else
4207     return 0;
4208
4209   return 1;
4210 }
4211
4212 /* Parse a -W... command line switch.  ARG is the value after the -W.
4213    It is safe to access 'ARG - 2' to generate the full switch name.
4214    Return the number of strings consumed.  */
4215
4216 static int
4217 decode_W_option (arg)
4218      const char *arg;
4219 {
4220   const char *option_value = NULL;
4221   int j;
4222
4223   /* Search for the option in the table of binary W options.  */
4224
4225   for (j = ARRAY_SIZE (W_options); j--;)
4226     {
4227       if (!strcmp (arg, W_options[j].string))
4228         {
4229           *W_options[j].variable = W_options[j].on_value;
4230           return 1;
4231         }
4232
4233       if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4234           && ! strcmp (arg + 3, W_options[j].string))
4235         {
4236           *W_options[j].variable = ! W_options[j].on_value;
4237           return 1;
4238         }
4239     }
4240
4241   if ((option_value = skip_leading_substring (arg, "id-clash-")))
4242     warning ("-Wid-clash-LEN is no longer supported");
4243   else if ((option_value = skip_leading_substring (arg, "larger-than-")))
4244     {
4245       larger_than_size = read_integral_parameter (option_value, arg - 2, -1);
4246
4247       warn_larger_than = larger_than_size != -1;
4248     }
4249   else if (!strcmp (arg, "unused"))
4250     {
4251       set_Wunused (1);
4252     }
4253   else if (!strcmp (arg, "no-unused"))
4254     {
4255       set_Wunused (0);
4256     }
4257   else if (!strcmp (arg, "extra"))
4258     {
4259       /* We save the value of warn_uninitialized, since if they put
4260          -Wuninitialized on the command line, we need to generate a
4261          warning about not using it without also specifying -O.  */
4262       if (warn_uninitialized != 1)
4263         warn_uninitialized = 2;
4264     }
4265   else
4266     return 0;
4267
4268   return 1;
4269 }
4270
4271 /* Parse a -g... command line switch.  ARG is the value after the -g.
4272    It is safe to access 'ARG - 2' to generate the full switch name.
4273    Return the number of strings consumed.  */
4274
4275 static int
4276 decode_g_option (arg)
4277      const char *arg;
4278 {
4279   static unsigned level = 0;
4280   /* A lot of code assumes write_symbols == NO_DEBUG if the
4281      debugging level is 0 (thus -gstabs1 -gstabs0 would lose track
4282      of what debugging type has been selected).  This records the
4283      selected type.  It is an error to specify more than one
4284      debugging type.  */
4285   static enum debug_info_type selected_debug_type = NO_DEBUG;
4286   /* Nonzero if debugging format has been explicitly set.
4287      -g and -ggdb don't explicitly set the debugging format so
4288      -gdwarf -g3 is equivalent to -gdwarf3.  */
4289   static int type_explicitly_set_p = 0;
4290   /* Indexed by enum debug_info_type.  */
4291   static const char *const debug_type_names[] =
4292   {
4293     "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff", "vms"
4294   };
4295
4296   /* The maximum admissible debug level value.  */
4297   static const unsigned max_debug_level = 3;
4298
4299   /* Look up ARG in the table.  */
4300   for (da = debug_args; da->arg; da++)
4301     {
4302       const int da_len = strlen (da->arg);
4303
4304       if (da_len == 0 || ! strncmp (arg, da->arg, da_len))
4305         {
4306           enum debug_info_type type = da->debug_type;
4307           const char *p = arg + da_len;
4308
4309           if (*p && ! ISDIGIT (*p))
4310             continue;
4311
4312           /* A debug flag without a level defaults to level 2.
4313              Note we do not want to call read_integral_parameter
4314              for that case since it will call atoi which
4315              will return zero.
4316
4317              ??? We may want to generalize the interface to
4318              read_integral_parameter to better handle this case
4319              if this case shows up often.  */
4320           if (*p)
4321             level = read_integral_parameter (p, 0, max_debug_level + 1);
4322           else
4323             level = (level == 0) ? 2 : level;
4324
4325           if (da_len > 1 && *p && !strncmp (arg, "dwarf", da_len))
4326             {
4327               error ("use -gdwarf -g%d for DWARF v1, level %d",
4328                      level, level);
4329               if (level == 2)
4330                 error ("use -gdwarf-2   for DWARF v2");
4331             }
4332
4333           if (level > max_debug_level)
4334             {
4335               warning ("\
4336 ignoring option `%s' due to invalid debug level specification",
4337                        arg - 2);
4338               level = debug_info_level;
4339             }
4340
4341           if (type == NO_DEBUG)
4342             {
4343               type = PREFERRED_DEBUGGING_TYPE;
4344
4345               if (da_len > 1 && strncmp (arg, "gdb", da_len) == 0)
4346                 {
4347 #ifdef DWARF2_DEBUGGING_INFO
4348                   type = DWARF2_DEBUG;
4349 #else
4350 #ifdef DBX_DEBUGGING_INFO
4351                   type = DBX_DEBUG;
4352 #endif
4353 #endif
4354                 }
4355             }
4356
4357           if (type == NO_DEBUG)
4358             warning ("`%s': unknown or unsupported -g option", arg - 2);
4359
4360           /* Does it conflict with an already selected type?  */
4361           if (type_explicitly_set_p
4362               /* -g/-ggdb don't conflict with anything.  */
4363               && da->debug_type != NO_DEBUG
4364               && type != selected_debug_type)
4365             warning ("`%s' ignored, conflicts with `-g%s'",
4366                      arg - 2, debug_type_names[(int) selected_debug_type]);
4367           else
4368             {
4369               /* If the format has already been set, -g/-ggdb
4370                  only change the debug level.  */
4371               if (type_explicitly_set_p && da->debug_type == NO_DEBUG)
4372                 /* Don't change debugging type.  */
4373                 ;
4374               else
4375                 {
4376                   selected_debug_type = type;
4377                   type_explicitly_set_p = da->debug_type != NO_DEBUG;
4378                 }
4379
4380               write_symbols = (level == 0
4381                                ? NO_DEBUG
4382                                : selected_debug_type);
4383               use_gnu_debug_info_extensions = da->use_extensions_p;
4384               debug_info_level = (enum debug_info_level) level;
4385             }
4386
4387           break;
4388         }
4389     }
4390
4391   if (! da->arg)
4392     return 0;
4393
4394   return 1;
4395 }
4396
4397 /* Decode the first argument in the argv as a language-independent option.
4398    Return the number of strings consumed.  */
4399
4400 static unsigned int
4401 independent_decode_option (argc, argv)
4402      int argc;
4403      char **argv;
4404 {
4405   char *arg = argv[0];
4406
4407   if (arg[0] != '-' || arg[1] == 0)
4408     {
4409       if (arg[0] == '+')
4410         return 0;
4411
4412       filename = arg;
4413
4414       return 1;
4415     }
4416
4417   arg++;
4418
4419   if (!strcmp (arg, "-help"))
4420     {
4421       display_help ();
4422       exit_after_options = 1;
4423       return 1;
4424     }
4425
4426   if (!strcmp (arg, "-target-help"))
4427     {
4428       display_target_options ();
4429       exit_after_options = 1;
4430       return 1;
4431     }
4432
4433   if (!strcmp (arg, "-version"))
4434     {
4435       print_version (stderr, "");
4436       exit_after_options = 1;
4437       return 1;
4438     }
4439
4440   /* Handle '--param <name>=<value>'.  */
4441   if (strcmp (arg, "-param") == 0)
4442     {
4443       char *equal;
4444
4445       if (argc == 1)
4446         {
4447           error ("-param option missing argument");
4448           return 1;
4449         }
4450
4451       /* Get the '<name>=<value>' parameter.  */
4452       arg = argv[1];
4453       /* Look for the `='.  */
4454       equal = strchr (arg, '=');
4455       if (!equal)
4456         error ("invalid --param option: %s", arg);
4457       else
4458         {
4459           int val;
4460
4461           /* Zero out the `=' sign so that we get two separate strings.  */
4462           *equal = '\0';
4463           /* Figure out what value is specified.  */
4464           val = read_integral_parameter (equal + 1, NULL, INVALID_PARAM_VAL);
4465           if (val != INVALID_PARAM_VAL)
4466             set_param_value (arg, val);
4467           else
4468             error ("invalid parameter value `%s'", equal + 1);
4469         }
4470
4471       return 2;
4472     }
4473
4474   switch (*arg)
4475     {
4476     default:
4477       return 0;
4478
4479     case 'O':
4480       /* Already been treated in main (). Do nothing.  */
4481       break;
4482
4483     case 'm':
4484       set_target_switch (arg + 1);
4485       break;
4486
4487     case 'f':
4488       return decode_f_option (arg + 1);
4489
4490     case 'g':
4491       return decode_g_option (arg + 1);
4492
4493     case 'd':
4494       if (!strcmp (arg, "dumpbase"))
4495         {
4496           if (argc == 1)
4497             return 0;
4498
4499           if (argv[1][0])
4500             dump_base_name = argv[1];
4501
4502           return 2;
4503         }
4504       else
4505         decode_d_option (arg + 1);
4506       break;
4507
4508     case 'p':
4509       if (!strcmp (arg, "pedantic"))
4510         pedantic = 1;
4511       else if (!strcmp (arg, "pedantic-errors"))
4512         flag_pedantic_errors = pedantic = 1;
4513       else if (arg[1] == 0)
4514         profile_flag = 1;
4515       else
4516         return 0;
4517       break;
4518
4519     case 'q':
4520       if (!strcmp (arg, "quiet"))
4521         quiet_flag = 1;
4522       else
4523         return 0;
4524       break;
4525
4526     case 'v':
4527       if (!strcmp (arg, "version"))
4528         version_flag = 1;
4529       else
4530         return 0;
4531       break;
4532
4533     case 'w':
4534       if (arg[1] == 0)
4535         inhibit_warnings = 1;
4536       else
4537         return 0;
4538       break;
4539
4540     case 'W':
4541       if (arg[1] == 0)
4542         {
4543           extra_warnings = 1;
4544           /* We save the value of warn_uninitialized, since if they put
4545              -Wuninitialized on the command line, we need to generate a
4546              warning about not using it without also specifying -O.  */
4547           if (warn_uninitialized != 1)
4548             warn_uninitialized = 2;
4549         }
4550       else
4551         return decode_W_option (arg + 1);
4552       break;
4553
4554     case 'a':
4555       if (!strncmp (arg, "aux-info", 8))
4556         {
4557           if (arg[8] == '\0')
4558             {
4559               if (argc == 1)
4560                 return 0;
4561
4562               aux_info_file_name = argv[1];
4563               flag_gen_aux_info = 1;
4564               return 2;
4565             }
4566           else if (arg[8] == '=')
4567             {
4568               aux_info_file_name = arg + 9;
4569               flag_gen_aux_info = 1;
4570             }
4571           else
4572             return 0;
4573         }
4574       else if (!strcmp (arg, "auxbase"))
4575         {
4576           if (argc == 1)
4577             return 0;
4578
4579           if (argv[1][0])
4580             aux_base_name = argv[1];
4581
4582           return 2;
4583         }
4584       else if (!strcmp (arg, "auxbase-strip"))
4585         {
4586           if (argc == 1)
4587             return 0;
4588
4589           if (argv[1][0])
4590             {
4591               strip_off_ending (argv[1], strlen (argv[1]));
4592               if (argv[1][0])
4593                 aux_base_name = argv[1];
4594             }
4595
4596           return 2;
4597         }
4598       else
4599         return 0;
4600       break;
4601
4602     case 'o':
4603       if (arg[1] == 0)
4604         {
4605           if (argc == 1)
4606             return 0;
4607
4608           asm_file_name = argv[1];
4609           return 2;
4610         }
4611       return 0;
4612
4613     case 'G':
4614       {
4615         int g_switch_val;
4616         int return_val;
4617
4618         if (arg[1] == 0)
4619           {
4620             if (argc == 1)
4621               return 0;
4622
4623             g_switch_val = read_integral_parameter (argv[1], 0, -1);
4624             return_val = 2;
4625           }
4626         else
4627           {
4628             g_switch_val = read_integral_parameter (arg + 1, 0, -1);
4629             return_val = 1;
4630           }
4631
4632         if (g_switch_val == -1)
4633           return_val = 0;
4634         else
4635           {
4636             g_switch_set = TRUE;
4637             g_switch_value = g_switch_val;
4638           }
4639
4640         return return_val;
4641       }
4642     }
4643
4644   return 1;
4645 }
4646 \f
4647 /* Decode -m switches.  */
4648 /* Decode the switch -mNAME.  */
4649
4650 static void
4651 set_target_switch (name)
4652      const char *name;
4653 {
4654   size_t j;
4655   int valid_target_option = 0;
4656
4657   for (j = 0; j < ARRAY_SIZE (target_switches); j++)
4658     if (!strcmp (target_switches[j].name, name))
4659       {
4660         if (target_switches[j].value < 0)
4661           target_flags &= ~-target_switches[j].value;
4662         else
4663           target_flags |= target_switches[j].value;
4664         if (name[0] != 0)
4665           {
4666             if (target_switches[j].value < 0)
4667               target_flags_explicit |= -target_switches[j].value;
4668             else
4669               target_flags_explicit |= target_switches[j].value;
4670           }
4671         valid_target_option = 1;
4672       }
4673
4674 #ifdef TARGET_OPTIONS
4675   if (!valid_target_option)
4676     for (j = 0; j < ARRAY_SIZE (target_options); j++)
4677       {
4678         int len = strlen (target_options[j].prefix);
4679         if (!strncmp (target_options[j].prefix, name, len))
4680           {
4681             *target_options[j].variable = name + len;
4682             valid_target_option = 1;
4683           }
4684       }
4685 #endif
4686
4687   if (!valid_target_option)
4688     error ("invalid option `%s'", name);
4689 }
4690 \f
4691 /* Print version information to FILE.
4692    Each line begins with INDENT (for the case where FILE is the
4693    assembler output file).  */
4694
4695 static void
4696 print_version (file, indent)
4697      FILE *file;
4698      const char *indent;
4699 {
4700 #ifndef __VERSION__
4701 #define __VERSION__ "[?]"
4702 #endif
4703   fnotice (file,
4704 #ifdef __GNUC__
4705            "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
4706 #else
4707            "%s%s%s version %s (%s) compiled by CC.\n"
4708 #endif
4709            , indent, *indent != 0 ? " " : "",
4710            lang_hooks.name, version_string, TARGET_NAME,
4711            indent, __VERSION__);
4712   fnotice (file, "%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n",
4713            indent, *indent != 0 ? " " : "",
4714            PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
4715 }
4716
4717 /* Print an option value and return the adjusted position in the line.
4718    ??? We don't handle error returns from fprintf (disk full); presumably
4719    other code will catch a disk full though.  */
4720
4721 static int
4722 print_single_switch (file, pos, max, indent, sep, term, type, name)
4723      FILE *file;
4724      int pos, max;
4725      const char *indent, *sep, *term, *type, *name;
4726 {
4727   /* The ultrix fprintf returns 0 on success, so compute the result we want
4728      here since we need it for the following test.  */
4729   int len = strlen (sep) + strlen (type) + strlen (name);
4730
4731   if (pos != 0
4732       && pos + len > max)
4733     {
4734       fprintf (file, "%s", term);
4735       pos = 0;
4736     }
4737   if (pos == 0)
4738     {
4739       fprintf (file, "%s", indent);
4740       pos = strlen (indent);
4741     }
4742   fprintf (file, "%s%s%s", sep, type, name);
4743   pos += len;
4744   return pos;
4745 }
4746
4747 /* Print active target switches to FILE.
4748    POS is the current cursor position and MAX is the size of a "line".
4749    Each line begins with INDENT and ends with TERM.
4750    Each switch is separated from the next by SEP.  */
4751
4752 static void
4753 print_switch_values (file, pos, max, indent, sep, term)
4754      FILE *file;
4755      int pos, max;
4756      const char *indent, *sep, *term;
4757 {
4758   size_t j;
4759   char **p;
4760
4761   /* Print the options as passed.  */
4762
4763   pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
4764                              _("options passed: "), "");
4765
4766   for (p = &save_argv[1]; *p != NULL; p++)
4767     if (**p == '-')
4768       {
4769         /* Ignore these.  */
4770         if (strcmp (*p, "-o") == 0)
4771           {
4772             if (p[1] != NULL)
4773               p++;
4774             continue;
4775           }
4776         if (strcmp (*p, "-quiet") == 0)
4777           continue;
4778         if (strcmp (*p, "-version") == 0)
4779           continue;
4780         if ((*p)[1] == 'd')
4781           continue;
4782
4783         pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
4784       }
4785   if (pos > 0)
4786     fprintf (file, "%s", term);
4787
4788   /* Print the -f and -m options that have been enabled.
4789      We don't handle language specific options but printing argv
4790      should suffice.  */
4791
4792   pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
4793                              _("options enabled: "), "");
4794
4795   for (j = 0; j < ARRAY_SIZE (f_options); j++)
4796     if (*f_options[j].variable == f_options[j].on_value)
4797       pos = print_single_switch (file, pos, max, indent, sep, term,
4798                                  "-f", f_options[j].string);
4799
4800   /* Print target specific options.  */
4801
4802   for (j = 0; j < ARRAY_SIZE (target_switches); j++)
4803     if (target_switches[j].name[0] != '\0'
4804         && target_switches[j].value > 0
4805         && ((target_switches[j].value & target_flags)
4806             == target_switches[j].value))
4807       {
4808         pos = print_single_switch (file, pos, max, indent, sep, term,
4809                                    "-m", target_switches[j].name);
4810       }
4811
4812 #ifdef TARGET_OPTIONS
4813   for (j = 0; j < ARRAY_SIZE (target_options); j++)
4814     if (*target_options[j].variable != NULL)
4815       {
4816         char prefix[256];
4817         sprintf (prefix, "-m%s", target_options[j].prefix);
4818         pos = print_single_switch (file, pos, max, indent, sep, term,
4819                                    prefix, *target_options[j].variable);
4820       }
4821 #endif
4822
4823   fprintf (file, "%s", term);
4824 }
4825 \f
4826 /* Open assembly code output file.  Do this even if -fsyntax-only is
4827    on, because then the driver will have provided the name of a
4828    temporary file or bit bucket for us.  NAME is the file specified on
4829    the command line, possibly NULL.  */
4830 static void
4831 init_asm_output (name)
4832      const char *name;
4833 {
4834   if (name == NULL && asm_file_name == 0)
4835     asm_out_file = stdout;
4836   else
4837     {
4838       if (asm_file_name == 0)
4839         {
4840           int len = strlen (dump_base_name);
4841           char *dumpname = (char *) xmalloc (len + 6);
4842           memcpy (dumpname, dump_base_name, len + 1);
4843           strip_off_ending (dumpname, len);
4844           strcat (dumpname, ".s");
4845           asm_file_name = dumpname;
4846         }
4847       if (!strcmp (asm_file_name, "-"))
4848         asm_out_file = stdout;
4849       else
4850         asm_out_file = fopen (asm_file_name, "w+");
4851       if (asm_out_file == 0)
4852         fatal_io_error ("can't open %s for writing", asm_file_name);
4853     }
4854
4855 #ifdef IO_BUFFER_SIZE
4856   setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
4857            _IOFBF, IO_BUFFER_SIZE);
4858 #endif
4859
4860   if (!flag_syntax_only)
4861     {
4862 #ifdef ASM_FILE_START
4863       ASM_FILE_START (asm_out_file);
4864 #endif
4865
4866 #ifdef ASM_COMMENT_START
4867       if (flag_verbose_asm)
4868         {
4869           /* Print the list of options in effect.  */
4870           print_version (asm_out_file, ASM_COMMENT_START);
4871           print_switch_values (asm_out_file, 0, MAX_LINE,
4872                                ASM_COMMENT_START, " ", "\n");
4873           /* Add a blank line here so it appears in assembler output but not
4874              screen output.  */
4875           fprintf (asm_out_file, "\n");
4876         }
4877 #endif
4878     }
4879 }
4880 \f
4881 /* Initialization of the front end environment, before command line
4882    options are parsed.  Signal handlers, internationalization etc.
4883    ARGV0 is main's argv[0].  */
4884 static void
4885 general_init (argv0)
4886      char *argv0;
4887 {
4888   char *p;
4889
4890   p = argv0 + strlen (argv0);
4891   while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
4892     --p;
4893   progname = p;
4894
4895   xmalloc_set_program_name (progname);
4896
4897   hex_init ();
4898
4899   gcc_init_libintl ();
4900
4901   /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages.  */
4902 #ifdef SIGSEGV
4903   signal (SIGSEGV, crash_signal);
4904 #endif
4905 #ifdef SIGILL
4906   signal (SIGILL, crash_signal);
4907 #endif
4908 #ifdef SIGBUS
4909   signal (SIGBUS, crash_signal);
4910 #endif
4911 #ifdef SIGABRT
4912   signal (SIGABRT, crash_signal);
4913 #endif
4914 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
4915   signal (SIGIOT, crash_signal);
4916 #endif
4917 #ifdef SIGFPE
4918   signal (SIGFPE, crash_signal);
4919 #endif
4920
4921   /* Other host-specific signal setup.  */
4922   (*host_hooks.extra_signals)();
4923
4924   /* Initialize the diagnostics reporting machinery, so option parsing
4925      can give warnings and errors.  */
4926   diagnostic_initialize (global_dc);
4927
4928   /* Initialize the garbage-collector, string pools and tree type hash
4929      table.  */
4930   init_ggc ();
4931   init_stringpool ();
4932   init_ttree ();
4933 }
4934 \f
4935 /* Parse command line options and set default flag values, called
4936    after language-independent option-independent initialization.  Do
4937    minimal options processing.  Outputting diagnostics is OK, but GC
4938    and identifier hashtables etc. are not initialized yet.
4939
4940    Return nonzero to suppress compiler back end initialization.  */
4941 static void
4942 parse_options_and_default_flags (argc, argv)
4943      int argc;
4944      char **argv;
4945 {
4946   int i;
4947
4948   /* Save in case md file wants to emit args as a comment.  */
4949   save_argc = argc;
4950   save_argv = argv;
4951
4952   /* Initialize register usage now so switches may override.  */
4953   init_reg_sets ();
4954
4955   /* Register the language-independent parameters.  */
4956   add_params (lang_independent_params, LAST_PARAM);
4957
4958   /* This must be done after add_params but before argument processing.  */
4959   init_ggc_heuristics();
4960
4961   /* Perform language-specific options initialization.  */
4962   (*lang_hooks.init_options) ();
4963
4964   /* Scan to see what optimization level has been specified.  That will
4965      determine the default value of many flags.  */
4966   for (i = 1; i < argc; i++)
4967     {
4968       if (!strcmp (argv[i], "-O"))
4969         {
4970           optimize = 1;
4971           optimize_size = 0;
4972         }
4973       else if (argv[i][0] == '-' && argv[i][1] == 'O')
4974         {
4975           /* Handle -Os, -O2, -O3, -O69, ...  */
4976           char *p = &argv[i][2];
4977
4978           if ((p[0] == 's') && (p[1] == 0))
4979             {
4980               optimize_size = 1;
4981
4982               /* Optimizing for size forces optimize to be 2.  */
4983               optimize = 2;
4984             }
4985           else
4986             {
4987               const int optimize_val = read_integral_parameter (p, p - 2, -1);
4988               if (optimize_val != -1)
4989                 {
4990                   optimize = optimize_val;
4991                   optimize_size = 0;
4992                 }
4993             }
4994         }
4995     }
4996
4997   if (!optimize)
4998     {
4999       flag_merge_constants = 0;
5000     }
5001
5002   if (optimize >= 1)
5003     {
5004       flag_defer_pop = 1;
5005       flag_thread_jumps = 1;
5006 #ifdef DELAY_SLOTS
5007       flag_delayed_branch = 1;
5008 #endif
5009 #ifdef CAN_DEBUG_WITHOUT_FP
5010       flag_omit_frame_pointer = 1;
5011 #endif
5012       flag_guess_branch_prob = 1;
5013       flag_cprop_registers = 1;
5014       flag_loop_optimize = 1;
5015       flag_crossjumping = 1;
5016       flag_if_conversion = 1;
5017       flag_if_conversion2 = 1;
5018     }
5019
5020   if (optimize >= 2)
5021     {
5022       flag_optimize_sibling_calls = 1;
5023       flag_cse_follow_jumps = 1;
5024       flag_cse_skip_blocks = 1;
5025       flag_gcse = 1;
5026       flag_expensive_optimizations = 1;
5027       flag_strength_reduce = 1;
5028       flag_rerun_cse_after_loop = 1;
5029       flag_rerun_loop_opt = 1;
5030       flag_caller_saves = 1;
5031       flag_force_mem = 1;
5032       flag_peephole2 = 1;
5033 #ifdef INSN_SCHEDULING
5034       flag_schedule_insns = 1;
5035       flag_schedule_insns_after_reload = 1;
5036 #endif
5037       flag_regmove = 1;
5038       flag_strict_aliasing = 1;
5039       flag_delete_null_pointer_checks = 1;
5040       flag_reorder_blocks = 1;
5041       flag_reorder_functions = 1;
5042     }
5043
5044   if (optimize >= 3)
5045     {
5046       flag_inline_functions = 1;
5047       flag_rename_registers = 1;
5048       flag_unswitch_loops = 1;
5049       flag_unit_at_a_time = 1;
5050     }
5051
5052   if (optimize < 2 || optimize_size)
5053     {
5054       align_loops = 1;
5055       align_jumps = 1;
5056       align_labels = 1;
5057       align_functions = 1;
5058
5059       /* Don't reorder blocks when optimizing for size because extra
5060          jump insns may be created; also barrier may create extra padding.
5061
5062          More correctly we should have a block reordering mode that tried
5063          to minimize the combined size of all the jumps.  This would more
5064          or less automatically remove extra jumps, but would also try to
5065          use more short jumps instead of long jumps.  */
5066       flag_reorder_blocks = 0;
5067     }
5068
5069   /* Initialize whether `char' is signed.  */
5070   flag_signed_char = DEFAULT_SIGNED_CHAR;
5071 #ifdef DEFAULT_SHORT_ENUMS
5072   /* Initialize how much space enums occupy, by default.  */
5073   flag_short_enums = DEFAULT_SHORT_ENUMS;
5074 #endif
5075
5076   /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
5077      modify it.  */
5078   target_flags = 0;
5079   set_target_switch ("");
5080
5081   /* Unwind tables are always present in an ABI-conformant IA-64
5082      object file, so the default should be ON.  */
5083 #ifdef IA64_UNWIND_INFO
5084   flag_unwind_tables = IA64_UNWIND_INFO;
5085 #endif
5086
5087 #ifdef OPTIMIZATION_OPTIONS
5088   /* Allow default optimizations to be specified on a per-machine basis.  */
5089   OPTIMIZATION_OPTIONS (optimize, optimize_size);
5090 #endif
5091
5092   /* Perform normal command line switch decoding.  */
5093   for (i = 1; i < argc;)
5094     {
5095       int lang_processed;
5096       int indep_processed;
5097
5098       /* Give the language a chance to decode the option for itself.  */
5099       lang_processed = (*lang_hooks.decode_option) (argc - i, argv + i);
5100
5101       if (lang_processed >= 0)
5102         /* Now see if the option also has a language independent meaning.
5103            Some options are both language specific and language independent,
5104            eg --help.  */
5105         indep_processed = independent_decode_option (argc - i, argv + i);
5106       else
5107         {
5108           lang_processed = -lang_processed;
5109           indep_processed = 0;
5110         }
5111
5112       if (lang_processed || indep_processed)
5113         i += MAX (lang_processed, indep_processed);
5114       else
5115         {
5116           const char *option = NULL;
5117           const char *lang = NULL;
5118           unsigned int j;
5119
5120           /* It is possible that the command line switch is not valid for the
5121              current language, but it is valid for another language.  In order
5122              to be compatible with previous versions of the compiler (which
5123              did not issue an error message in this case) we check for this
5124              possibility here.  If we do find a match, then if extra_warnings
5125              is set we generate a warning message, otherwise we will just
5126              ignore the option.  */
5127           for (j = 0; j < ARRAY_SIZE (documented_lang_options); j++)
5128             {
5129               option = documented_lang_options[j].option;
5130
5131               if (option == NULL)
5132                 lang = documented_lang_options[j].description;
5133               else if (! strncmp (argv[i], option, strlen (option)))
5134                 break;
5135             }
5136
5137           if (j != ARRAY_SIZE (documented_lang_options))
5138             {
5139               if (extra_warnings)
5140                 {
5141                   warning ("ignoring command line option '%s'", argv[i]);
5142                   if (lang)
5143                     warning
5144                       ("(it is valid for %s but not the selected language)",
5145                        lang);
5146                 }
5147             }
5148           else if (argv[i][0] == '-' && argv[i][1] == 'g')
5149             warning ("`%s': unknown or unsupported -g option", &argv[i][2]);
5150           else
5151             error ("unrecognized option `%s'", argv[i]);
5152
5153           i++;
5154         }
5155     }
5156
5157   if (flag_no_inline == 2)
5158     flag_no_inline = 0;
5159   else
5160     flag_really_no_inline = flag_no_inline;
5161
5162   /* Set flag_no_inline before the post_options () hook.  The C front
5163      ends use it to determine tree inlining defaults.  FIXME: such
5164      code should be lang-independent when all front ends use tree
5165      inlining, in which case it, and this condition, should be moved
5166      to the top of process_options() instead.  */
5167   if (optimize == 0)
5168     {
5169       /* Inlining does not work if not optimizing,
5170          so force it not to be done.  */
5171       flag_no_inline = 1;
5172       warn_inline = 0;
5173
5174       /* The c_decode_option function and decode_option hook set
5175          this to `2' if -Wall is used, so we can avoid giving out
5176          lots of errors for people who don't realize what -Wall does.  */
5177       if (warn_uninitialized == 1)
5178         warning ("-Wuninitialized is not supported without -O");
5179     }
5180
5181   if (flag_really_no_inline == 2)
5182     flag_really_no_inline = flag_no_inline;
5183 }
5184 \f
5185 /* Process the options that have been parsed.  */
5186 static void
5187 process_options ()
5188 {
5189   /* Allow the front end to perform consistency checks and do further
5190      initialization based on the command line options.  This hook also
5191      sets the original filename if appropriate (e.g. foo.i -> foo.c)
5192      so we can correctly initialize debug output.  */
5193   no_backend = (*lang_hooks.post_options) (&filename);
5194   main_input_filename = input_filename = filename;
5195
5196 #ifdef OVERRIDE_OPTIONS
5197   /* Some machines may reject certain combinations of options.  */
5198   OVERRIDE_OPTIONS;
5199 #endif
5200
5201   /* Set aux_base_name if not already set.  */
5202   if (aux_base_name)
5203     ;
5204   else if (filename)
5205     {
5206       char *name = xstrdup (lbasename (filename));
5207       
5208       strip_off_ending (name, strlen (name));
5209       aux_base_name = name;
5210     }
5211   else
5212     aux_base_name = "gccaux";
5213
5214   /* Set up the align_*_log variables, defaulting them to 1 if they
5215      were still unset.  */
5216   if (align_loops <= 0) align_loops = 1;
5217   if (align_loops_max_skip > align_loops || !align_loops)
5218     align_loops_max_skip = align_loops - 1;
5219   align_loops_log = floor_log2 (align_loops * 2 - 1);
5220   if (align_jumps <= 0) align_jumps = 1;
5221   if (align_jumps_max_skip > align_jumps || !align_jumps)
5222     align_jumps_max_skip = align_jumps - 1;
5223   align_jumps_log = floor_log2 (align_jumps * 2 - 1);
5224   if (align_labels <= 0) align_labels = 1;
5225   align_labels_log = floor_log2 (align_labels * 2 - 1);
5226   if (align_labels_max_skip > align_labels || !align_labels)
5227     align_labels_max_skip = align_labels - 1;
5228   if (align_functions <= 0) align_functions = 1;
5229   align_functions_log = floor_log2 (align_functions * 2 - 1);
5230
5231   /* Unrolling all loops implies that standard loop unrolling must also
5232      be done.  */
5233   if (flag_unroll_all_loops)
5234     flag_unroll_loops = 1;
5235
5236   if (flag_unroll_loops)
5237     {
5238       flag_old_unroll_loops = 0;
5239       flag_old_unroll_all_loops = 0;
5240     }
5241
5242   if (flag_old_unroll_all_loops)
5243     flag_old_unroll_loops = 1;
5244
5245   /* Old loop unrolling requires that strength_reduction be on also.  Silently
5246      turn on strength reduction here if it isn't already on.  Also, the loop
5247      unrolling code assumes that cse will be run after loop, so that must
5248      be turned on also.  */
5249   if (flag_old_unroll_loops)
5250     {
5251       flag_strength_reduce = 1;
5252       flag_rerun_cse_after_loop = 1;
5253     }
5254   if (flag_unroll_loops || flag_peel_loops)
5255     flag_rerun_cse_after_loop = 1;
5256
5257   if (flag_non_call_exceptions)
5258     flag_asynchronous_unwind_tables = 1;
5259   if (flag_asynchronous_unwind_tables)
5260     flag_unwind_tables = 1;
5261
5262   /* Disable unit-at-a-time mode for frontends not supporting callgraph
5263      interface.  */
5264   if (flag_unit_at_a_time && ! lang_hooks.callgraph.expand_function)
5265     flag_unit_at_a_time = 0;
5266
5267   /* Warn about options that are not supported on this machine.  */
5268 #ifndef INSN_SCHEDULING
5269   if (flag_schedule_insns || flag_schedule_insns_after_reload)
5270     warning ("instruction scheduling not supported on this target machine");
5271 #endif
5272 #ifndef DELAY_SLOTS
5273   if (flag_delayed_branch)
5274     warning ("this target machine does not have delayed branches");
5275 #endif
5276
5277   user_label_prefix = USER_LABEL_PREFIX;
5278   if (flag_leading_underscore != -1)
5279     {
5280       /* If the default prefix is more complicated than "" or "_",
5281          issue a warning and ignore this option.  */
5282       if (user_label_prefix[0] == 0 ||
5283           (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
5284         {
5285           user_label_prefix = flag_leading_underscore ? "_" : "";
5286         }
5287       else
5288         warning ("-f%sleading-underscore not supported on this target machine",
5289                  flag_leading_underscore ? "" : "no-");
5290     }
5291
5292   /* If we are in verbose mode, write out the version and maybe all the
5293      option flags in use.  */
5294   if (version_flag)
5295     {
5296       print_version (stderr, "");
5297       if (! quiet_flag)
5298         print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
5299     }
5300
5301   if (! quiet_flag  || flag_detailed_statistics)
5302     time_report = 1;
5303
5304   if (flag_syntax_only)
5305     {
5306       write_symbols = NO_DEBUG;
5307       profile_flag = 0;
5308     }
5309
5310   /* Now we know write_symbols, set up the debug hooks based on it.
5311      By default we do nothing for debug output.  */
5312 #if defined(DBX_DEBUGGING_INFO)
5313   if (write_symbols == DBX_DEBUG)
5314     debug_hooks = &dbx_debug_hooks;
5315 #endif
5316 #if defined(XCOFF_DEBUGGING_INFO)
5317   if (write_symbols == XCOFF_DEBUG)
5318     debug_hooks = &xcoff_debug_hooks;
5319 #endif
5320 #ifdef SDB_DEBUGGING_INFO
5321   if (write_symbols == SDB_DEBUG)
5322     debug_hooks = &sdb_debug_hooks;
5323 #endif
5324 #ifdef DWARF_DEBUGGING_INFO
5325   if (write_symbols == DWARF_DEBUG)
5326     debug_hooks = &dwarf_debug_hooks;
5327 #endif
5328 #ifdef DWARF2_DEBUGGING_INFO
5329   if (write_symbols == DWARF2_DEBUG)
5330     debug_hooks = &dwarf2_debug_hooks;
5331 #endif
5332 #ifdef VMS_DEBUGGING_INFO
5333   if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
5334     debug_hooks = &vmsdbg_debug_hooks;
5335 #endif
5336
5337   /* If auxiliary info generation is desired, open the output file.
5338      This goes in the same directory as the source file--unlike
5339      all the other output files.  */
5340   if (flag_gen_aux_info)
5341     {
5342       aux_info_file = fopen (aux_info_file_name, "w");
5343       if (aux_info_file == 0)
5344         fatal_io_error ("can't open %s", aux_info_file_name);
5345     }
5346
5347   if (! targetm.have_named_sections)
5348     {
5349       if (flag_function_sections)
5350         {
5351           warning ("-ffunction-sections not supported for this target");
5352           flag_function_sections = 0;
5353         }
5354       if (flag_data_sections)
5355         {
5356           warning ("-fdata-sections not supported for this target");
5357           flag_data_sections = 0;
5358         }
5359     }
5360
5361   if (flag_function_sections && profile_flag)
5362     {
5363       warning ("-ffunction-sections disabled; it makes profiling impossible");
5364       flag_function_sections = 0;
5365     }
5366
5367 #ifndef HAVE_prefetch
5368   if (flag_prefetch_loop_arrays)
5369     {
5370       warning ("-fprefetch-loop-arrays not supported for this target");
5371       flag_prefetch_loop_arrays = 0;
5372     }
5373 #else
5374   if (flag_prefetch_loop_arrays && !HAVE_prefetch)
5375     {
5376       warning ("-fprefetch-loop-arrays not supported for this target (try -march switches)");
5377       flag_prefetch_loop_arrays = 0;
5378     }
5379 #endif
5380
5381   /* This combination of options isn't handled for i386 targets and doesn't
5382      make much sense anyway, so don't allow it.  */
5383   if (flag_prefetch_loop_arrays && optimize_size)
5384     {
5385       warning ("-fprefetch-loop-arrays is not supported with -Os");
5386       flag_prefetch_loop_arrays = 0;
5387     }
5388
5389 #ifndef OBJECT_FORMAT_ELF
5390   if (flag_function_sections && write_symbols != NO_DEBUG)
5391     warning ("-ffunction-sections may affect debugging on some targets");
5392 #endif
5393
5394     /* The presence of IEEE signaling NaNs, implies all math can trap.  */
5395     if (flag_signaling_nans)
5396       flag_trapping_math = 1;
5397 }
5398 \f
5399 /* Initialize the compiler back end.  */
5400 static void
5401 backend_init ()
5402 {
5403   /* init_emit_once uses reg_raw_mode and therefore must be called
5404      after init_regs which initialized reg_raw_mode.  */
5405   init_regs ();
5406   init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
5407                   || debug_info_level == DINFO_LEVEL_VERBOSE
5408 #ifdef VMS_DEBUGGING_INFO
5409                     /* Enable line number info for traceback */
5410                     || debug_info_level > DINFO_LEVEL_NONE
5411 #endif
5412                     || flag_test_coverage
5413                     || warn_notreached);
5414   init_fake_stack_mems ();
5415   init_alias_once ();
5416   init_loop ();
5417   init_reload ();
5418   init_function_once ();
5419   init_varasm_once ();
5420
5421   /* The following initialization functions need to generate rtl, so
5422      provide a dummy function context for them.  */
5423   init_dummy_function_start ();
5424   init_expmed ();
5425   if (flag_caller_saves)
5426     init_caller_save ();
5427   expand_dummy_function_end ();
5428 }
5429 \f
5430 /* Language-dependent initialization.  Returns nonzero on success.  */
5431 static int
5432 lang_dependent_init (name)
5433      const char *name;
5434 {
5435   if (dump_base_name == 0)
5436     dump_base_name = name ? name : "gccdump";
5437
5438   /* Other front-end initialization.  */
5439   if ((*lang_hooks.init) () == 0)
5440     return 0;
5441
5442   init_asm_output (name);
5443
5444   /* These create various _DECL nodes, so need to be called after the
5445      front end is initialized.  */
5446   init_eh ();
5447   init_optabs ();
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_expr_once ();
5453   expand_dummy_function_end ();
5454
5455   /* Put an entry on the input file stack for the main input file.  */
5456   push_srcloc (input_filename, 0);
5457
5458   /* If dbx symbol table desired, initialize writing it and output the
5459      predefined types.  */
5460   timevar_push (TV_SYMOUT);
5461
5462 #ifdef DWARF2_UNWIND_INFO
5463   if (dwarf2out_do_frame ())
5464     dwarf2out_frame_init ();
5465 #endif
5466
5467   /* Now we have the correct original filename, we can initialize
5468      debug output.  */
5469   (*debug_hooks->init) (name);
5470
5471   timevar_pop (TV_SYMOUT);
5472
5473   return 1;
5474 }
5475 \f
5476 /* Clean up: close opened files, etc.  */
5477
5478 static void
5479 finalize ()
5480 {
5481   /* Close the dump files.  */
5482   if (flag_gen_aux_info)
5483     {
5484       fclose (aux_info_file);
5485       if (errorcount)
5486         unlink (aux_info_file_name);
5487     }
5488
5489   /* Close non-debugging input and output files.  Take special care to note
5490      whether fclose returns an error, since the pages might still be on the
5491      buffer chain while the file is open.  */
5492
5493   if (asm_out_file)
5494     {
5495       if (ferror (asm_out_file) != 0)
5496         fatal_io_error ("error writing to %s", asm_file_name);
5497       if (fclose (asm_out_file) != 0)
5498         fatal_io_error ("error closing %s", asm_file_name);
5499     }
5500
5501   /* Do whatever is necessary to finish printing the graphs.  */
5502   if (graph_dump_format != no_graph)
5503     {
5504       int i;
5505
5506       for (i = 0; i < (int) DFI_MAX; ++i)
5507         if (dump_file[i].initialized && dump_file[i].graph_dump_p)
5508           {
5509             char seq[16];
5510             char *suffix;
5511
5512             sprintf (seq, DUMPFILE_FORMAT, i);
5513             suffix = concat (seq, dump_file[i].extension, NULL);
5514             finish_graph_dump_file (dump_base_name, suffix);
5515             free (suffix);
5516           }
5517     }
5518
5519   if (mem_report)
5520     {
5521       ggc_print_statistics ();
5522       stringpool_statistics ();
5523       dump_tree_statistics ();
5524     }
5525
5526   /* Free up memory for the benefit of leak detectors.  */
5527   free_reg_info ();
5528
5529   /* Language-specific end of compilation actions.  */
5530   (*lang_hooks.finish) ();
5531 }
5532 \f
5533 /* Initialize the compiler, and compile the input file.  */
5534 static void
5535 do_compile ()
5536 {
5537   /* We cannot start timing until after options are processed since that
5538      says if we run timers or not.  */
5539   init_timevar ();
5540   timevar_start (TV_TOTAL);
5541
5542   /* Set up the back-end if requested.  */
5543   if (!no_backend)
5544     backend_init ();
5545
5546   /* Language-dependent initialization.  Returns true on success.  */
5547   if (lang_dependent_init (filename))
5548     compile_file ();
5549
5550   finalize ();
5551
5552   /* Stop timing and print the times.  */
5553   timevar_stop (TV_TOTAL);
5554   timevar_print (stderr);
5555 }
5556 \f
5557 /* Entry point of cc1, cc1plus, jc1, f771, etc.
5558    Decode command args, then call compile_file.
5559    Exit code is FATAL_EXIT_CODE if can't open files or if there were
5560    any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
5561
5562    It is not safe to call this function more than once.  */
5563
5564 int
5565 toplev_main (argc, argv)
5566      int argc;
5567      char **argv;
5568 {
5569   /* Initialization of GCC's environment, and diagnostics.  */
5570   general_init (argv[0]);
5571
5572   /* Parse the options and do minimal processing; basically just
5573      enough to default flags appropriately.  */
5574   parse_options_and_default_flags (argc, argv);
5575
5576   /* Exit early if we can (e.g. -help).  */
5577   if (!exit_after_options)
5578     {
5579       process_options ();
5580
5581       /* Don't do any more if an error has already occurred.  */
5582       if (!errorcount)
5583         do_compile ();
5584     }
5585
5586   if (errorcount || sorrycount)
5587     return (FATAL_EXIT_CODE);
5588
5589   return (SUCCESS_EXIT_CODE);
5590 }