OSDN Git Service

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