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