OSDN Git Service

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