OSDN Git Service

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