OSDN Git Service

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