OSDN Git Service

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