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
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
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
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. */
28 #undef FLOAT /* This is for hpux. They should change hpux. */
29 #undef FFS /* Some systems define this in param.h. */
31 #include "coretypes.h"
35 #ifdef HAVE_SYS_RESOURCE_H
36 # include <sys/resource.h>
39 #ifdef HAVE_SYS_TIMES_H
40 # include <sys/times.h>
48 #include "insn-attr.h"
49 #include "insn-config.h"
50 #include "insn-flags.h"
51 #include "hard-reg-set.h"
58 #include "basic-block.h"
65 #include "diagnostic.h"
69 #include "dwarf2asm.h"
70 #include "integrate.h"
74 #include "langhooks.h"
75 #include "cfglayout.h"
77 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
78 #include "dwarf2out.h"
81 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
85 #ifdef SDB_DEBUGGING_INFO
89 #ifdef XCOFF_DEBUGGING_INFO
90 #include "xcoffout.h" /* Needed for external data
91 declarations for e.g. AIX 4.x. */
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 extern void reg_alloc
PARAMS ((void));
102 static void general_init
PARAMS ((char *));
103 static void parse_options_and_default_flags
PARAMS ((int, char **));
104 static void do_compile
PARAMS ((void));
105 static void process_options
PARAMS ((void));
106 static void backend_init
PARAMS ((void));
107 static int lang_dependent_init
PARAMS ((const char *));
108 static void init_asm_output
PARAMS ((const char *));
109 static void finalize
PARAMS ((void));
111 static void set_target_switch
PARAMS ((const char *));
113 static void crash_signal
PARAMS ((int)) ATTRIBUTE_NORETURN
;
114 static void compile_file
PARAMS ((void));
115 static void display_help
PARAMS ((void));
116 static void display_target_options
PARAMS ((void));
118 static void decode_d_option
PARAMS ((const char *));
119 static int decode_f_option
PARAMS ((const char *));
120 static int decode_W_option
PARAMS ((const char *));
121 static int decode_g_option
PARAMS ((const char *));
122 static unsigned int independent_decode_option
PARAMS ((int, char **));
124 static void print_version
PARAMS ((FILE *, const char *));
125 static int print_single_switch
PARAMS ((FILE *, int, int, const char *,
126 const char *, const char *,
127 const char *, const char *));
128 static void print_switch_values
PARAMS ((FILE *, int, int, const char *,
129 const char *, const char *));
131 /* Nonzero to dump debug info whilst parsing (-dy option). */
132 static int set_yydebug
;
134 /* Length of line when printing switch values. */
137 /* Name of program invoked, sans directories. */
139 const char *progname
;
141 /* Copy of arguments to toplev_main. */
145 /* Name of current original source file (what was input to cpp).
146 This comes from each #-command in the actual input. */
148 const char *input_filename
;
150 /* Name of top-level original source file (what was input to cpp).
151 This comes from the #-command at the beginning of the actual input.
152 If there isn't any there, then this is the cc1 input file name. */
154 const char *main_input_filename
;
156 /* Current line number in real source file. */
160 /* Nonzero if it is unsafe to create any new pseudo registers. */
163 /* Stack of currently pending input files. */
165 struct file_stack
*input_file_stack
;
167 /* Incremented on each change to input_file_stack. */
168 int input_file_stack_tick
;
170 /* Name to use as base of names for dump output files. */
172 const char *dump_base_name
;
174 /* Name to use as a base for auxiliary output files. */
176 const char *aux_base_name
;
178 /* Format to use to print dumpfile index value */
179 #ifndef DUMPFILE_FORMAT
180 #define DUMPFILE_FORMAT ".%02d."
183 /* Bit flags that specify the machine subtype we are compiling for.
184 Bits are tested using macros TARGET_... defined in the tm.h file
185 and set by `-m...' switches. Must be defined in rtlanal.c. */
187 extern int target_flags
;
189 /* A mask of target_flags that includes bit X if X was set or cleared
190 on the command line. */
192 int target_flags_explicit
;
194 /* Debug hooks - dependent upon command line options. */
196 const struct gcc_debug_hooks
*debug_hooks
= &do_nothing_debug_hooks
;
198 /* Describes a dump file. */
200 struct dump_file_info
202 /* The unique extension to apply, e.g. ".jump". */
203 const char *const extension
;
205 /* The -d<c> character that enables this dump file. */
206 char const debug_switch
;
208 /* True if there is a corresponding graph dump file. */
209 char const graph_dump_p
;
211 /* True if the user selected this dump. */
214 /* True if the files have been initialized (ie truncated). */
218 /* Enumerate the extant dump files. */
260 /* Describes all the dump files. Should be kept in order of the
261 pass and in sync with dump_file_index above.
263 Remaining -d letters:
269 static struct dump_file_info dump_file
[DFI_MAX
] =
271 { "rtl", 'r', 0, 0, 0 },
272 { "sibling", 'i', 0, 0, 0 },
273 { "eh", 'h', 0, 0, 0 },
274 { "jump", 'j', 0, 0, 0 },
275 { "ssa", 'e', 1, 0, 0 },
276 { "ssaccp", 'W', 1, 0, 0 },
277 { "ssadce", 'X', 1, 0, 0 },
278 { "ussa", 'e', 1, 0, 0 }, /* Yes, duplicate enable switch. */
279 { "null", 'u', 0, 0, 0 },
280 { "cse", 's', 0, 0, 0 },
281 { "addressof", 'F', 0, 0, 0 },
282 { "gcse", 'G', 1, 0, 0 },
283 { "loop", 'L', 1, 0, 0 },
284 { "cfg", 'f', 1, 0, 0 },
285 { "bp", 'b', 1, 0, 0 },
286 { "ce1", 'C', 1, 0, 0 },
287 { "tracer", 'T', 1, 0, 0 },
288 { "cse2", 't', 1, 0, 0 },
289 { "life", 'f', 1, 0, 0 }, /* Yes, duplicate enable switch. */
290 { "combine", 'c', 1, 0, 0 },
291 { "ce2", 'C', 1, 0, 0 },
292 { "regmove", 'N', 1, 0, 0 },
293 { "sched", 'S', 1, 0, 0 },
294 { "lreg", 'l', 1, 0, 0 },
295 { "greg", 'g', 1, 0, 0 },
296 { "postreload", 'o', 1, 0, 0 },
297 { "flow2", 'w', 1, 0, 0 },
298 { "peephole2", 'z', 1, 0, 0 },
299 { "rnreg", 'n', 1, 0, 0 },
300 { "ce3", 'E', 1, 0, 0 },
301 { "sched2", 'R', 1, 0, 0 },
302 { "stack", 'k', 1, 0, 0 },
303 { "bbro", 'B', 1, 0, 0 },
304 { "mach", 'M', 1, 0, 0 },
305 { "dbr", 'd', 0, 0, 0 },
308 static int open_dump_file
PARAMS ((enum dump_file_index
, tree
));
309 static void close_dump_file
PARAMS ((enum dump_file_index
,
310 void (*) (FILE *, rtx
), rtx
));
312 /* Other flags saying which kinds of debugging dump have been requested. */
314 int rtl_dump_and_exit
;
315 int flag_print_asm_name
;
316 static int version_flag
;
317 static char *filename
;
318 enum graph_dump_types graph_dump_format
;
320 /* Name for output file of assembly code, specified with -o. */
324 /* Value of the -G xx switch, and whether it was passed or not. */
328 /* Type(s) of debugging information we are producing (if any).
329 See flags.h for the definitions of the different possible
330 types of debugging information. */
331 enum debug_info_type write_symbols
= NO_DEBUG
;
333 /* Level of debugging information we are producing. See flags.h
334 for the definitions of the different possible levels. */
335 enum debug_info_level debug_info_level
= DINFO_LEVEL_NONE
;
337 /* Nonzero means use GNU-only extensions in the generated symbolic
338 debugging information. */
339 /* Currently, this only has an effect when write_symbols is set to
340 DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG. */
341 int use_gnu_debug_info_extensions
= 0;
343 /* Nonzero means do optimizations. -O.
344 Particular numeric values stand for particular amounts of optimization;
345 thus, -O2 stores 2 here. However, the optimizations beyond the basic
346 ones are not controlled directly by this variable. Instead, they are
347 controlled by individual `flag_...' variables that are defaulted
348 based on this variable. */
352 /* Nonzero means optimize for size. -Os.
353 The only valid values are zero and nonzero. When optimize_size is
354 nonzero, optimize defaults to 2, but certain individual code
355 bloating optimizations are disabled. */
357 int optimize_size
= 0;
359 /* Nonzero if we should exit after parsing options. */
360 static int exit_after_options
= 0;
362 /* The FUNCTION_DECL for the function currently being compiled,
363 or 0 if between functions. */
364 tree current_function_decl
;
366 /* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
368 tree current_function_func_begin_label
;
370 /* Nonzero if doing dwarf2 duplicate elimination. */
372 int flag_eliminate_dwarf2_dups
= 0;
374 /* Nonzero if generating code to do profiling. */
376 int profile_flag
= 0;
378 /* Nonzero if generating code to profile program flow graph arcs. */
380 int profile_arc_flag
= 0;
382 /* Nonzero if generating info for gcov to calculate line test coverage. */
384 int flag_test_coverage
= 0;
386 /* Nonzero indicates that branch taken probabilities should be calculated. */
388 int flag_branch_probabilities
= 0;
390 /* Nonzero if basic blocks should be reordered. */
392 int flag_reorder_blocks
= 0;
394 /* Nonzero if functions should be reordered. */
396 int flag_reorder_functions
= 0;
398 /* Nonzero if registers should be renamed. */
400 int flag_rename_registers
= 0;
401 int flag_cprop_registers
= 0;
403 /* Nonzero for -pedantic switch: warn about anything
404 that standard spec forbids. */
408 /* Temporarily suppress certain warnings.
409 This is set while reading code from a system header file. */
411 int in_system_header
= 0;
413 /* Don't print functions as they are compiled. -quiet. */
417 /* Print times taken by the various passes. -ftime-report. */
421 /* Print memory still in use at end of compilation (which may have little
422 to do with peak memory consumption). -fmem-report. */
426 /* Nonzero means to collect statistics which might be expensive
427 and to print them when we are done. */
428 int flag_detailed_statistics
= 0;
433 /* Nonzero means `char' should be signed. */
435 int flag_signed_char
;
437 /* Nonzero means give an enum type only as many bytes as it needs. */
439 int flag_short_enums
;
441 /* Nonzero for -fcaller-saves: allocate values in regs that need to
442 be saved across function calls, if that produces overall better code.
443 Optional now, so people can test it. */
445 #ifdef DEFAULT_CALLER_SAVES
446 int flag_caller_saves
= 1;
448 int flag_caller_saves
= 0;
451 /* Nonzero if structures and unions should be returned in memory.
453 This should only be defined if compatibility with another compiler or
454 with an ABI is needed, because it results in slower code. */
456 #ifndef DEFAULT_PCC_STRUCT_RETURN
457 #define DEFAULT_PCC_STRUCT_RETURN 1
460 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
462 int flag_pcc_struct_return
= DEFAULT_PCC_STRUCT_RETURN
;
464 /* Nonzero for -fforce-mem: load memory value into a register
465 before arithmetic on it. This makes better cse but slower compilation. */
467 int flag_force_mem
= 0;
469 /* Nonzero for -fforce-addr: load memory address into a register before
470 reference to memory. This makes better cse but slower compilation. */
472 int flag_force_addr
= 0;
474 /* Nonzero for -fdefer-pop: don't pop args after each function call;
475 instead save them up to pop many calls' args with one insns. */
477 int flag_defer_pop
= 0;
479 /* Nonzero for -ffloat-store: don't allocate floats and doubles
480 in extended-precision registers. */
482 int flag_float_store
= 0;
484 /* Nonzero for -fcse-follow-jumps:
485 have cse follow jumps to do a more extensive job. */
487 int flag_cse_follow_jumps
;
489 /* Nonzero for -fcse-skip-blocks:
490 have cse follow a branch around a block. */
491 int flag_cse_skip_blocks
;
493 /* Nonzero for -fexpensive-optimizations:
494 perform miscellaneous relatively-expensive optimizations. */
495 int flag_expensive_optimizations
;
497 /* Nonzero for -fthread-jumps:
498 have jump optimize output of loop. */
500 int flag_thread_jumps
;
502 /* Nonzero enables strength-reduction in loop.c. */
504 int flag_strength_reduce
= 0;
506 /* Nonzero enables loop unrolling in unroll.c. Only loops for which the
507 number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
508 UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
511 int flag_unroll_loops
;
513 /* Nonzero enables loop unrolling in unroll.c. All loops are unrolled.
514 This is generally not a win. */
516 int flag_unroll_all_loops
;
518 /* Nonzero enables prefetch optimizations for arrays in loops. */
520 int flag_prefetch_loop_arrays
;
522 /* Nonzero forces all invariant computations in loops to be moved
525 int flag_move_all_movables
= 0;
527 /* Nonzero forces all general induction variables in loops to be
530 int flag_reduce_all_givs
= 0;
532 /* Nonzero to perform full register move optimization passes. This is the
535 int flag_regmove
= 0;
537 /* Nonzero for -fwritable-strings:
538 store string constants in data segment and don't uniquize them. */
540 int flag_writable_strings
= 0;
542 /* Nonzero means don't put addresses of constant functions in registers.
543 Used for compiling the Unix kernel, where strange substitutions are
544 done on the assembly output. */
546 int flag_no_function_cse
= 0;
548 /* Nonzero for -fomit-frame-pointer:
549 don't make a frame pointer in simple functions that don't require one. */
551 int flag_omit_frame_pointer
= 0;
553 /* Nonzero means place each function into its own section on those platforms
554 which support arbitrary section names and unlimited numbers of sections. */
556 int flag_function_sections
= 0;
558 /* ... and similar for data. */
560 int flag_data_sections
= 0;
562 /* Nonzero to inhibit use of define_optimization peephole opts. */
564 int flag_no_peephole
= 0;
566 /* Nonzero allows GCC to optimize sibling and tail recursive calls. */
568 int flag_optimize_sibling_calls
= 0;
570 /* Nonzero means the front end generally wants `errno' maintained by math
571 operations, like built-in SQRT. */
573 int flag_errno_math
= 1;
575 /* Nonzero means that unsafe floating-point math optimizations are allowed
576 for the sake of speed. IEEE compliance is not guaranteed, and operations
577 are allowed to assume that their arguments and results are "normal"
578 (e.g., nonnegative for SQRT). */
580 int flag_unsafe_math_optimizations
= 0;
582 /* Nonzero means that no NaNs or +-Infs are expected. */
584 int flag_finite_math_only
= 0;
586 /* Zero means that floating-point math operations cannot generate a
587 (user-visible) trap. This is the case, for example, in nonstop
588 IEEE 754 arithmetic. Trapping conditions include division by zero,
589 overflow, underflow, invalid and inexact, but does not include
590 operations on signaling NaNs (see below). */
592 int flag_trapping_math
= 1;
594 /* Nonzero means disable transformations observable by signaling NaNs.
595 This option implies that any operation on a IEEE signaling NaN can
596 generate a (user-visible) trap. */
598 int flag_signaling_nans
= 0;
600 /* 0 means straightforward implementation of complex divide acceptable.
601 1 means wide ranges of inputs must work for complex divide.
602 2 means C99-like requirements for complex divide (not yet implemented). */
604 int flag_complex_divide_method
= 0;
606 /* Nonzero means all references through pointers are volatile. */
610 /* Nonzero means treat all global and extern variables as volatile. */
612 int flag_volatile_global
;
614 /* Nonzero means treat all static variables as volatile. */
616 int flag_volatile_static
;
618 /* Nonzero means just do syntax checking; don't output anything. */
620 int flag_syntax_only
= 0;
622 /* Nonzero means perform global cse. */
624 static int flag_gcse
;
626 /* Nonzero means perform loop optimizer. */
628 static int flag_loop_optimize
;
630 /* Nonzero means perform crossjumping. */
632 static int flag_crossjumping
;
634 /* Nonzero means perform if conversion. */
636 static int flag_if_conversion
;
638 /* Nonzero means perform if conversion after reload. */
640 static int flag_if_conversion2
;
642 /* Nonzero means to use global dataflow analysis to eliminate
643 useless null pointer tests. */
645 static int flag_delete_null_pointer_checks
;
647 /* Nonzero means to do the enhanced load motion during gcse, which trys
648 to hoist loads by not killing them when a store to the same location
651 int flag_gcse_lm
= 1;
653 /* Nonzero means to perform store motion after gcse, which will try to
654 move stores closer to the exit block. Its not very effective without
657 int flag_gcse_sm
= 1;
659 /* Nonzero means to rerun cse after loop optimization. This increases
660 compilation time about 20% and picks up a few more common expressions. */
662 static int flag_rerun_cse_after_loop
;
664 /* Nonzero means to run loop optimizations twice. */
666 int flag_rerun_loop_opt
;
668 /* Nonzero for -finline-functions: ok to inline functions that look like
669 good inline candidates. */
671 int flag_inline_functions
;
673 /* Nonzero for -fkeep-inline-functions: even if we make a function
674 go inline everywhere, keep its definition around for debugging
677 int flag_keep_inline_functions
;
679 /* Nonzero means that functions will not be inlined. */
681 int flag_no_inline
= 2;
683 /* Nonzero means that we don't want inlining by virtue of -fno-inline,
684 not just because the tree inliner turned us off. */
686 int flag_really_no_inline
= 2;
688 /* Nonzero means that we should emit static const variables
689 regardless of whether or not optimization is turned on. */
691 int flag_keep_static_consts
= 1;
693 /* Nonzero means we should be saving declaration info into a .X file. */
695 int flag_gen_aux_info
= 0;
697 /* Specified name of aux-info file. */
699 static char *aux_info_file_name
;
701 /* Nonzero means make the text shared if supported. */
703 int flag_shared_data
;
705 /* Nonzero means schedule into delayed branch slots if supported. */
707 int flag_delayed_branch
;
709 /* Nonzero if we are compiling pure (sharable) code.
710 Value is 1 if we are doing "small" pic; value is 2 if we're doing
715 /* Set to the default thread-local storage (tls) model to use. */
717 enum tls_model flag_tls_default
= TLS_MODEL_GLOBAL_DYNAMIC
;
719 /* Nonzero means generate extra code for exception handling and enable
720 exception handling. */
724 /* Nonzero means generate frame unwind info table when supported. */
726 int flag_unwind_tables
= 0;
728 /* Nonzero means generate frame unwind info table exact at each insn boundary */
730 int flag_asynchronous_unwind_tables
= 0;
732 /* Nonzero means don't place uninitialized global data in common storage
737 /* Nonzero means change certain warnings into errors.
738 Usually these are warnings about failure to conform to some standard. */
740 int flag_pedantic_errors
= 0;
742 /* flag_schedule_insns means schedule insns within basic blocks (before
744 flag_schedule_insns_after_reload means schedule insns after
747 int flag_schedule_insns
= 0;
748 int flag_schedule_insns_after_reload
= 0;
750 /* The following flags have effect only for scheduling before register
753 flag_schedule_interblock means schedule insns across basic blocks.
754 flag_schedule_speculative means allow speculative motion of non-load insns.
755 flag_schedule_speculative_load means allow speculative motion of some
757 flag_schedule_speculative_load_dangerous allows speculative motion of more
760 int flag_schedule_interblock
= 1;
761 int flag_schedule_speculative
= 1;
762 int flag_schedule_speculative_load
= 0;
763 int flag_schedule_speculative_load_dangerous
= 0;
765 int flag_single_precision_constant
;
767 /* flag_branch_on_count_reg means try to replace add-1,compare,branch tupple
768 by a cheaper branch on a count register. */
769 int flag_branch_on_count_reg
= 1;
771 /* -finhibit-size-directive inhibits output of .size for ELF.
772 This is used only for compiling crtstuff.c,
773 and it may be extended to other effects
774 needed for crtstuff.c on other systems. */
775 int flag_inhibit_size_directive
= 0;
777 /* -fverbose-asm causes extra commentary information to be produced in
778 the generated assembly code (to make it more readable). This option
779 is generally only of use to those who actually need to read the
780 generated assembly code (perhaps while debugging the compiler itself).
781 -fno-verbose-asm, the default, causes the extra information
782 to be omitted and is useful when comparing two assembler files. */
784 int flag_verbose_asm
= 0;
786 /* -dA causes debug commentary information to be produced in
787 the generated assembly code (to make it more readable). This option
788 is generally only of use to those who actually need to read the
789 generated assembly code (perhaps while debugging the compiler itself).
790 Currently, this switch is only used by dwarfout.c; however, it is intended
791 to be a catchall for printing debug information in the assembler file. */
793 int flag_debug_asm
= 0;
795 /* -dP causes the rtl to be emitted as a comment in assembly. */
797 int flag_dump_rtl_in_asm
= 0;
799 /* -fgnu-linker specifies use of the GNU linker for initializations.
800 (Or, more generally, a linker that handles initializations.)
801 -fno-gnu-linker says that collect2 will be used. */
803 int flag_gnu_linker
= 0;
805 int flag_gnu_linker
= 1;
808 /* Nonzero means put zero initialized data in the bss section. */
809 int flag_zero_initialized_in_bss
= 1;
814 /* Enable ssa conditional constant propagation. */
815 int flag_ssa_ccp
= 0;
817 /* Enable ssa aggressive dead code elimination. */
818 int flag_ssa_dce
= 0;
820 /* Tag all structures with __attribute__(packed). */
821 int flag_pack_struct
= 0;
823 /* Emit code to check for stack overflow; also may cause large objects
824 to be allocated dynamically. */
825 int flag_stack_check
;
827 /* When non-NULL, indicates that whenever space is allocated on the
828 stack, the resulting stack pointer must not pass this
829 address---that is, for stacks that grow downward, the stack pointer
830 must always be greater than or equal to this address; for stacks
831 that grow upward, the stack pointer must be less than this address.
832 At present, the rtx may be either a REG or a SYMBOL_REF, although
833 the support provided depends on the backend. */
836 /* 0 if pointer arguments may alias each other. True in C.
837 1 if pointer arguments may not alias each other but may alias
839 2 if pointer arguments may not alias each other and may not
840 alias global variables. True in Fortran.
841 This defaults to 0 for C. */
842 int flag_argument_noalias
= 0;
844 /* Nonzero if we should do (language-dependent) alias analysis.
845 Typically, this analysis will assume that expressions of certain
846 types do not alias expressions of certain other types. Only used
847 if alias analysis (in general) is enabled. */
848 int flag_strict_aliasing
= 0;
850 /* Instrument functions with calls at entry and exit, for profiling. */
851 int flag_instrument_function_entry_exit
= 0;
853 /* Nonzero means ignore `#ident' directives. 0 means handle them.
854 On SVR4 targets, it also controls whether or not to emit a
855 string identifying the compiler. */
857 int flag_no_ident
= 0;
859 /* This will perform a peephole pass before sched2. */
860 int flag_peephole2
= 0;
862 /* This will try to guess branch probabilities. */
863 int flag_guess_branch_prob
= 0;
865 /* -fcheck-bounds causes gcc to generate array bounds checks.
866 For C, C++, ObjC: defaults to off.
867 For Java: defaults to on.
868 For Fortran: defaults to off. */
869 int flag_bounds_check
= 0;
871 /* This will attempt to merge constant section constants, if 1 only
872 string constants and constants from constant pool, if 2 also constant
874 int flag_merge_constants
= 1;
876 /* If one, renumber instruction UIDs to reduce the number of
877 unused UIDs if there are a lot of instructions. If greater than
878 one, unconditionally renumber instruction UIDs. */
879 int flag_renumber_insns
= 1;
881 /* If nonzero, use the graph coloring register allocator. */
882 int flag_new_regalloc
= 0;
884 /* Nonzero if we perform superblock formation. */
888 /* Values of the -falign-* flags: how much to align labels in code.
889 0 means `use default', 1 means `don't align'.
890 For each variable, there is an _log variant which is the power
891 of two not less than the variable, for .align output. */
895 int align_loops_max_skip
;
898 int align_jumps_max_skip
;
900 int align_labels_log
;
901 int align_labels_max_skip
;
903 int align_functions_log
;
905 /* Like align_functions_log above, but used by front-ends to force the
906 minimum function alignment. Zero means no alignment is forced. */
907 int force_align_functions_log
;
909 /* Table of supported debugging formats. */
912 const char *const arg
;
913 /* Since PREFERRED_DEBUGGING_TYPE isn't necessarily a
914 constant expression, we use NO_DEBUG in its place. */
915 const enum debug_info_type debug_type
;
916 const int use_extensions_p
;
917 const char *const description
;
921 { "", NO_DEBUG
, DEFAULT_GDB_EXTENSIONS
,
922 N_("Generate debugging info in default format") },
923 { "gdb", NO_DEBUG
, 1, N_("Generate debugging info in default extended format") },
924 #ifdef DBX_DEBUGGING_INFO
925 { "stabs", DBX_DEBUG
, 0, N_("Generate STABS format debug info") },
926 { "stabs+", DBX_DEBUG
, 1, N_("Generate extended STABS format debug info") },
928 #ifdef DWARF_DEBUGGING_INFO
929 { "dwarf", DWARF_DEBUG
, 0, N_("Generate DWARF-1 format debug info") },
930 { "dwarf+", DWARF_DEBUG
, 1,
931 N_("Generate extended DWARF-1 format debug info") },
933 #ifdef DWARF2_DEBUGGING_INFO
934 { "dwarf-2", DWARF2_DEBUG
, 0, N_("Generate DWARF-2 debug info") },
936 #ifdef XCOFF_DEBUGGING_INFO
937 { "xcoff", XCOFF_DEBUG
, 0, N_("Generate XCOFF format debug info") },
938 { "xcoff+", XCOFF_DEBUG
, 1, N_("Generate extended XCOFF format debug info") },
940 #ifdef SDB_DEBUGGING_INFO
941 { "coff", SDB_DEBUG
, 0, N_("Generate COFF format debug info") },
943 #ifdef VMS_DEBUGGING_INFO
944 { "vms", VMS_DEBUG
, 0, N_("Generate VMS format debug info") },
951 const char *const string
;
954 const char *const description
;
956 lang_independent_options
;
960 /* Add or remove a leading underscore from user symbols. */
961 int flag_leading_underscore
= -1;
963 /* The user symbol prefix after having resolved same. */
964 const char *user_label_prefix
;
966 static const param_info lang_independent_params
[] = {
967 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
968 { OPTION, DEFAULT, HELP },
969 #include "params.def"
974 /* Table of language-independent -f options.
975 STRING is the option name. VARIABLE is the address of the variable.
976 ON_VALUE is the value to store in VARIABLE
977 if `-fSTRING' is seen as an option.
978 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
980 static const lang_independent_options f_options
[] =
982 {"eliminate-dwarf2-dups", &flag_eliminate_dwarf2_dups
, 1,
983 N_("Perform DWARF2 duplicate elimination") },
984 {"float-store", &flag_float_store
, 1,
985 N_("Do not store floats in registers") },
986 {"volatile", &flag_volatile
, 1,
987 N_("Consider all mem refs through pointers as volatile") },
988 {"volatile-global", &flag_volatile_global
, 1,
989 N_("Consider all mem refs to global data to be volatile") },
990 {"volatile-static", &flag_volatile_static
, 1,
991 N_("Consider all mem refs to static data to be volatile") },
992 {"defer-pop", &flag_defer_pop
, 1,
993 N_("Defer popping functions args from stack until later") },
994 {"omit-frame-pointer", &flag_omit_frame_pointer
, 1,
995 N_("When possible do not generate stack frames") },
996 {"optimize-sibling-calls", &flag_optimize_sibling_calls
, 1,
997 N_("Optimize sibling and tail recursive calls") },
998 {"tracer", &flag_tracer
, 1,
999 N_("Perform superblock formation via tail duplication") },
1000 {"cse-follow-jumps", &flag_cse_follow_jumps
, 1,
1001 N_("When running CSE, follow jumps to their targets") },
1002 {"cse-skip-blocks", &flag_cse_skip_blocks
, 1,
1003 N_("When running CSE, follow conditional jumps") },
1004 {"expensive-optimizations", &flag_expensive_optimizations
, 1,
1005 N_("Perform a number of minor, expensive optimizations") },
1006 {"thread-jumps", &flag_thread_jumps
, 1,
1007 N_("Perform jump threading optimizations") },
1008 {"strength-reduce", &flag_strength_reduce
, 1,
1009 N_("Perform strength reduction optimizations") },
1010 {"unroll-loops", &flag_unroll_loops
, 1,
1011 N_("Perform loop unrolling when iteration count is known") },
1012 {"unroll-all-loops", &flag_unroll_all_loops
, 1,
1013 N_("Perform loop unrolling for all loops") },
1014 {"prefetch-loop-arrays", &flag_prefetch_loop_arrays
, 1,
1015 N_("Generate prefetch instructions, if available, for arrays in loops") },
1016 {"move-all-movables", &flag_move_all_movables
, 1,
1017 N_("Force all loop invariant computations out of loops") },
1018 {"reduce-all-givs", &flag_reduce_all_givs
, 1,
1019 N_("Strength reduce all loop general induction variables") },
1020 {"writable-strings", &flag_writable_strings
, 1,
1021 N_("Store strings in writable data section") },
1022 {"peephole", &flag_no_peephole
, 0,
1023 N_("Enable machine specific peephole optimizations") },
1024 {"force-mem", &flag_force_mem
, 1,
1025 N_("Copy memory operands into registers before using") },
1026 {"force-addr", &flag_force_addr
, 1,
1027 N_("Copy memory address constants into regs before using") },
1028 {"function-cse", &flag_no_function_cse
, 0,
1029 N_("Allow function addresses to be held in registers") },
1030 {"inline-functions", &flag_inline_functions
, 1,
1031 N_("Integrate simple functions into their callers") },
1032 {"keep-inline-functions", &flag_keep_inline_functions
, 1,
1033 N_("Generate code for funcs even if they are fully inlined") },
1034 {"inline", &flag_no_inline
, 0,
1035 N_("Pay attention to the 'inline' keyword") },
1036 {"keep-static-consts", &flag_keep_static_consts
, 1,
1037 N_("Emit static const variables even if they are not used") },
1038 {"syntax-only", &flag_syntax_only
, 1,
1039 N_("Check for syntax errors, then stop") },
1040 {"shared-data", &flag_shared_data
, 1,
1041 N_("Mark data as shared rather than private") },
1042 {"caller-saves", &flag_caller_saves
, 1,
1043 N_("Enable saving registers around function calls") },
1044 {"pcc-struct-return", &flag_pcc_struct_return
, 1,
1045 N_("Return 'short' aggregates in memory, not registers") },
1046 {"reg-struct-return", &flag_pcc_struct_return
, 0,
1047 N_("Return 'short' aggregates in registers") },
1048 {"delayed-branch", &flag_delayed_branch
, 1,
1049 N_("Attempt to fill delay slots of branch instructions") },
1050 {"gcse", &flag_gcse
, 1,
1051 N_("Perform the global common subexpression elimination") },
1052 {"gcse-lm", &flag_gcse_lm
, 1,
1053 N_("Perform enhanced load motion during global subexpression elimination") },
1054 {"gcse-sm", &flag_gcse_sm
, 1,
1055 N_("Perform store motion after global subexpression elimination") },
1056 {"loop-optimize", &flag_loop_optimize
, 1,
1057 N_("Perform the loop optimizations") },
1058 {"crossjumping", &flag_crossjumping
, 1,
1059 N_("Perform cross-jumping optimization") },
1060 {"if-conversion", &flag_if_conversion
, 1,
1061 N_("Perform conversion of conditional jumps to branchless equivalents") },
1062 {"if-conversion2", &flag_if_conversion2
, 1,
1063 N_("Perform conversion of conditional jumps to conditional execution") },
1064 {"rerun-cse-after-loop", &flag_rerun_cse_after_loop
, 1,
1065 N_("Run CSE pass after loop optimizations") },
1066 {"rerun-loop-opt", &flag_rerun_loop_opt
, 1,
1067 N_("Run the loop optimizer twice") },
1068 {"delete-null-pointer-checks", &flag_delete_null_pointer_checks
, 1,
1069 N_("Delete useless null pointer checks") },
1070 {"schedule-insns", &flag_schedule_insns
, 1,
1071 N_("Reschedule instructions before register allocation") },
1072 {"schedule-insns2", &flag_schedule_insns_after_reload
, 1,
1073 N_("Reschedule instructions after register allocation") },
1074 {"sched-interblock",&flag_schedule_interblock
, 1,
1075 N_("Enable scheduling across basic blocks") },
1076 {"sched-spec",&flag_schedule_speculative
, 1,
1077 N_("Allow speculative motion of non-loads") },
1078 {"sched-spec-load",&flag_schedule_speculative_load
, 1,
1079 N_("Allow speculative motion of some loads") },
1080 {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous
, 1,
1081 N_("Allow speculative motion of more loads") },
1082 {"branch-count-reg",&flag_branch_on_count_reg
, 1,
1083 N_("Replace add,compare,branch with branch on count reg") },
1084 {"pic", &flag_pic
, 1,
1085 N_("Generate position independent code, if possible") },
1086 {"PIC", &flag_pic
, 2, ""},
1087 {"exceptions", &flag_exceptions
, 1,
1088 N_("Enable exception handling") },
1089 {"unwind-tables", &flag_unwind_tables
, 1,
1090 N_("Just generate unwind tables for exception handling") },
1091 {"asynchronous-unwind-tables", &flag_asynchronous_unwind_tables
, 1,
1092 N_("Generate unwind tables exact at each instruction boundary") },
1093 {"non-call-exceptions", &flag_non_call_exceptions
, 1,
1094 N_("Support synchronous non-call exceptions") },
1095 {"profile-arcs", &profile_arc_flag
, 1,
1096 N_("Insert arc based program profiling code") },
1097 {"test-coverage", &flag_test_coverage
, 1,
1098 N_("Create data files needed by gcov") },
1099 {"branch-probabilities", &flag_branch_probabilities
, 1,
1100 N_("Use profiling information for branch probabilities") },
1101 {"profile", &profile_flag
, 1,
1102 N_("Enable basic program profiling code") },
1103 {"reorder-blocks", &flag_reorder_blocks
, 1,
1104 N_("Reorder basic blocks to improve code placement") },
1105 {"reorder-functions", &flag_reorder_functions
, 1,
1106 N_("Reorder functions to improve code placement") },
1107 {"rename-registers", &flag_rename_registers
, 1,
1108 N_("Do the register renaming optimization pass") },
1109 {"cprop-registers", &flag_cprop_registers
, 1,
1110 N_("Do the register copy-propagation optimization pass") },
1111 {"common", &flag_no_common
, 0,
1112 N_("Do not put uninitialized globals in the common section") },
1113 {"inhibit-size-directive", &flag_inhibit_size_directive
, 1,
1114 N_("Do not generate .size directives") },
1115 {"function-sections", &flag_function_sections
, 1,
1116 N_("place each function into its own section") },
1117 {"data-sections", &flag_data_sections
, 1,
1118 N_("place data items into their own section") },
1119 {"verbose-asm", &flag_verbose_asm
, 1,
1120 N_("Add extra commentry to assembler output") },
1121 {"gnu-linker", &flag_gnu_linker
, 1,
1122 N_("Output GNU ld formatted global initializers") },
1123 {"regmove", &flag_regmove
, 1,
1124 N_("Enables a register move optimization") },
1125 {"optimize-register-move", &flag_regmove
, 1,
1126 N_("Do the full regmove optimization pass") },
1127 {"pack-struct", &flag_pack_struct
, 1,
1128 N_("Pack structure members together without holes") },
1129 {"stack-check", &flag_stack_check
, 1,
1130 N_("Insert stack checking code into the program") },
1131 {"argument-alias", &flag_argument_noalias
, 0,
1132 N_("Specify that arguments may alias each other & globals") },
1133 {"argument-noalias", &flag_argument_noalias
, 1,
1134 N_("Assume arguments may alias globals but not each other") },
1135 {"argument-noalias-global", &flag_argument_noalias
, 2,
1136 N_("Assume arguments do not alias each other or globals") },
1137 {"strict-aliasing", &flag_strict_aliasing
, 1,
1138 N_("Assume strict aliasing rules apply") },
1139 {"align-loops", &align_loops
, 0,
1140 N_("Align the start of loops") },
1141 {"align-jumps", &align_jumps
, 0,
1142 N_("Align labels which are only reached by jumping") },
1143 {"align-labels", &align_labels
, 0,
1144 N_("Align all labels") },
1145 {"align-functions", &align_functions
, 0,
1146 N_("Align the start of functions") },
1147 {"merge-constants", &flag_merge_constants
, 1,
1148 N_("Attempt to merge identical constants accross compilation units") },
1149 {"merge-all-constants", &flag_merge_constants
, 2,
1150 N_("Attempt to merge identical constants and constant variables") },
1151 {"dump-unnumbered", &flag_dump_unnumbered
, 1,
1152 N_("Suppress output of instruction numbers and line number notes in debugging dumps") },
1153 {"instrument-functions", &flag_instrument_function_entry_exit
, 1,
1154 N_("Instrument function entry/exit with profiling calls") },
1155 {"zero-initialized-in-bss", &flag_zero_initialized_in_bss
, 1,
1156 N_("Put zero initialized data in the bss section") },
1157 {"ssa", &flag_ssa
, 1,
1158 N_("Enable SSA optimizations") },
1159 {"ssa-ccp", &flag_ssa_ccp
, 1,
1160 N_("Enable SSA conditional constant propagation") },
1161 {"ssa-dce", &flag_ssa_dce
, 1,
1162 N_("Enable aggressive SSA dead code elimination") },
1163 {"leading-underscore", &flag_leading_underscore
, 1,
1164 N_("External symbols have a leading underscore") },
1165 {"ident", &flag_no_ident
, 0,
1166 N_("Process #ident directives") },
1167 { "peephole2", &flag_peephole2
, 1,
1168 N_("Enables an rtl peephole pass run before sched2") },
1169 {"finite-math-only", &flag_finite_math_only
, 1,
1170 N_("Assume no NaNs or +-Infs are generated") },
1171 { "guess-branch-probability", &flag_guess_branch_prob
, 1,
1172 N_("Enables guessing of branch probabilities") },
1173 {"math-errno", &flag_errno_math
, 1,
1174 N_("Set errno after built-in math functions") },
1175 {"trapping-math", &flag_trapping_math
, 1,
1176 N_("Floating-point operations can trap") },
1177 {"unsafe-math-optimizations", &flag_unsafe_math_optimizations
, 1,
1178 N_("Allow math optimizations that may violate IEEE or ANSI standards") },
1179 {"signaling-nans", &flag_signaling_nans
, 1,
1180 N_("Disable optimizations observable by IEEE signaling NaNs") },
1181 {"bounds-check", &flag_bounds_check
, 1,
1182 N_("Generate code to check bounds before indexing arrays") },
1183 {"single-precision-constant", &flag_single_precision_constant
, 1,
1184 N_("Convert floating point constant to single precision constant") },
1185 {"time-report", &time_report
, 1,
1186 N_("Report time taken by each compiler pass at end of run") },
1187 {"mem-report", &mem_report
, 1,
1188 N_("Report on permanent memory allocation at end of run") },
1189 { "trapv", &flag_trapv
, 1,
1190 N_("Trap for signed overflow in addition / subtraction / multiplication") },
1191 { "new-ra", &flag_new_regalloc
, 1,
1192 N_("Use graph coloring register allocation.") },
1195 /* Table of language-specific options. */
1197 static const struct lang_opt
1199 const char *const option
;
1200 const char *const description
;
1202 documented_lang_options
[] =
1204 /* In order not to overload the --help output, the convention
1205 used here is to only describe those options which are not
1206 enabled by default. */
1209 N_("Compile just for ISO C90") },
1211 N_("Determine language standard") },
1213 { "-fsigned-bitfields", "" },
1214 { "-funsigned-bitfields",
1215 N_("Make bit-fields by unsigned by default") },
1216 { "-fno-signed-bitfields", "" },
1217 { "-fno-unsigned-bitfields","" },
1219 N_("Make 'char' be signed by default") },
1220 { "-funsigned-char",
1221 N_("Make 'char' be unsigned by default") },
1222 { "-fno-signed-char", "" },
1223 { "-fno-unsigned-char", "" },
1227 N_("Do not recognize the 'asm' keyword") },
1228 { "-fbuiltin", "" },
1230 N_("Do not recognize any built in functions") },
1232 N_("Assume normal C execution environment") },
1233 { "-fno-hosted", "" },
1235 N_("Assume that standard libraries & main might not exist") },
1236 { "-fno-freestanding", "" },
1237 { "-fcond-mismatch",
1238 N_("Allow different types as args of ? operator") },
1239 { "-fno-cond-mismatch", "" },
1240 { "-fdollars-in-identifiers",
1241 N_("Allow the use of $ inside identifiers") },
1242 { "-fno-dollars-in-identifiers", "" },
1243 { "-fpreprocessed", "" },
1244 { "-fno-preprocessed", "" },
1246 N_("Use the same size for double as for float") },
1247 { "-fno-short-double", "" },
1249 N_("Use the smallest fitting integer to hold enums") },
1250 { "-fno-short-enums", "" },
1252 N_("Override the underlying type for wchar_t to `unsigned short'") },
1253 { "-fno-short-wchar", "" },
1256 N_("Enable most warning messages") },
1257 { "-Wbad-function-cast",
1258 N_("Warn about casting functions to incompatible types") },
1259 { "-Wno-bad-function-cast", "" },
1260 { "-Wmissing-format-attribute",
1261 N_("Warn about functions which might be candidates for format attributes") },
1262 { "-Wno-missing-format-attribute", "" },
1264 N_("Warn about casts which discard qualifiers") },
1265 { "-Wno-cast-qual", "" },
1266 { "-Wchar-subscripts",
1267 N_("Warn about subscripts whose type is 'char'") },
1268 { "-Wno-char-subscripts", "" },
1270 N_("Warn if nested comments are detected") },
1271 { "-Wno-comment", "" },
1273 N_("Warn if nested comments are detected") },
1274 { "-Wno-comments", "" },
1276 N_("Warn about possibly confusing type conversions") },
1277 { "-Wno-conversion", "" },
1278 { "-Wdiv-by-zero", "" },
1279 { "-Wno-div-by-zero",
1280 N_("Do not warn about compile-time integer division by zero") },
1282 N_("Warn about testing equality of floating point numbers") },
1283 { "-Wno-float-equal", "" },
1285 N_("Warn about printf/scanf/strftime/strfmon format anomalies") },
1286 { "-Wno-format", "" },
1287 { "-Wformat-extra-args", "" },
1288 { "-Wno-format-extra-args",
1289 N_("Don't warn about too many arguments to format functions") },
1290 { "-Wformat-nonliteral",
1291 N_("Warn about non-string-literal format strings") },
1292 { "-Wno-format-nonliteral", "" },
1293 { "-Wformat-security",
1294 N_("Warn about possible security problems with format functions") },
1295 { "-Wno-format-security", "" },
1296 { "-Wformat-y2k", "" },
1297 { "-Wno-format-y2k",
1298 N_("Don't warn about strftime formats yielding 2 digit years") },
1299 { "-Wimplicit-function-declaration",
1300 N_("Warn about implicit function declarations") },
1301 { "-Wno-implicit-function-declaration", "" },
1302 { "-Werror-implicit-function-declaration", "" },
1304 N_("Warn when a declaration does not specify a type") },
1305 { "-Wno-implicit-int", "" },
1306 { "-Wimplicit", "" },
1307 { "-Wno-implicit", "" },
1309 N_("Warn about the use of the #import directive") },
1310 { "-Wno-import", "" },
1311 { "-Wlong-long","" },
1313 N_("Do not warn about using 'long long' when -pedantic") },
1315 N_("Warn about suspicious declarations of main") },
1316 { "-Wno-main", "" },
1317 { "-Wmissing-braces",
1318 N_("Warn about possibly missing braces around initializers") },
1319 { "-Wno-missing-braces", "" },
1320 { "-Wmissing-declarations",
1321 N_("Warn about global funcs without previous declarations") },
1322 { "-Wno-missing-declarations", "" },
1323 { "-Wmissing-prototypes",
1324 N_("Warn about global funcs without prototypes") },
1325 { "-Wno-missing-prototypes", "" },
1327 N_("Warn about use of multicharacter literals") },
1328 { "-Wno-multichar", "" },
1329 { "-Wnested-externs",
1330 N_("Warn about externs not at file scope level") },
1331 { "-Wno-nested-externs", "" },
1333 N_("Warn about possible missing parentheses") },
1334 { "-Wno-parentheses", "" },
1335 { "-Wpointer-arith",
1336 N_("Warn about function pointer arithmetic") },
1337 { "-Wno-pointer-arith", "" },
1338 { "-Wredundant-decls",
1339 N_("Warn about multiple declarations of the same object") },
1340 { "-Wno-redundant-decls", "" },
1342 N_("Warn whenever a function's return-type defaults to int") },
1343 { "-Wno-return-type", "" },
1344 { "-Wsequence-point",
1345 N_("Warn about possible violations of sequence point rules") },
1346 { "-Wno-sequence-point", "" },
1348 N_("Warn about signed/unsigned comparisons") },
1349 { "-Wno-sign-compare", "" },
1350 { "-Wstrict-prototypes",
1351 N_("Warn about non-prototyped function decls") },
1352 { "-Wno-strict-prototypes", "" },
1354 N_("Warn about constructs whose meanings change in ISO C") },
1355 { "-Wno-traditional", "" },
1357 N_("Warn when trigraphs are encountered") },
1358 { "-Wno-trigraphs", "" },
1360 { "-Wno-undef", "" },
1361 { "-Wunknown-pragmas",
1362 N_("Warn about unrecognized pragmas") },
1363 { "-Wno-unknown-pragmas", "" },
1364 { "-Wwrite-strings",
1365 N_("Mark strings as 'const char *'") },
1366 { "-Wno-write-strings", "" },
1368 #define DEFINE_LANG_NAME(NAME) { NULL, NAME },
1370 #include "options.h"
1374 /* Here is a table, controlled by the tm.h file, listing each -m switch
1375 and which bits in `target_switches' it should set or clear.
1376 If VALUE is positive, it is bits to set.
1377 If VALUE is negative, -VALUE is bits to clear.
1378 (The sign bit is not used so there is no confusion.) */
1382 const char *const name
;
1384 const char *const description
;
1386 target_switches
[] = TARGET_SWITCHES
;
1388 /* This table is similar, but allows the switch to have a value. */
1390 #ifdef TARGET_OPTIONS
1393 const char *const prefix
;
1394 const char **const variable
;
1395 const char *const description
;
1397 target_options
[] = TARGET_OPTIONS
;
1400 /* Options controlling warnings. */
1402 /* Don't print warning messages. -w. */
1404 int inhibit_warnings
= 0;
1406 /* Don't suppress warnings from system headers. -Wsystem-headers. */
1408 int warn_system_headers
= 0;
1410 /* Print various extra warnings. -W. */
1412 int extra_warnings
= 0;
1414 /* Treat warnings as errors. -Werror. */
1416 int warnings_are_errors
= 0;
1418 /* Nonzero to warn about unused variables, functions et.al. */
1420 int warn_unused_function
;
1421 int warn_unused_label
;
1422 int warn_unused_parameter
;
1423 int warn_unused_variable
;
1424 int warn_unused_value
;
1426 /* Nonzero to warn about code which is never reached. */
1428 int warn_notreached
;
1430 /* Nonzero to warn about variables used before they are initialized. */
1432 int warn_uninitialized
;
1434 /* Nonzero means warn about all declarations which shadow others. */
1438 /* Warn if a switch on an enum, that does not have a default case,
1439 fails to have a case for every enum value. */
1443 /* Warn if a switch does not have a default case. */
1445 int warn_switch_default
;
1447 /* Warn if a switch on an enum fails to have a case for every enum
1448 value (regardless of the presence or otherwise of a default case). */
1450 int warn_switch_enum
;
1452 /* Nonzero means warn about function definitions that default the return type
1453 or that use a null return and have a return-type other than void. */
1455 int warn_return_type
;
1457 /* Nonzero means warn about pointer casts that increase the required
1458 alignment of the target type (and might therefore lead to a crash
1459 due to a misaligned access). */
1461 int warn_cast_align
;
1463 /* Nonzero means warn about any objects definitions whose size is larger
1464 than N bytes. Also want about function definitions whose returned
1465 values are larger than N bytes. The value N is in `larger_than_size'. */
1467 int warn_larger_than
;
1468 HOST_WIDE_INT larger_than_size
;
1470 /* Nonzero means warn if inline function is too large. */
1474 /* Warn if a function returns an aggregate,
1475 since there are often incompatible calling conventions for doing this. */
1477 int warn_aggregate_return
;
1479 /* Warn if packed attribute on struct is unnecessary and inefficient. */
1483 /* Warn when gcc pads a structure to an alignment boundary. */
1487 /* Warn when an optimization pass is disabled. */
1489 int warn_disabled_optimization
;
1491 /* Warn about functions which might be candidates for attribute noreturn. */
1493 int warn_missing_noreturn
;
1495 /* Nonzero means warn about uses of __attribute__((deprecated))
1498 int warn_deprecated_decl
= 1;
1500 /* Nonzero means warn about constructs which might not be
1501 strict-aliasing safe. */
1503 int warn_strict_aliasing
;
1505 /* Likewise for -W. */
1507 static const lang_independent_options W_options
[] =
1509 {"unused-function", &warn_unused_function
, 1,
1510 N_("Warn when a function is unused") },
1511 {"unused-label", &warn_unused_label
, 1,
1512 N_("Warn when a label is unused") },
1513 {"unused-parameter", &warn_unused_parameter
, 1,
1514 N_("Warn when a function parameter is unused") },
1515 {"unused-variable", &warn_unused_variable
, 1,
1516 N_("Warn when a variable is unused") },
1517 {"unused-value", &warn_unused_value
, 1,
1518 N_("Warn when an expression value is unused") },
1519 {"system-headers", &warn_system_headers
, 1,
1520 N_("Do not suppress warnings from system headers") },
1521 {"error", &warnings_are_errors
, 1,
1522 N_("Treat all warnings as errors") },
1523 {"shadow", &warn_shadow
, 1,
1524 N_("Warn when one local variable shadows another") },
1525 {"switch", &warn_switch
, 1,
1526 N_("Warn about enumerated switches, with no default, missing a case") },
1527 {"switch-default", &warn_switch_default
, 1,
1528 N_("Warn about enumerated switches missing a default case") },
1529 {"switch-enum", &warn_switch_enum
, 1,
1530 N_("Warn about all enumerated switches missing a specific case") },
1531 {"aggregate-return", &warn_aggregate_return
, 1,
1532 N_("Warn about returning structures, unions or arrays") },
1533 {"cast-align", &warn_cast_align
, 1,
1534 N_("Warn about pointer casts which increase alignment") },
1535 {"unreachable-code", &warn_notreached
, 1,
1536 N_("Warn about code that will never be executed") },
1537 {"uninitialized", &warn_uninitialized
, 1,
1538 N_("Warn about uninitialized automatic variables") },
1539 {"inline", &warn_inline
, 1,
1540 N_("Warn when an inlined function cannot be inlined") },
1541 {"packed", &warn_packed
, 1,
1542 N_("Warn when the packed attribute has no effect on struct layout") },
1543 {"padded", &warn_padded
, 1,
1544 N_("Warn when padding is required to align struct members") },
1545 {"disabled-optimization", &warn_disabled_optimization
, 1,
1546 N_("Warn when an optimization pass is disabled") },
1547 {"deprecated-declarations", &warn_deprecated_decl
, 1,
1548 N_("Warn about uses of __attribute__((deprecated)) declarations") },
1549 {"missing-noreturn", &warn_missing_noreturn
, 1,
1550 N_("Warn about functions which might be candidates for attribute noreturn") },
1551 {"strict-aliasing", &warn_strict_aliasing
, 1,
1552 N_ ("Warn about code which might break the strict aliasing rules") }
1556 set_Wunused (setting
)
1559 warn_unused_function
= setting
;
1560 warn_unused_label
= setting
;
1561 /* Unused function parameter warnings are reported when either ``-W
1562 -Wunused'' or ``-Wunused-parameter'' is specified. Differentiate
1563 -Wunused by setting WARN_UNUSED_PARAMETER to -1. */
1565 warn_unused_parameter
= 0;
1566 else if (!warn_unused_parameter
)
1567 warn_unused_parameter
= -1;
1568 warn_unused_variable
= setting
;
1569 warn_unused_value
= setting
;
1572 /* The following routines are useful in setting all the flags that
1573 -ffast-math and -fno-fast-math imply. */
1576 set_fast_math_flags (set
)
1579 flag_trapping_math
= !set
;
1580 flag_unsafe_math_optimizations
= set
;
1581 flag_finite_math_only
= set
;
1582 flag_errno_math
= !set
;
1584 flag_signaling_nans
= 0;
1587 /* Return true iff flags are set as if -ffast-math. */
1589 fast_math_flags_set_p ()
1591 return (!flag_trapping_math
1592 && flag_unsafe_math_optimizations
1593 && flag_finite_math_only
1594 && !flag_errno_math
);
1598 /* Output files for assembler code (real compiler output)
1599 and debugging dumps. */
1602 FILE *aux_info_file
;
1603 FILE *rtl_dump_file
= NULL
;
1605 /* Decode the string P as an integral parameter.
1606 If the string is indeed an integer return its numeric value else
1607 issue an Invalid Option error for the option PNAME and return DEFVAL.
1608 If PNAME is zero just return DEFVAL, do not call error. */
1611 read_integral_parameter (p
, pname
, defval
)
1616 const char *endp
= p
;
1620 if (ISDIGIT (*endp
))
1629 error ("invalid option `%s'", pname
);
1636 /* This calls abort and is used to avoid problems when abort is a macro.
1637 It is used when we need to pass the address of abort. */
1645 /* When `malloc.c' is compiled with `rcheck' defined,
1646 it calls this function to report clobberage. */
1650 const char *s ATTRIBUTE_UNUSED
;
1655 /* Return the logarithm of X, base 2, considering X unsigned,
1656 if X is a power of 2. Otherwise, returns -1.
1658 This should be used via the `exact_log2' macro. */
1662 unsigned HOST_WIDE_INT x
;
1665 /* Test for 0 or a power of 2. */
1666 if (x
== 0 || x
!= (x
& -x
))
1668 while ((x
>>= 1) != 0)
1673 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1674 If X is 0, return -1.
1676 This should be used via the floor_log2 macro. */
1680 unsigned HOST_WIDE_INT x
;
1689 /* Handler for fatal signals, such as SIGSEGV. These are transformed
1690 into ICE messages, which is much more user friendly. */
1693 crash_signal (signo
)
1696 internal_error ("%s", strsignal (signo
));
1699 /* Strip off a legitimate source ending from the input string NAME of
1700 length LEN. Rather than having to know the names used by all of
1701 our front ends, we strip off an ending of a period followed by
1702 up to five characters. (Java uses ".class".) */
1705 strip_off_ending (name
, len
)
1710 for (i
= 2; i
< 6 && len
> i
; i
++)
1712 if (name
[len
- i
] == '.')
1714 name
[len
- i
] = '\0';
1720 /* Output a quoted string. */
1723 output_quoted_string (asm_file
, string
)
1727 #ifdef OUTPUT_QUOTED_STRING
1728 OUTPUT_QUOTED_STRING (asm_file
, string
);
1732 putc ('\"', asm_file
);
1733 while ((c
= *string
++) != 0)
1737 if (c
== '\"' || c
== '\\')
1738 putc ('\\', asm_file
);
1742 fprintf (asm_file
, "\\%03o", (unsigned char) c
);
1744 putc ('\"', asm_file
);
1748 /* Output NAME into FILE after having turned it into something
1749 usable as an identifier in a target's assembly file. */
1751 output_clean_symbol_name (file
, name
)
1755 /* Make a copy of NAME. */
1756 char *id
= xstrdup (name
);
1758 /* Make it look like a valid identifier for an assembler. */
1759 clean_symbol_name (id
);
1766 /* Output a file name in the form wanted by System V. */
1769 output_file_directive (asm_file
, input_name
)
1771 const char *input_name
;
1773 int len
= strlen (input_name
);
1774 const char *na
= input_name
+ len
;
1776 /* NA gets INPUT_NAME sans directory names. */
1777 while (na
> input_name
)
1779 if (IS_DIR_SEPARATOR (na
[-1]))
1784 #ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
1785 ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file
, na
);
1787 #ifdef ASM_OUTPUT_SOURCE_FILENAME
1788 ASM_OUTPUT_SOURCE_FILENAME (asm_file
, na
);
1790 fprintf (asm_file
, "\t.file\t");
1791 output_quoted_string (asm_file
, na
);
1792 fputc ('\n', asm_file
);
1797 /* Routine to open a dump file. Return true if the dump file is enabled. */
1800 open_dump_file (index
, decl
)
1801 enum dump_file_index index
;
1805 const char *open_arg
;
1808 if (! dump_file
[index
].enabled
)
1811 timevar_push (TV_DUMP
);
1812 if (rtl_dump_file
!= NULL
)
1813 fclose (rtl_dump_file
);
1815 sprintf (seq
, DUMPFILE_FORMAT
, index
);
1817 if (! dump_file
[index
].initialized
)
1819 /* If we've not initialized the files, do so now. */
1820 if (graph_dump_format
!= no_graph
1821 && dump_file
[index
].graph_dump_p
)
1823 dump_name
= concat (seq
, dump_file
[index
].extension
, NULL
);
1824 clean_graph_dump_file (dump_base_name
, dump_name
);
1827 dump_file
[index
].initialized
= 1;
1833 dump_name
= concat (dump_base_name
, seq
,
1834 dump_file
[index
].extension
, NULL
);
1836 rtl_dump_file
= fopen (dump_name
, open_arg
);
1837 if (rtl_dump_file
== NULL
)
1838 fatal_io_error ("can't open %s", dump_name
);
1843 fprintf (rtl_dump_file
, "\n;; Function %s%s\n\n",
1844 (*lang_hooks
.decl_printable_name
) (decl
, 2),
1845 cfun
->function_frequency
== FUNCTION_FREQUENCY_HOT
1847 : cfun
->function_frequency
== FUNCTION_FREQUENCY_UNLIKELY_EXECUTED
1848 ? " (unlikely executed)"
1851 timevar_pop (TV_DUMP
);
1855 /* Routine to close a dump file. */
1858 close_dump_file (index
, func
, insns
)
1859 enum dump_file_index index
;
1860 void (*func
) PARAMS ((FILE *, rtx
));
1863 if (! rtl_dump_file
)
1866 timevar_push (TV_DUMP
);
1868 && graph_dump_format
!= no_graph
1869 && dump_file
[index
].graph_dump_p
)
1874 sprintf (seq
, DUMPFILE_FORMAT
, index
);
1875 suffix
= concat (seq
, dump_file
[index
].extension
, NULL
);
1876 print_rtl_graph_with_bb (dump_base_name
, suffix
, insns
);
1881 func (rtl_dump_file
, insns
);
1883 fflush (rtl_dump_file
);
1884 fclose (rtl_dump_file
);
1886 rtl_dump_file
= NULL
;
1887 timevar_pop (TV_DUMP
);
1890 /* Do any final processing required for the declarations in VEC, of
1891 which there are LEN. We write out inline functions and variables
1892 that have been deferred until this point, but which are required.
1893 Returns nonzero if anything was put out. */
1896 wrapup_global_declarations (vec
, len
)
1903 int output_something
= 0;
1905 for (i
= 0; i
< len
; i
++)
1909 /* We're not deferring this any longer. */
1910 DECL_DEFER_OUTPUT (decl
) = 0;
1912 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_SIZE (decl
) == 0)
1913 (*lang_hooks
.finish_incomplete_decl
) (decl
);
1916 /* Now emit any global variables or functions that we have been
1917 putting off. We need to loop in case one of the things emitted
1918 here references another one which comes earlier in the list. */
1922 for (i
= 0; i
< len
; i
++)
1926 if (TREE_ASM_WRITTEN (decl
) || DECL_EXTERNAL (decl
))
1929 /* Don't write out static consts, unless we still need them.
1931 We also keep static consts if not optimizing (for debugging),
1932 unless the user specified -fno-keep-static-consts.
1933 ??? They might be better written into the debug information.
1934 This is possible when using DWARF.
1936 A language processor that wants static constants to be always
1937 written out (even if it is not used) is responsible for
1938 calling rest_of_decl_compilation itself. E.g. the C front-end
1939 calls rest_of_decl_compilation from finish_decl.
1940 One motivation for this is that is conventional in some
1941 environments to write things like:
1942 static const char rcsid[] = "... version string ...";
1943 intending to force the string to be in the executable.
1945 A language processor that would prefer to have unneeded
1946 static constants "optimized away" would just defer writing
1947 them out until here. E.g. C++ does this, because static
1948 constants are often defined in header files.
1950 ??? A tempting alternative (for both C and C++) would be
1951 to force a constant to be written if and only if it is
1952 defined in a main file, as opposed to an include file. */
1954 if (TREE_CODE (decl
) == VAR_DECL
&& TREE_STATIC (decl
))
1958 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
)))
1960 else if (DECL_COMDAT (decl
))
1962 else if (TREE_READONLY (decl
) && !TREE_PUBLIC (decl
)
1963 && (optimize
|| !flag_keep_static_consts
1964 || DECL_ARTIFICIAL (decl
)))
1970 rest_of_decl_compilation (decl
, NULL
, 1, 1);
1974 if (TREE_CODE (decl
) == FUNCTION_DECL
1975 && DECL_INITIAL (decl
) != 0
1976 && DECL_SAVED_INSNS (decl
) != 0
1977 && (flag_keep_inline_functions
1978 || (TREE_PUBLIC (decl
) && !DECL_COMDAT (decl
))
1979 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))))
1982 output_inline_function (decl
);
1987 output_something
= 1;
1991 return output_something
;
1994 /* Issue appropriate warnings for the global declarations in VEC (of
1995 which there are LEN). Output debugging information for them. */
1998 check_global_declarations (vec
, len
)
2005 for (i
= 0; i
< len
; i
++)
2009 if (TREE_CODE (decl
) == VAR_DECL
&& TREE_STATIC (decl
)
2010 && ! TREE_ASM_WRITTEN (decl
))
2011 /* Cancel the RTL for this decl so that, if debugging info
2012 output for global variables is still to come,
2013 this one will be omitted. */
2014 SET_DECL_RTL (decl
, NULL_RTX
);
2016 /* Warn about any function
2017 declared static but not defined.
2018 We don't warn about variables,
2019 because many programs have static variables
2020 that exist only to get some text into the object file. */
2021 if (TREE_CODE (decl
) == FUNCTION_DECL
2022 && (warn_unused_function
2023 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
)))
2024 && DECL_INITIAL (decl
) == 0
2025 && DECL_EXTERNAL (decl
)
2026 && ! DECL_ARTIFICIAL (decl
)
2027 && ! TREE_PUBLIC (decl
))
2029 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
)))
2030 pedwarn_with_decl (decl
,
2031 "`%s' used but never defined");
2033 warning_with_decl (decl
,
2034 "`%s' declared `static' but never defined");
2035 /* This symbol is effectively an "extern" declaration now. */
2036 TREE_PUBLIC (decl
) = 1;
2037 assemble_external (decl
);
2040 /* Warn about static fns or vars defined but not used. */
2041 if (((warn_unused_function
&& TREE_CODE (decl
) == FUNCTION_DECL
)
2042 || (warn_unused_variable
&& TREE_CODE (decl
) == VAR_DECL
))
2043 && ! TREE_USED (decl
)
2044 /* The TREE_USED bit for file-scope decls is kept in the identifier,
2045 to handle multiple external decls in different scopes. */
2046 && ! TREE_USED (DECL_NAME (decl
))
2047 && ! DECL_EXTERNAL (decl
)
2048 && ! TREE_PUBLIC (decl
)
2049 /* Global register variables must be declared to reserve them. */
2050 && ! (TREE_CODE (decl
) == VAR_DECL
&& DECL_REGISTER (decl
))
2051 /* Otherwise, ask the language. */
2052 && (*lang_hooks
.decls
.warn_unused_global
) (decl
))
2053 warning_with_decl (decl
, "`%s' defined but not used");
2055 /* Avoid confusing the debug information machinery when there are
2057 if (errorcount
== 0 && sorrycount
== 0)
2059 timevar_push (TV_SYMOUT
);
2060 (*debug_hooks
->global_decl
) (decl
);
2061 timevar_pop (TV_SYMOUT
);
2066 /* Save the current INPUT_FILENAME and LINENO on the top entry in the
2067 INPUT_FILE_STACK. Push a new entry for FILE and LINE, and set the
2068 INPUT_FILENAME and LINENO accordingly. */
2071 push_srcloc (file
, line
)
2075 struct file_stack
*fs
;
2077 if (input_file_stack
)
2079 input_file_stack
->name
= input_filename
;
2080 input_file_stack
->line
= lineno
;
2083 fs
= (struct file_stack
*) xmalloc (sizeof (struct file_stack
));
2084 fs
->name
= input_filename
= file
;
2085 fs
->line
= lineno
= line
;
2086 fs
->next
= input_file_stack
;
2087 input_file_stack
= fs
;
2088 input_file_stack_tick
++;
2091 /* Pop the top entry off the stack of presently open source files.
2092 Restore the INPUT_FILENAME and LINENO from the new topmost entry on
2098 struct file_stack
*fs
;
2100 fs
= input_file_stack
;
2101 input_file_stack
= fs
->next
;
2103 input_file_stack_tick
++;
2104 /* The initial source file is never popped. */
2105 if (!input_file_stack
)
2107 input_filename
= input_file_stack
->name
;
2108 lineno
= input_file_stack
->line
;
2111 /* Compile an entire translation unit. Write a file of assembly
2112 output and various debugging dumps. */
2119 /* Initialize yet another pass. */
2121 init_final (main_input_filename
);
2122 init_branch_prob (aux_base_name
);
2124 timevar_push (TV_PARSE
);
2126 /* Call the parser, which parses the entire file (calling
2127 rest_of_compilation for each function). */
2128 (*lang_hooks
.parse_file
) (set_yydebug
);
2130 /* In case there were missing block closers,
2131 get us back to the global binding level. */
2132 (*lang_hooks
.clear_binding_stack
) ();
2134 /* Compilation is now finished except for writing
2135 what's left of the symbol table output. */
2136 timevar_pop (TV_PARSE
);
2138 if (flag_syntax_only
)
2141 globals
= (*lang_hooks
.decls
.getdecls
) ();
2143 /* Really define vars that have had only a tentative definition.
2144 Really output inline functions that must actually be callable
2145 and have not been output so far. */
2148 int len
= list_length (globals
);
2149 tree
*vec
= (tree
*) xmalloc (sizeof (tree
) * len
);
2153 /* Process the decls in reverse order--earliest first.
2154 Put them into VEC from back to front, then take out from front. */
2156 for (i
= 0, decl
= globals
; i
< len
; i
++, decl
= TREE_CHAIN (decl
))
2157 vec
[len
- i
- 1] = decl
;
2159 wrapup_global_declarations (vec
, len
);
2161 if (profile_arc_flag
)
2162 /* This must occur after the loop to output deferred functions.
2163 Else the profiler initializer would not be emitted if all the
2164 functions in this compilation unit were deferred. */
2167 check_global_declarations (vec
, len
);
2173 /* Write out any pending weak symbol declarations. */
2177 /* Do dbx symbols. */
2178 timevar_push (TV_SYMOUT
);
2180 #ifdef DWARF2_UNWIND_INFO
2181 if (dwarf2out_do_frame ())
2182 dwarf2out_frame_finish ();
2185 (*debug_hooks
->finish
) (main_input_filename
);
2186 timevar_pop (TV_SYMOUT
);
2188 /* Output some stuff at end of file if nec. */
2190 dw2_output_indirect_constants ();
2192 if (profile_arc_flag
|| flag_test_coverage
|| flag_branch_probabilities
)
2194 timevar_push (TV_DUMP
);
2195 open_dump_file (DFI_bp
, NULL
);
2199 close_dump_file (DFI_bp
, NULL
, NULL_RTX
);
2200 timevar_pop (TV_DUMP
);
2204 ASM_FILE_END (asm_out_file
);
2207 /* Attach a special .ident directive to the end of the file to identify
2208 the version of GCC which compiled this code. The format of the .ident
2209 string is patterned after the ones produced by native SVR4 compilers. */
2212 fprintf (asm_out_file
, "%s\"GCC: (GNU) %s\"\n",
2213 IDENT_ASM_OP
, version_string
);
2216 if (optimize
> 0 && open_dump_file (DFI_combine
, NULL
))
2218 timevar_push (TV_DUMP
);
2219 dump_combine_total_stats (rtl_dump_file
);
2220 close_dump_file (DFI_combine
, NULL
, NULL_RTX
);
2221 timevar_pop (TV_DUMP
);
2225 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
2226 and TYPE_DECL nodes.
2228 This does nothing for local (non-static) variables, unless the
2229 variable is a register variable with an ASMSPEC. In that case, or
2230 if the variable is not an automatic, it sets up the RTL and
2231 outputs any assembler code (label definition, storage allocation
2232 and initialization).
2234 DECL is the declaration. If ASMSPEC is nonzero, it specifies
2235 the assembler symbol name to be used. TOP_LEVEL is nonzero
2236 if this declaration is not within a function. */
2239 rest_of_decl_compilation (decl
, asmspec
, top_level
, at_end
)
2241 const char *asmspec
;
2245 /* Declarations of variables, and of functions defined elsewhere. */
2247 /* The most obvious approach, to put an #ifndef around where
2248 this macro is used, doesn't work since it's inside a macro call. */
2249 #ifndef ASM_FINISH_DECLARE_OBJECT
2250 #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP, END)
2253 /* We deferred calling assemble_alias so that we could collect
2254 other attributes such as visibility. Emit the alias now. */
2257 alias
= lookup_attribute ("alias", DECL_ATTRIBUTES (decl
));
2260 alias
= TREE_VALUE (TREE_VALUE (alias
));
2261 alias
= get_identifier (TREE_STRING_POINTER (alias
));
2262 assemble_alias (decl
, alias
);
2266 /* Forward declarations for nested functions are not "external",
2267 but we need to treat them as if they were. */
2268 if (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
)
2269 || TREE_CODE (decl
) == FUNCTION_DECL
)
2271 timevar_push (TV_VARCONST
);
2274 make_decl_rtl (decl
, asmspec
);
2276 /* Don't output anything when a tentative file-scope definition
2277 is seen. But at end of compilation, do output code for them. */
2278 if (at_end
|| !DECL_DEFER_OUTPUT (decl
))
2279 assemble_variable (decl
, top_level
, at_end
, 0);
2280 if (decl
== last_assemble_variable_decl
)
2282 ASM_FINISH_DECLARE_OBJECT (asm_out_file
, decl
,
2286 timevar_pop (TV_VARCONST
);
2288 else if (DECL_REGISTER (decl
) && asmspec
!= 0)
2290 if (decode_reg_name (asmspec
) >= 0)
2292 SET_DECL_RTL (decl
, NULL_RTX
);
2293 make_decl_rtl (decl
, asmspec
);
2297 error ("invalid register name `%s' for register variable", asmspec
);
2298 DECL_REGISTER (decl
) = 0;
2303 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2304 else if ((write_symbols
== DBX_DEBUG
|| write_symbols
== XCOFF_DEBUG
)
2305 && TREE_CODE (decl
) == TYPE_DECL
)
2307 timevar_push (TV_SYMOUT
);
2308 dbxout_symbol (decl
, 0);
2309 timevar_pop (TV_SYMOUT
);
2312 #ifdef SDB_DEBUGGING_INFO
2313 else if (write_symbols
== SDB_DEBUG
&& top_level
2314 && TREE_CODE (decl
) == TYPE_DECL
)
2316 timevar_push (TV_SYMOUT
);
2317 sdbout_symbol (decl
, 0);
2318 timevar_pop (TV_SYMOUT
);
2321 #ifdef DWARF2_DEBUGGING_INFO
2322 else if ((write_symbols
== DWARF2_DEBUG
2323 || write_symbols
== VMS_AND_DWARF2_DEBUG
)
2325 && TREE_CODE (decl
) == TYPE_DECL
)
2327 timevar_push (TV_SYMOUT
);
2328 dwarf2out_decl (decl
);
2329 timevar_pop (TV_SYMOUT
);
2334 /* Called after finishing a record, union or enumeral type. */
2337 rest_of_type_compilation (type
, toplev
)
2338 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO) || defined (SDB_DEBUGGING_INFO)
2342 tree type ATTRIBUTE_UNUSED
;
2343 int toplev ATTRIBUTE_UNUSED
;
2346 /* Avoid confusing the debug information machinery when there are
2348 if (errorcount
!= 0 || sorrycount
!= 0)
2351 timevar_push (TV_SYMOUT
);
2352 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2353 if (write_symbols
== DBX_DEBUG
|| write_symbols
== XCOFF_DEBUG
)
2354 dbxout_symbol (TYPE_STUB_DECL (type
), !toplev
);
2356 #ifdef SDB_DEBUGGING_INFO
2357 if (write_symbols
== SDB_DEBUG
)
2358 sdbout_symbol (TYPE_STUB_DECL (type
), !toplev
);
2360 #ifdef DWARF2_DEBUGGING_INFO
2361 if ((write_symbols
== DWARF2_DEBUG
2362 || write_symbols
== VMS_AND_DWARF2_DEBUG
)
2364 dwarf2out_decl (TYPE_STUB_DECL (type
));
2366 timevar_pop (TV_SYMOUT
);
2369 /* This is called from finish_function (within langhooks.parse_file)
2370 after each top-level definition is parsed.
2371 It is supposed to compile that function or variable
2372 and output the assembler code for it.
2373 After we return, the tree storage is freed. */
2376 rest_of_compilation (decl
)
2382 int rebuild_label_notes_after_reload
;
2383 int register_life_up_to_date
;
2385 timevar_push (TV_REST_OF_COMPILATION
);
2387 /* Now that we're out of the frontend, we shouldn't have any more
2388 CONCATs anywhere. */
2389 generating_concat_p
= 0;
2391 /* When processing delayed functions, prepare_function_start() won't
2392 have been run to re-initialize it. */
2393 cse_not_expected
= ! optimize
;
2395 /* First, make sure that NOTE_BLOCK is set correctly for each
2396 NOTE_INSN_BLOCK_BEG/NOTE_INSN_BLOCK_END note. */
2397 if (!cfun
->x_whole_function_mode_p
)
2400 /* In function-at-a-time mode, we do not attempt to keep the BLOCK
2401 tree in sensible shape. So, we just recalculate it here. */
2402 if (cfun
->x_whole_function_mode_p
)
2407 /* If we are reconsidering an inline function
2408 at the end of compilation, skip the stuff for making it inline. */
2410 if (DECL_SAVED_INSNS (decl
) == 0)
2416 /* If this is nested inside an inlined external function, pretend
2417 it was only declared. Since we cannot inline such functions,
2418 generating code for this one is not only not necessary but will
2419 confuse some debugging output writers. */
2420 for (parent
= DECL_CONTEXT (current_function_decl
);
2421 parent
!= NULL_TREE
;
2422 parent
= get_containing_scope (parent
))
2423 if (TREE_CODE (parent
) == FUNCTION_DECL
2424 && DECL_INLINE (parent
) && DECL_EXTERNAL (parent
))
2426 DECL_INITIAL (decl
) = 0;
2427 goto exit_rest_of_compilation
;
2429 else if (TYPE_P (parent
))
2430 /* A function in a local class should be treated normally. */
2433 /* If requested, consider whether to make this function inline. */
2434 if ((DECL_INLINE (decl
) && !flag_no_inline
)
2435 || flag_inline_functions
)
2437 timevar_push (TV_INTEGRATION
);
2438 lose
= function_cannot_inline_p (decl
);
2439 timevar_pop (TV_INTEGRATION
);
2440 if (lose
|| ! optimize
)
2442 if (warn_inline
&& DECL_INLINE (decl
))
2443 warning_with_decl (decl
, lose
);
2444 DECL_ABSTRACT_ORIGIN (decl
) = 0;
2445 /* Don't really compile an extern inline function.
2446 If we can't make it inline, pretend
2447 it was only declared. */
2448 if (DECL_EXTERNAL (decl
))
2450 DECL_INITIAL (decl
) = 0;
2451 goto exit_rest_of_compilation
;
2455 /* ??? Note that this has the effect of making it look
2456 like "inline" was specified for a function if we choose
2457 to inline it. This isn't quite right, but it's
2458 probably not worth the trouble to fix. */
2459 inlinable
= DECL_INLINE (decl
) = 1;
2462 insns
= get_insns ();
2464 /* Dump the rtl code if we are dumping rtl. */
2466 if (open_dump_file (DFI_rtl
, decl
))
2468 if (DECL_SAVED_INSNS (decl
))
2469 fprintf (rtl_dump_file
, ";; (integrable)\n\n");
2470 close_dump_file (DFI_rtl
, print_rtl
, insns
);
2473 /* Convert from NOTE_INSN_EH_REGION style notes, and do other
2474 sorts of eh initialization. Delay this until after the
2475 initial rtl dump so that we can see the original nesting. */
2476 convert_from_eh_region_ranges ();
2478 /* If function is inline, and we don't yet know whether to
2479 compile it by itself, defer decision till end of compilation.
2480 wrapup_global_declarations will (indirectly) call
2481 rest_of_compilation again for those functions that need to
2482 be output. Also defer those functions that we are supposed
2486 || (DECL_INLINE (decl
)
2487 && ((! TREE_PUBLIC (decl
) && ! TREE_ADDRESSABLE (decl
)
2488 && ! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))
2489 && ! flag_keep_inline_functions
)
2490 || DECL_EXTERNAL (decl
))))
2491 DECL_DEFER_OUTPUT (decl
) = 1;
2493 if (DECL_INLINE (decl
))
2494 /* DWARF wants separate debugging info for abstract and
2495 concrete instances of all inline functions, including those
2496 declared inline but not inlined, and those inlined even
2497 though they weren't declared inline. Conveniently, that's
2498 what DECL_INLINE means at this point. */
2499 (*debug_hooks
->deferred_inline_function
) (decl
);
2501 if (DECL_DEFER_OUTPUT (decl
))
2503 /* If -Wreturn-type, we have to do a bit of compilation. We just
2504 want to call cleanup the cfg to figure out whether or not we can
2505 fall off the end of the function; we do the minimum amount of
2506 work necessary to make that safe. */
2507 if (warn_return_type
)
2509 int saved_optimize
= optimize
;
2512 rebuild_jump_labels (insns
);
2513 find_exception_handler_labels ();
2514 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
2515 cleanup_cfg (CLEANUP_PRE_SIBCALL
| CLEANUP_PRE_LOOP
);
2516 optimize
= saved_optimize
;
2518 /* CFG is no longer maintained up-to-date. */
2519 free_bb_for_insn ();
2522 set_nothrow_function_flags ();
2523 if (current_function_nothrow
)
2524 /* Now we know that this can't throw; set the flag for the benefit
2525 of other functions later in this translation unit. */
2526 TREE_NOTHROW (current_function_decl
) = 1;
2528 timevar_push (TV_INTEGRATION
);
2529 save_for_inline (decl
);
2530 timevar_pop (TV_INTEGRATION
);
2531 DECL_SAVED_INSNS (decl
)->inlinable
= inlinable
;
2532 goto exit_rest_of_compilation
;
2535 /* If specified extern inline but we aren't inlining it, we are
2536 done. This goes for anything that gets here with DECL_EXTERNAL
2537 set, not just things with DECL_INLINE. */
2538 if (DECL_EXTERNAL (decl
))
2539 goto exit_rest_of_compilation
;
2542 /* If we're emitting a nested function, make sure its parent gets
2543 emitted as well. Doing otherwise confuses debug info. */
2546 for (parent
= DECL_CONTEXT (current_function_decl
);
2547 parent
!= NULL_TREE
;
2548 parent
= get_containing_scope (parent
))
2549 if (TREE_CODE (parent
) == FUNCTION_DECL
)
2550 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (parent
)) = 1;
2553 /* We are now committed to emitting code for this function. Do any
2554 preparation, such as emitting abstract debug info for the inline
2555 before it gets mangled by optimization. */
2556 if (DECL_INLINE (decl
))
2557 (*debug_hooks
->outlining_inline_function
) (decl
);
2559 /* Remove any notes we don't need. That will make iterating
2560 over the instruction sequence faster, and allow the garbage
2561 collector to reclaim the memory used by the notes. */
2562 remove_unnecessary_notes ();
2567 /* Initialize some variables used by the optimizers. */
2568 init_function_for_compilation ();
2570 if (! DECL_DEFER_OUTPUT (decl
))
2571 TREE_ASM_WRITTEN (decl
) = 1;
2573 /* Now that integrate will no longer see our rtl, we need not
2574 distinguish between the return value of this function and the
2575 return value of called functions. Also, we can remove all SETs
2576 of subregs of hard registers; they are only here because of
2577 integrate. Also, we can now initialize pseudos intended to
2578 carry magic hard reg data throughout the function. */
2579 rtx_equal_function_value_matters
= 0;
2580 purge_hard_subreg_sets (get_insns ());
2582 /* Early return if there were errors. We can run afoul of our
2583 consistency checks, and there's not really much point in fixing them.
2584 Don't return yet if -Wreturn-type; we need to do cleanup_cfg. */
2585 if (((rtl_dump_and_exit
|| flag_syntax_only
) && !warn_return_type
)
2586 || errorcount
|| sorrycount
)
2587 goto exit_rest_of_compilation
;
2589 timevar_push (TV_JUMP
);
2590 open_dump_file (DFI_sibling
, decl
);
2591 insns
= get_insns ();
2592 rebuild_jump_labels (insns
);
2593 find_exception_handler_labels ();
2594 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
2596 delete_unreachable_blocks ();
2598 /* Turn NOTE_INSN_PREDICTIONs into branch predictions. */
2599 timevar_push (TV_BRANCH_PROB
);
2600 note_prediction_to_br_prob ();
2601 timevar_pop (TV_BRANCH_PROB
);
2603 /* We may have potential sibling or tail recursion sites. Select one
2604 (of possibly multiple) methods of performing the call. */
2605 if (flag_optimize_sibling_calls
)
2608 optimize_sibling_and_tail_recursive_calls ();
2610 /* Recompute the CFG as sibling optimization clobbers it randomly. */
2611 free_bb_for_insn ();
2612 find_exception_handler_labels ();
2613 rebuild_jump_labels (insns
);
2614 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
2616 /* There is pass ordering problem - we must lower NOTE_INSN_PREDICTION
2617 notes before simplifying cfg and we must do lowering after sibcall
2618 that unhides parts of RTL chain and cleans up the CFG.
2620 Until sibcall is replaced by tree-level optimizer, lets just
2621 sweep away the NOTE_INSN_PREDICTION notes that leaked out. */
2622 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
2623 if (GET_CODE (insn
) == NOTE
2624 && NOTE_LINE_NUMBER (insn
) == NOTE_INSN_PREDICTION
)
2627 close_dump_file (DFI_sibling
, print_rtl
, get_insns ());
2628 timevar_pop (TV_JUMP
);
2630 scope_to_insns_initialize ();
2631 /* Complete generation of exception handling code. */
2634 timevar_push (TV_JUMP
);
2635 open_dump_file (DFI_eh
, decl
);
2637 finish_eh_generation ();
2639 close_dump_file (DFI_eh
, print_rtl
, get_insns ());
2640 timevar_pop (TV_JUMP
);
2643 /* Delay emitting hard_reg_initial_value sets until after EH landing pad
2644 generation, which might create new sets. */
2645 emit_initial_value_sets ();
2648 /* If we are doing position-independent code generation, now
2649 is the time to output special prologues and epilogues.
2650 We do not want to do this earlier, because it just clutters
2651 up inline functions with meaningless insns. */
2656 insns
= get_insns ();
2658 /* Copy any shared structure that should not be shared. */
2659 unshare_all_rtl (current_function_decl
, insns
);
2661 #ifdef SETJMP_VIA_SAVE_AREA
2662 /* This must be performed before virtual register instantiation.
2663 Please be aware the everything in the compiler that can look
2664 at the RTL up to this point must understand that REG_SAVE_AREA
2665 is just like a use of the REG contained inside. */
2666 if (current_function_calls_alloca
)
2667 optimize_save_area_alloca (insns
);
2670 /* Instantiate all virtual registers. */
2671 instantiate_virtual_regs (current_function_decl
, insns
);
2673 open_dump_file (DFI_jump
, decl
);
2675 /* Always do one jump optimization pass to ensure that JUMP_LABEL fields
2676 are initialized and to compute whether control can drop off the end
2679 timevar_push (TV_JUMP
);
2680 /* Turn NOTE_INSN_EXPECTED_VALUE into REG_BR_PROB. Do this
2681 before jump optimization switches branch directions. */
2682 expected_value_to_br_prob ();
2684 reg_scan (insns
, max_reg_num (), 0);
2685 rebuild_jump_labels (insns
);
2686 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
2688 dump_flow_info (rtl_dump_file
);
2689 cleanup_cfg ((optimize
? CLEANUP_EXPENSIVE
: 0) | CLEANUP_PRE_LOOP
2690 | (flag_thread_jumps
? CLEANUP_THREADING
: 0));
2692 /* CFG is no longer maintained up-to-date. */
2693 free_bb_for_insn ();
2694 copy_loop_headers (insns
);
2695 purge_line_number_notes (insns
);
2696 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
2698 timevar_pop (TV_JUMP
);
2699 close_dump_file (DFI_jump
, print_rtl
, insns
);
2701 /* Now is when we stop if -fsyntax-only and -Wreturn-type. */
2702 if (rtl_dump_and_exit
|| flag_syntax_only
|| DECL_DEFER_OUTPUT (decl
))
2704 goto exit_rest_of_compilation
;
2707 /* Long term, this should probably move before the jump optimizer too,
2708 but I didn't want to disturb the rtl_dump_and_exit and related
2709 stuff at this time. */
2710 if (optimize
> 0 && flag_ssa
)
2712 /* Convert to SSA form. */
2714 timevar_push (TV_TO_SSA
);
2715 open_dump_file (DFI_ssa
, decl
);
2717 cleanup_cfg (CLEANUP_EXPENSIVE
| CLEANUP_PRE_LOOP
);
2720 close_dump_file (DFI_ssa
, print_rtl_with_bb
, insns
);
2721 timevar_pop (TV_TO_SSA
);
2723 /* Perform sparse conditional constant propagation, if requested. */
2726 timevar_push (TV_SSA_CCP
);
2727 open_dump_file (DFI_ssa_ccp
, decl
);
2731 close_dump_file (DFI_ssa_ccp
, print_rtl_with_bb
, get_insns ());
2732 timevar_pop (TV_SSA_CCP
);
2735 /* It would be useful to cleanup the CFG at this point, but block
2736 merging and possibly other transformations might leave a PHI
2737 node in the middle of a basic block, which is a strict no-no. */
2739 /* The SSA implementation uses basic block numbers in its phi
2740 nodes. Thus, changing the control-flow graph or the basic
2741 blocks, e.g., calling find_basic_blocks () or cleanup_cfg (),
2742 may cause problems. */
2746 /* Remove dead code. */
2748 timevar_push (TV_SSA_DCE
);
2749 open_dump_file (DFI_ssa_dce
, decl
);
2751 insns
= get_insns ();
2752 ssa_eliminate_dead_code ();
2754 close_dump_file (DFI_ssa_dce
, print_rtl_with_bb
, insns
);
2755 timevar_pop (TV_SSA_DCE
);
2758 /* Convert from SSA form. */
2760 timevar_push (TV_FROM_SSA
);
2761 open_dump_file (DFI_ussa
, decl
);
2763 convert_from_ssa ();
2764 /* New registers have been created. Rescan their usage. */
2765 reg_scan (insns
, max_reg_num (), 1);
2767 close_dump_file (DFI_ussa
, print_rtl_with_bb
, insns
);
2768 timevar_pop (TV_FROM_SSA
);
2773 timevar_push (TV_JUMP
);
2774 cleanup_cfg (optimize
? CLEANUP_EXPENSIVE
| CLEANUP_PRE_LOOP
: 0);
2776 /* Try to identify useless null pointer tests and delete them. */
2777 if (flag_delete_null_pointer_checks
)
2779 open_dump_file (DFI_null
, decl
);
2781 dump_flow_info (rtl_dump_file
);
2783 if (delete_null_pointer_checks (insns
))
2784 cleanup_cfg (CLEANUP_EXPENSIVE
| CLEANUP_PRE_LOOP
);
2786 close_dump_file (DFI_null
, print_rtl_with_bb
, insns
);
2789 /* Jump optimization, and the removal of NULL pointer checks, may
2790 have reduced the number of instructions substantially. CSE, and
2791 future passes, allocate arrays whose dimensions involve the
2792 maximum instruction UID, so if we can reduce the maximum UID
2793 we'll save big on memory. */
2794 renumber_insns (rtl_dump_file
);
2795 timevar_pop (TV_JUMP
);
2797 close_dump_file (DFI_jump
, print_rtl_with_bb
, insns
);
2801 /* Perform common subexpression elimination.
2802 Nonzero value from `cse_main' means that jumps were simplified
2803 and some code may now be unreachable, so do
2804 jump optimization again. */
2808 open_dump_file (DFI_cse
, decl
);
2810 dump_flow_info (rtl_dump_file
);
2811 timevar_push (TV_CSE
);
2813 reg_scan (insns
, max_reg_num (), 1);
2815 tem
= cse_main (insns
, max_reg_num (), 0, rtl_dump_file
);
2817 rebuild_jump_labels (insns
);
2818 purge_all_dead_edges (0);
2820 delete_trivially_dead_insns (insns
, max_reg_num ());
2822 /* If we are not running more CSE passes, then we are no longer
2823 expecting CSE to be run. But always rerun it in a cheap mode. */
2824 cse_not_expected
= !flag_rerun_cse_after_loop
&& !flag_gcse
;
2826 if (tem
|| optimize
> 1)
2827 cleanup_cfg (CLEANUP_EXPENSIVE
| CLEANUP_PRE_LOOP
);
2828 /* Try to identify useless null pointer tests and delete them. */
2829 if (flag_delete_null_pointer_checks
)
2831 timevar_push (TV_JUMP
);
2833 if (delete_null_pointer_checks (insns
))
2834 cleanup_cfg (CLEANUP_EXPENSIVE
| CLEANUP_PRE_LOOP
);
2835 timevar_pop (TV_JUMP
);
2838 /* The second pass of jump optimization is likely to have
2839 removed a bunch more instructions. */
2840 renumber_insns (rtl_dump_file
);
2842 timevar_pop (TV_CSE
);
2843 close_dump_file (DFI_cse
, print_rtl_with_bb
, insns
);
2846 open_dump_file (DFI_addressof
, decl
);
2848 purge_addressof (insns
);
2850 purge_all_dead_edges (0);
2851 reg_scan (insns
, max_reg_num (), 1);
2853 close_dump_file (DFI_addressof
, print_rtl
, insns
);
2857 /* Perform global cse. */
2859 if (optimize
> 0 && flag_gcse
)
2861 int save_csb
, save_cfj
;
2864 timevar_push (TV_GCSE
);
2865 open_dump_file (DFI_gcse
, decl
);
2867 tem
= gcse_main (insns
, rtl_dump_file
);
2868 rebuild_jump_labels (insns
);
2869 delete_trivially_dead_insns (insns
, max_reg_num ());
2871 save_csb
= flag_cse_skip_blocks
;
2872 save_cfj
= flag_cse_follow_jumps
;
2873 flag_cse_skip_blocks
= flag_cse_follow_jumps
= 0;
2875 /* If -fexpensive-optimizations, re-run CSE to clean up things done
2877 if (flag_expensive_optimizations
)
2879 timevar_push (TV_CSE
);
2880 reg_scan (insns
, max_reg_num (), 1);
2881 tem2
= cse_main (insns
, max_reg_num (), 0, rtl_dump_file
);
2882 purge_all_dead_edges (0);
2883 delete_trivially_dead_insns (insns
, max_reg_num ());
2884 timevar_pop (TV_CSE
);
2885 cse_not_expected
= !flag_rerun_cse_after_loop
;
2888 /* If gcse or cse altered any jumps, rerun jump optimizations to clean
2889 things up. Then possibly re-run CSE again. */
2893 timevar_push (TV_JUMP
);
2894 rebuild_jump_labels (insns
);
2895 cleanup_cfg (CLEANUP_EXPENSIVE
| CLEANUP_PRE_LOOP
);
2896 timevar_pop (TV_JUMP
);
2898 if (flag_expensive_optimizations
)
2900 timevar_push (TV_CSE
);
2901 reg_scan (insns
, max_reg_num (), 1);
2902 tem2
= cse_main (insns
, max_reg_num (), 0, rtl_dump_file
);
2903 purge_all_dead_edges (0);
2904 delete_trivially_dead_insns (insns
, max_reg_num ());
2905 timevar_pop (TV_CSE
);
2909 close_dump_file (DFI_gcse
, print_rtl_with_bb
, insns
);
2910 timevar_pop (TV_GCSE
);
2913 flag_cse_skip_blocks
= save_csb
;
2914 flag_cse_follow_jumps
= save_cfj
;
2915 #ifdef ENABLE_CHECKING
2916 verify_flow_info ();
2920 /* Move constant computations out of loops. */
2922 if (optimize
> 0 && flag_loop_optimize
)
2924 int do_unroll
, do_prefetch
;
2926 timevar_push (TV_LOOP
);
2927 delete_dead_jumptables ();
2928 cleanup_cfg (CLEANUP_EXPENSIVE
| CLEANUP_PRE_LOOP
);
2929 open_dump_file (DFI_loop
, decl
);
2930 /* CFG is no longer maintained up-to-date. */
2931 free_bb_for_insn ();
2933 do_unroll
= flag_unroll_loops
? LOOP_UNROLL
: LOOP_AUTO_UNROLL
;
2934 do_prefetch
= flag_prefetch_loop_arrays
? LOOP_PREFETCH
: 0;
2935 if (flag_rerun_loop_opt
)
2937 cleanup_barriers ();
2939 /* We only want to perform unrolling once. */
2940 loop_optimize (insns
, rtl_dump_file
, do_unroll
);
2943 /* The first call to loop_optimize makes some instructions
2944 trivially dead. We delete those instructions now in the
2945 hope that doing so will make the heuristics in loop work
2946 better and possibly speed up compilation. */
2947 delete_trivially_dead_insns (insns
, max_reg_num ());
2949 /* The regscan pass is currently necessary as the alias
2950 analysis code depends on this information. */
2951 reg_scan (insns
, max_reg_num (), 1);
2953 cleanup_barriers ();
2954 loop_optimize (insns
, rtl_dump_file
, do_unroll
| LOOP_BCT
| do_prefetch
);
2956 /* Loop can create trivially dead instructions. */
2957 delete_trivially_dead_insns (insns
, max_reg_num ());
2958 close_dump_file (DFI_loop
, print_rtl
, insns
);
2959 timevar_pop (TV_LOOP
);
2960 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
2965 /* Do control and data flow analysis; wrote some of the results to
2968 timevar_push (TV_FLOW
);
2969 open_dump_file (DFI_cfg
, decl
);
2971 dump_flow_info (rtl_dump_file
);
2972 cleanup_cfg ((optimize
? CLEANUP_EXPENSIVE
: 0)
2973 | (flag_thread_jumps
? CLEANUP_THREADING
: 0));
2975 /* It may make more sense to mark constant functions after dead code is
2976 eliminated by life_analysis, but we need to do it early, as -fprofile-arcs
2977 may insert code making function non-constant, but we still must consider
2978 it as constant, otherwise -fbranch-probabilities will not read data back.
2980 life_analysis rarely eliminates modification of external memory.
2983 mark_constant_function ();
2985 close_dump_file (DFI_cfg
, print_rtl_with_bb
, insns
);
2987 /* Do branch profiling and static profile estimation passes. */
2988 if (optimize
> 0 || cfun
->arc_profile
|| flag_branch_probabilities
)
2992 timevar_push (TV_BRANCH_PROB
);
2993 open_dump_file (DFI_bp
, decl
);
2994 if (cfun
->arc_profile
|| flag_branch_probabilities
)
2997 /* Discover and record the loop depth at the head of each basic
2998 block. The loop infrastructure does the real job for us. */
2999 flow_loops_find (&loops
, LOOP_TREE
);
3002 flow_loops_dump (&loops
, rtl_dump_file
, NULL
, 0);
3004 /* Estimate using heuristics if no profiling info is available. */
3005 if (flag_guess_branch_prob
)
3006 estimate_probability (&loops
);
3008 flow_loops_free (&loops
);
3009 close_dump_file (DFI_bp
, print_rtl_with_bb
, insns
);
3010 timevar_pop (TV_BRANCH_PROB
);
3014 open_dump_file (DFI_ce1
, decl
);
3015 if (flag_if_conversion
)
3017 timevar_push (TV_IFCVT
);
3019 dump_flow_info (rtl_dump_file
);
3020 cleanup_cfg (CLEANUP_EXPENSIVE
);
3021 reg_scan (insns
, max_reg_num (), 0);
3023 timevar_pop (TV_IFCVT
);
3025 timevar_push (TV_JUMP
);
3026 cleanup_cfg (CLEANUP_EXPENSIVE
);
3027 reg_scan (insns
, max_reg_num (), 0);
3028 timevar_pop (TV_JUMP
);
3029 close_dump_file (DFI_ce1
, print_rtl_with_bb
, get_insns ());
3033 timevar_push (TV_TRACER
);
3034 open_dump_file (DFI_tracer
, decl
);
3036 dump_flow_info (rtl_dump_file
);
3038 cleanup_cfg (CLEANUP_EXPENSIVE
);
3039 reg_scan (insns
, max_reg_num (), 0);
3040 close_dump_file (DFI_tracer
, print_rtl_with_bb
, get_insns ());
3041 timevar_pop (TV_TRACER
);
3044 if (flag_rerun_cse_after_loop
)
3046 timevar_push (TV_CSE2
);
3047 open_dump_file (DFI_cse2
, decl
);
3049 dump_flow_info (rtl_dump_file
);
3050 /* CFG is no longer maintained up-to-date. */
3051 tem
= cse_main (insns
, max_reg_num (), 1, rtl_dump_file
);
3052 purge_all_dead_edges (0);
3053 delete_trivially_dead_insns (insns
, max_reg_num ());
3057 timevar_push (TV_JUMP
);
3058 rebuild_jump_labels (insns
);
3059 cleanup_cfg (CLEANUP_EXPENSIVE
);
3060 timevar_pop (TV_JUMP
);
3062 reg_scan (insns
, max_reg_num (), 0);
3063 close_dump_file (DFI_cse2
, print_rtl_with_bb
, insns
);
3065 timevar_pop (TV_CSE2
);
3068 cse_not_expected
= 1;
3070 open_dump_file (DFI_life
, decl
);
3073 check_function_return_warnings ();
3075 #ifdef ENABLE_CHECKING
3076 verify_flow_info ();
3078 life_analysis (insns
, rtl_dump_file
, PROP_FINAL
);
3080 cleanup_cfg ((optimize
? CLEANUP_EXPENSIVE
: 0) | CLEANUP_UPDATE_LIFE
3081 | (flag_thread_jumps
? CLEANUP_THREADING
: 0));
3082 timevar_pop (TV_FLOW
);
3086 if (warn_uninitialized
|| extra_warnings
)
3088 uninitialized_vars_warning (DECL_INITIAL (decl
));
3090 setjmp_args_warning ();
3096 if (!flag_new_regalloc
&& initialize_uninitialized_subregs ())
3098 /* Insns were inserted, so things might look a bit different. */
3099 insns
= get_insns ();
3100 update_life_info_in_dirty_blocks (UPDATE_LIFE_GLOBAL_RM_NOTES
,
3101 PROP_LOG_LINKS
| PROP_REG_INFO
3102 | PROP_DEATH_NOTES
);
3106 close_dump_file (DFI_life
, print_rtl_with_bb
, insns
);
3110 /* If -opt, try combining insns through substitution. */
3114 int rebuild_jump_labels_after_combine
= 0;
3116 timevar_push (TV_COMBINE
);
3117 open_dump_file (DFI_combine
, decl
);
3119 rebuild_jump_labels_after_combine
3120 = combine_instructions (insns
, max_reg_num ());
3122 /* Combining insns may have turned an indirect jump into a
3123 direct jump. Rebuid the JUMP_LABEL fields of jumping
3125 if (rebuild_jump_labels_after_combine
)
3127 timevar_push (TV_JUMP
);
3128 rebuild_jump_labels (insns
);
3129 timevar_pop (TV_JUMP
);
3131 cleanup_cfg (CLEANUP_EXPENSIVE
| CLEANUP_UPDATE_LIFE
);
3134 close_dump_file (DFI_combine
, print_rtl_with_bb
, insns
);
3135 timevar_pop (TV_COMBINE
);
3140 /* Rerun if-conversion, as combine may have simplified things enough to
3141 now meet sequence length restrictions. */
3142 if (flag_if_conversion
)
3144 timevar_push (TV_IFCVT
);
3145 open_dump_file (DFI_ce2
, decl
);
3151 close_dump_file (DFI_ce2
, print_rtl_with_bb
, insns
);
3152 timevar_pop (TV_IFCVT
);
3155 /* Register allocation pre-pass, to reduce number of moves
3156 necessary for two-address machines. */
3157 if (optimize
> 0 && (flag_regmove
|| flag_expensive_optimizations
))
3159 timevar_push (TV_REGMOVE
);
3160 open_dump_file (DFI_regmove
, decl
);
3162 regmove_optimize (insns
, max_reg_num (), rtl_dump_file
);
3164 cleanup_cfg (CLEANUP_EXPENSIVE
| CLEANUP_UPDATE_LIFE
);
3165 close_dump_file (DFI_regmove
, print_rtl_with_bb
, insns
);
3166 timevar_pop (TV_REGMOVE
);
3171 /* Do unconditional splitting before register allocation to allow machine
3172 description to add extra information not needed previously. */
3173 split_all_insns (1);
3175 /* Any of the several passes since flow1 will have munged register
3176 lifetime data a bit. */
3177 register_life_up_to_date
= 0;
3179 #ifdef OPTIMIZE_MODE_SWITCHING
3180 timevar_push (TV_MODE_SWITCH
);
3183 optimize_mode_switching (NULL
);
3186 timevar_pop (TV_MODE_SWITCH
);
3189 timevar_push (TV_SCHED
);
3191 #ifdef INSN_SCHEDULING
3193 /* Print function header into sched dump now
3194 because doing the sched analysis makes some of the dump. */
3195 if (optimize
> 0 && flag_schedule_insns
)
3197 open_dump_file (DFI_sched
, decl
);
3199 /* Do control and data sched analysis,
3200 and write some of the results to dump file. */
3202 schedule_insns (rtl_dump_file
);
3204 close_dump_file (DFI_sched
, print_rtl_with_bb
, insns
);
3206 /* Register lifetime information was updated as part of verifying
3208 register_life_up_to_date
= 1;
3211 timevar_pop (TV_SCHED
);
3215 /* Determine if the current function is a leaf before running reload
3216 since this can impact optimizations done by the prologue and
3217 epilogue thus changing register elimination offsets. */
3218 current_function_is_leaf
= leaf_function_p ();
3220 timevar_push (TV_LOCAL_ALLOC
);
3221 open_dump_file (DFI_lreg
, decl
);
3223 /* Allocate pseudo-regs that are used only within 1 basic block.
3225 RUN_JUMP_AFTER_RELOAD records whether or not we need to rerun the
3226 jump optimizer after register allocation and reloading are finished. */
3228 if (! register_life_up_to_date
)
3229 recompute_reg_usage (insns
, ! optimize_size
);
3231 if (flag_new_regalloc
)
3233 delete_trivially_dead_insns (insns
, max_reg_num ());
3236 timevar_pop (TV_LOCAL_ALLOC
);
3237 if (dump_file
[DFI_lreg
].enabled
)
3239 timevar_push (TV_DUMP
);
3241 close_dump_file (DFI_lreg
, NULL
, NULL
);
3242 timevar_pop (TV_DUMP
);
3245 /* XXX clean up the whole mess to bring live info in shape again. */
3246 timevar_push (TV_GLOBAL_ALLOC
);
3247 open_dump_file (DFI_greg
, decl
);
3249 build_insn_chain (insns
);
3250 failure
= reload (insns
, 0);
3252 timevar_pop (TV_GLOBAL_ALLOC
);
3254 if (dump_file
[DFI_greg
].enabled
)
3256 timevar_push (TV_DUMP
);
3258 dump_global_regs (rtl_dump_file
);
3260 close_dump_file (DFI_greg
, print_rtl_with_bb
, insns
);
3261 timevar_pop (TV_DUMP
);
3265 goto exit_rest_of_compilation
;
3266 reload_completed
= 1;
3267 rebuild_label_notes_after_reload
= 0;
3271 /* Allocate the reg_renumber array. */
3272 allocate_reg_info (max_regno
, FALSE
, TRUE
);
3274 /* And the reg_equiv_memory_loc array. */
3275 reg_equiv_memory_loc
= (rtx
*) xcalloc (max_regno
, sizeof (rtx
));
3277 allocate_initial_values (reg_equiv_memory_loc
);
3279 regclass (insns
, max_reg_num (), rtl_dump_file
);
3280 rebuild_label_notes_after_reload
= local_alloc ();
3282 timevar_pop (TV_LOCAL_ALLOC
);
3284 if (dump_file
[DFI_lreg
].enabled
)
3286 timevar_push (TV_DUMP
);
3288 dump_flow_info (rtl_dump_file
);
3289 dump_local_alloc (rtl_dump_file
);
3291 close_dump_file (DFI_lreg
, print_rtl_with_bb
, insns
);
3292 timevar_pop (TV_DUMP
);
3297 timevar_push (TV_GLOBAL_ALLOC
);
3298 open_dump_file (DFI_greg
, decl
);
3300 /* If optimizing, allocate remaining pseudo-regs. Do the reload
3301 pass fixing up any insns that are invalid. */
3304 failure
= global_alloc (rtl_dump_file
);
3307 build_insn_chain (insns
);
3308 failure
= reload (insns
, 0);
3311 timevar_pop (TV_GLOBAL_ALLOC
);
3313 if (dump_file
[DFI_greg
].enabled
)
3315 timevar_push (TV_DUMP
);
3317 dump_global_regs (rtl_dump_file
);
3319 close_dump_file (DFI_greg
, print_rtl_with_bb
, insns
);
3320 timevar_pop (TV_DUMP
);
3324 goto exit_rest_of_compilation
;
3329 open_dump_file (DFI_postreload
, decl
);
3331 /* Do a very simple CSE pass over just the hard registers. */
3334 timevar_push (TV_RELOAD_CSE_REGS
);
3335 reload_cse_regs (insns
);
3336 timevar_pop (TV_RELOAD_CSE_REGS
);
3339 /* Register allocation and reloading may have turned an indirect jump into
3340 a direct jump. If so, we must rebuild the JUMP_LABEL fields of
3341 jumping instructions. */
3342 if (rebuild_label_notes_after_reload
)
3344 timevar_push (TV_JUMP
);
3346 rebuild_jump_labels (insns
);
3347 purge_all_dead_edges (0);
3349 timevar_pop (TV_JUMP
);
3352 close_dump_file (DFI_postreload
, print_rtl_with_bb
, insns
);
3354 /* Re-create the death notes which were deleted during reload. */
3355 timevar_push (TV_FLOW2
);
3356 open_dump_file (DFI_flow2
, decl
);
3358 #ifdef ENABLE_CHECKING
3359 verify_flow_info ();
3362 /* If optimizing, then go ahead and split insns now. */
3364 split_all_insns (0);
3366 cleanup_cfg (optimize
? CLEANUP_EXPENSIVE
: 0);
3368 /* On some machines, the prologue and epilogue code, or parts thereof,
3369 can be represented as RTL. Doing so lets us schedule insns between
3370 it and the rest of the code and also allows delayed branch
3371 scheduling to operate in the epilogue. */
3372 thread_prologue_and_epilogue_insns (insns
);
3376 life_analysis (insns
, rtl_dump_file
, PROP_FINAL
);
3377 cleanup_cfg (CLEANUP_EXPENSIVE
| CLEANUP_UPDATE_LIFE
3378 | (flag_crossjumping
? CLEANUP_CROSSJUMP
: 0));
3380 /* This is kind of a heuristic. We need to run combine_stack_adjustments
3381 even for machines with possibly nonzero RETURN_POPS_ARGS
3382 and ACCUMULATE_OUTGOING_ARGS. We expect that only ports having
3383 push instructions will have popping returns. */
3384 #ifndef PUSH_ROUNDING
3385 if (!ACCUMULATE_OUTGOING_ARGS
)
3387 combine_stack_adjustments ();
3392 flow2_completed
= 1;
3394 close_dump_file (DFI_flow2
, print_rtl_with_bb
, insns
);
3395 timevar_pop (TV_FLOW2
);
3397 #ifdef HAVE_peephole2
3398 if (optimize
> 0 && flag_peephole2
)
3400 timevar_push (TV_PEEPHOLE2
);
3401 open_dump_file (DFI_peephole2
, decl
);
3403 peephole2_optimize (rtl_dump_file
);
3405 close_dump_file (DFI_peephole2
, print_rtl_with_bb
, insns
);
3406 timevar_pop (TV_PEEPHOLE2
);
3410 if (optimize
> 0 && (flag_rename_registers
|| flag_cprop_registers
))
3412 timevar_push (TV_RENAME_REGISTERS
);
3413 open_dump_file (DFI_rnreg
, decl
);
3415 if (flag_rename_registers
)
3416 regrename_optimize ();
3417 if (flag_cprop_registers
)
3418 copyprop_hardreg_forward ();
3420 close_dump_file (DFI_rnreg
, print_rtl_with_bb
, insns
);
3421 timevar_pop (TV_RENAME_REGISTERS
);
3424 if (flag_if_conversion2
)
3426 timevar_push (TV_IFCVT2
);
3427 open_dump_file (DFI_ce3
, decl
);
3431 close_dump_file (DFI_ce3
, print_rtl_with_bb
, insns
);
3432 timevar_pop (TV_IFCVT2
);
3436 split_all_insns (1);
3439 #ifdef INSN_SCHEDULING
3440 if (optimize
> 0 && flag_schedule_insns_after_reload
)
3442 timevar_push (TV_SCHED2
);
3443 open_dump_file (DFI_sched2
, decl
);
3445 /* Do control and data sched analysis again,
3446 and write some more of the results to dump file. */
3448 split_all_insns (1);
3450 schedule_insns (rtl_dump_file
);
3452 close_dump_file (DFI_sched2
, print_rtl_with_bb
, insns
);
3453 timevar_pop (TV_SCHED2
);
3459 #ifdef LEAF_REGISTERS
3460 current_function_uses_only_leaf_regs
3461 = optimize
> 0 && only_leaf_regs_used () && leaf_function_p ();
3465 timevar_push (TV_REG_STACK
);
3466 open_dump_file (DFI_stack
, decl
);
3468 reg_to_stack (insns
, rtl_dump_file
);
3470 close_dump_file (DFI_stack
, print_rtl_with_bb
, insns
);
3471 timevar_pop (TV_REG_STACK
);
3477 timevar_push (TV_REORDER_BLOCKS
);
3478 open_dump_file (DFI_bbro
, decl
);
3480 /* Last attempt to optimize CFG, as scheduling, peepholing and insn
3481 splitting possibly introduced more crossjumping opportunities.
3482 Except that we can't actually run crossjumping without running
3483 another DCE pass, which we can't do after reg-stack. */
3484 cleanup_cfg (CLEANUP_EXPENSIVE
| CLEANUP_POST_REGSTACK
3485 | (flag_crossjumping
? CLEANUP_CROSSJUMP
: 0));
3486 if (flag_reorder_blocks
)
3488 reorder_basic_blocks ();
3489 cleanup_cfg (CLEANUP_EXPENSIVE
| CLEANUP_POST_REGSTACK
);
3492 close_dump_file (DFI_bbro
, print_rtl_with_bb
, insns
);
3493 timevar_pop (TV_REORDER_BLOCKS
);
3495 compute_alignments ();
3497 /* CFG is no longer maintained up-to-date. */
3498 free_bb_for_insn ();
3500 /* If a machine dependent reorganization is needed, call it. */
3501 #ifdef MACHINE_DEPENDENT_REORG
3502 timevar_push (TV_MACH_DEP
);
3503 open_dump_file (DFI_mach
, decl
);
3505 MACHINE_DEPENDENT_REORG (insns
);
3507 close_dump_file (DFI_mach
, print_rtl
, insns
);
3508 timevar_pop (TV_MACH_DEP
);
3513 purge_line_number_notes (insns
);
3514 cleanup_barriers ();
3516 /* If a scheduling pass for delayed branches is to be done,
3517 call the scheduling code. */
3520 if (optimize
> 0 && flag_delayed_branch
)
3522 timevar_push (TV_DBR_SCHED
);
3523 open_dump_file (DFI_dbr
, decl
);
3525 dbr_schedule (insns
, rtl_dump_file
);
3527 close_dump_file (DFI_dbr
, print_rtl
, insns
);
3528 timevar_pop (TV_DBR_SCHED
);
3534 #if defined (HAVE_ATTR_length) && !defined (STACK_REGS)
3535 timevar_push (TV_SHORTEN_BRANCH
);
3536 split_all_insns_noflow ();
3537 timevar_pop (TV_SHORTEN_BRANCH
);
3540 convert_to_eh_region_ranges ();
3542 /* Shorten branches. */
3543 timevar_push (TV_SHORTEN_BRANCH
);
3544 shorten_branches (get_insns ());
3545 timevar_pop (TV_SHORTEN_BRANCH
);
3547 set_nothrow_function_flags ();
3548 if (current_function_nothrow
)
3549 /* Now we know that this can't throw; set the flag for the benefit
3550 of other functions later in this translation unit. */
3551 TREE_NOTHROW (current_function_decl
) = 1;
3553 /* Now turn the rtl into assembler code. */
3555 timevar_push (TV_FINAL
);
3560 /* Get the function's name, as described by its RTL. This may be
3561 different from the DECL_NAME name used in the source file. */
3563 x
= DECL_RTL (decl
);
3564 if (GET_CODE (x
) != MEM
)
3567 if (GET_CODE (x
) != SYMBOL_REF
)
3569 fnname
= XSTR (x
, 0);
3571 assemble_start_function (decl
, fnname
);
3572 final_start_function (insns
, asm_out_file
, optimize
);
3573 final (insns
, asm_out_file
, optimize
, 0);
3574 final_end_function ();
3576 #ifdef IA64_UNWIND_INFO
3577 /* ??? The IA-64 ".handlerdata" directive must be issued before
3578 the ".endp" directive that closes the procedure descriptor. */
3579 output_function_exception_table ();
3582 assemble_end_function (decl
, fnname
);
3584 #ifndef IA64_UNWIND_INFO
3585 /* Otherwise, it feels unclean to switch sections in the middle. */
3586 output_function_exception_table ();
3590 fflush (asm_out_file
);
3592 /* Release all memory allocated by flow. */
3593 free_basic_block_vars (0);
3595 /* Release all memory held by regsets now. */
3596 regset_release_memory ();
3598 timevar_pop (TV_FINAL
);
3602 /* Write DBX symbols if requested. */
3604 /* Note that for those inline functions where we don't initially
3605 know for certain that we will be generating an out-of-line copy,
3606 the first invocation of this routine (rest_of_compilation) will
3607 skip over this code by doing a `goto exit_rest_of_compilation;'.
3608 Later on, wrapup_global_declarations will (indirectly) call
3609 rest_of_compilation again for those inline functions that need
3610 to have out-of-line copies generated. During that call, we
3611 *will* be routed past here. */
3613 timevar_push (TV_SYMOUT
);
3614 (*debug_hooks
->function_decl
) (decl
);
3615 timevar_pop (TV_SYMOUT
);
3617 exit_rest_of_compilation
:
3619 /* In case the function was not output,
3620 don't leave any temporary anonymous types
3621 queued up for sdb output. */
3622 #ifdef SDB_DEBUGGING_INFO
3623 if (write_symbols
== SDB_DEBUG
)
3624 sdbout_types (NULL_TREE
);
3627 reload_completed
= 0;
3628 flow2_completed
= 0;
3631 timevar_push (TV_FINAL
);
3633 /* Clear out the insn_length contents now that they are no
3635 init_insn_lengths ();
3637 /* Show no temporary slots allocated. */
3640 free_basic_block_vars (0);
3641 free_bb_for_insn ();
3643 timevar_pop (TV_FINAL
);
3645 /* Make sure volatile mem refs aren't considered valid operands for
3646 arithmetic insns. We must call this here if this is a nested inline
3647 function, since the above code leaves us in the init_recog state
3648 (from final.c), and the function context push/pop code does not
3649 save/restore volatile_ok.
3651 ??? Maybe it isn't necessary for expand_start_function to call this
3652 anymore if we do it here? */
3654 init_recog_no_volatile ();
3656 /* We're done with this function. Free up memory if we can. */
3657 free_after_parsing (cfun
);
3658 if (! DECL_DEFER_OUTPUT (decl
))
3660 free_after_compilation (cfun
);
3662 /* Clear integrate.c's pointer to the cfun structure we just
3664 DECL_SAVED_INSNS (decl
) = 0;
3670 timevar_pop (TV_REST_OF_COMPILATION
);
3680 printf (_(" -ffixed-<register> Mark <register> as being unavailable to the compiler\n"));
3681 printf (_(" -fcall-used-<register> Mark <register> as being corrupted by function calls\n"));
3682 printf (_(" -fcall-saved-<register> Mark <register> as being preserved across functions\n"));
3683 printf (_(" -finline-limit=<number> Limits the size of inlined functions to <number>\n"));
3684 printf (_(" -fmessage-length=<number> Limits diagnostics messages lengths to <number> characters per line. 0 suppresses line-wrapping\n"));
3685 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"));
3686 printf (_(" -ftls-model=[global-dynamic | local-dynamic | initial-exec | local-exec] Indicates the default thread-local storage code generation model\n"));
3688 for (i
= ARRAY_SIZE (f_options
); i
--;)
3690 const char *description
= f_options
[i
].description
;
3692 if (description
!= NULL
&& *description
!= 0)
3693 printf (" -f%-21s %s\n",
3694 f_options
[i
].string
, _(description
));
3697 printf (_(" -O[number] Set optimization level to [number]\n"));
3698 printf (_(" -Os Optimize for space rather than speed\n"));
3699 for (i
= LAST_PARAM
; i
--;)
3701 const char *description
= compiler_params
[i
].help
;
3702 const int length
= 21 - strlen (compiler_params
[i
].option
);
3704 if (description
!= NULL
&& *description
!= 0)
3705 printf (" --param %s=<value>%.*s%s\n",
3706 compiler_params
[i
].option
,
3707 length
> 0 ? length
: 1, " ",
3710 printf (_(" -pedantic Issue warnings needed by strict compliance to ISO C\n"));
3711 printf (_(" -pedantic-errors Like -pedantic except that errors are produced\n"));
3712 printf (_(" -w Suppress warnings\n"));
3713 printf (_(" -W Enable extra warnings\n"));
3715 for (i
= ARRAY_SIZE (W_options
); i
--;)
3717 const char *description
= W_options
[i
].description
;
3719 if (description
!= NULL
&& *description
!= 0)
3720 printf (" -W%-21s %s\n",
3721 W_options
[i
].string
, _(description
));
3724 printf (_(" -Wunused Enable unused warnings\n"));
3725 printf (_(" -Wlarger-than-<number> Warn if an object is larger than <number> bytes\n"));
3726 printf (_(" -p Enable function profiling\n"));
3727 printf (_(" -o <file> Place output into <file> \n"));
3729 -G <number> Put global and static data smaller than <number>\n\
3730 bytes into a special section (on some targets)\n"));
3732 for (i
= ARRAY_SIZE (debug_args
); i
--;)
3734 if (debug_args
[i
].description
!= NULL
)
3735 printf (" -g%-21s %s\n",
3736 debug_args
[i
].arg
, _(debug_args
[i
].description
));
3739 printf (_(" -aux-info <file> Emit declaration info into <file>\n"));
3740 printf (_(" -quiet Do not display functions compiled or elapsed time\n"));
3741 printf (_(" -version Display the compiler's version\n"));
3742 printf (_(" -d[letters] Enable dumps from specific passes of the compiler\n"));
3743 printf (_(" -dumpbase <file> Base name to be used for dumps from specific passes\n"));
3744 #if defined INSN_SCHEDULING
3745 printf (_(" -fsched-verbose=<number> Set the verbosity level of the scheduler\n"));
3747 printf (_(" --help Display this information\n"));
3752 /* Display descriptions of language specific options.
3753 If there is no description, note that there is an undocumented option.
3754 If the description is empty, do not display anything. (This allows
3755 options to be deliberately undocumented, for whatever reason).
3756 If the option string is missing, then this is a marker, indicating
3757 that the description string is in fact the name of a language, whose
3758 language specific options are to follow. */
3760 if (ARRAY_SIZE (documented_lang_options
) > 1)
3762 printf (_("\nLanguage specific options:\n"));
3764 for (i
= 0; i
< ARRAY_SIZE (documented_lang_options
); i
++)
3766 const char *description
= documented_lang_options
[i
].description
;
3767 const char *option
= documented_lang_options
[i
].option
;
3769 if (description
== NULL
)
3774 printf (_(" %-23.23s [undocumented]\n"), option
);
3776 else if (*description
== 0)
3778 else if (option
== NULL
)
3782 (_("\nThere are undocumented %s specific options as well.\n"),
3786 printf (_("\n Options for %s:\n"), description
);
3791 printf (" %-23.23s %s\n", option
, _(description
));
3796 printf (_("\nThere are undocumented %s specific options as well.\n"),
3799 display_target_options ();
3803 display_target_options ()
3806 static bool displayed
= false;
3808 /* Avoid double printing for --help --target-help. */
3813 if (ARRAY_SIZE (target_switches
) > 1
3814 #ifdef TARGET_OPTIONS
3815 || ARRAY_SIZE (target_options
) > 1
3823 printf (_("\nTarget specific options:\n"));
3825 for (i
= ARRAY_SIZE (target_switches
); i
--;)
3827 const char *option
= target_switches
[i
].name
;
3828 const char *description
= target_switches
[i
].description
;
3830 if (option
== NULL
|| *option
== 0)
3832 else if (description
== NULL
)
3837 printf (_(" -m%-23.23s [undocumented]\n"), option
);
3839 else if (*description
!= 0)
3840 doc
+= printf (" -m%-23.23s %s\n", option
, _(description
));
3843 #ifdef TARGET_OPTIONS
3844 for (i
= ARRAY_SIZE (target_options
); i
--;)
3846 const char *option
= target_options
[i
].prefix
;
3847 const char *description
= target_options
[i
].description
;
3849 if (option
== NULL
|| *option
== 0)
3851 else if (description
== NULL
)
3856 printf (_(" -m%-23.23s [undocumented]\n"), option
);
3858 else if (*description
!= 0)
3859 doc
+= printf (" -m%-23.23s %s\n", option
, _(description
));
3865 printf (_("\nThere are undocumented target specific options as well.\n"));
3867 printf (_(" They exist, but they are not documented.\n"));
3872 /* Parse a -d... command line switch. */
3875 decode_d_option (arg
)
3884 for (i
= 0; i
< (int) DFI_MAX
; ++i
)
3885 dump_file
[i
].enabled
= 1;
3891 flag_print_asm_name
= 1;
3894 flag_dump_rtl_in_asm
= 1;
3895 flag_print_asm_name
= 1;
3898 graph_dump_format
= vcg
;
3901 rtl_dump_and_exit
= 1;
3906 case 'D': /* These are handled by the preprocessor. */
3912 for (i
= 0; i
< (int) DFI_MAX
; ++i
)
3913 if (c
== dump_file
[i
].debug_switch
)
3915 dump_file
[i
].enabled
= 1;
3920 warning ("unrecognized gcc debugging option: %c", c
);
3925 /* Parse a -f... command line switch. ARG is the value after the -f.
3926 It is safe to access 'ARG - 2' to generate the full switch name.
3927 Return the number of strings consumed. */
3930 decode_f_option (arg
)
3934 const char *option_value
= NULL
;
3936 /* Search for the option in the table of binary f options. */
3937 for (j
= ARRAY_SIZE (f_options
); j
--;)
3939 if (!strcmp (arg
, f_options
[j
].string
))
3941 *f_options
[j
].variable
= f_options
[j
].on_value
;
3945 if (arg
[0] == 'n' && arg
[1] == 'o' && arg
[2] == '-'
3946 && ! strcmp (arg
+ 3, f_options
[j
].string
))
3948 *f_options
[j
].variable
= ! f_options
[j
].on_value
;
3953 if (!strcmp (arg
, "fast-math"))
3954 set_fast_math_flags (1);
3955 else if (!strcmp (arg
, "no-fast-math"))
3956 set_fast_math_flags (0);
3957 else if ((option_value
= skip_leading_substring (arg
, "inline-limit-"))
3958 || (option_value
= skip_leading_substring (arg
, "inline-limit=")))
3961 read_integral_parameter (option_value
, arg
- 2,
3963 set_param_value ("max-inline-insns", val
);
3965 else if ((option_value
= skip_leading_substring (arg
, "tls-model=")))
3967 if (strcmp (option_value
, "global-dynamic") == 0)
3968 flag_tls_default
= TLS_MODEL_GLOBAL_DYNAMIC
;
3969 else if (strcmp (option_value
, "local-dynamic") == 0)
3970 flag_tls_default
= TLS_MODEL_LOCAL_DYNAMIC
;
3971 else if (strcmp (option_value
, "initial-exec") == 0)
3972 flag_tls_default
= TLS_MODEL_INITIAL_EXEC
;
3973 else if (strcmp (option_value
, "local-exec") == 0)
3974 flag_tls_default
= TLS_MODEL_LOCAL_EXEC
;
3976 warning ("`%s': unknown tls-model option", arg
- 2);
3978 #ifdef INSN_SCHEDULING
3979 else if ((option_value
= skip_leading_substring (arg
, "sched-verbose=")))
3980 fix_sched_param ("verbose", option_value
);
3982 else if ((option_value
= skip_leading_substring (arg
, "fixed-")))
3983 fix_register (option_value
, 1, 1);
3984 else if ((option_value
= skip_leading_substring (arg
, "call-used-")))
3985 fix_register (option_value
, 0, 1);
3986 else if ((option_value
= skip_leading_substring (arg
, "call-saved-")))
3987 fix_register (option_value
, 0, 0);
3988 else if ((option_value
= skip_leading_substring (arg
, "align-loops=")))
3989 align_loops
= read_integral_parameter (option_value
, arg
- 2, align_loops
);
3990 else if ((option_value
= skip_leading_substring (arg
, "align-functions=")))
3992 = read_integral_parameter (option_value
, arg
- 2, align_functions
);
3993 else if ((option_value
= skip_leading_substring (arg
, "align-jumps=")))
3994 align_jumps
= read_integral_parameter (option_value
, arg
- 2, align_jumps
);
3995 else if ((option_value
= skip_leading_substring (arg
, "align-labels=")))
3997 = read_integral_parameter (option_value
, arg
- 2, align_labels
);
3998 else if ((option_value
3999 = skip_leading_substring (arg
, "stack-limit-register=")))
4001 int reg
= decode_reg_name (option_value
);
4003 error ("unrecognized register name `%s'", option_value
);
4005 stack_limit_rtx
= gen_rtx_REG (Pmode
, reg
);
4007 else if ((option_value
4008 = skip_leading_substring (arg
, "stack-limit-symbol=")))
4011 nm
= ggc_strdup (option_value
);
4012 stack_limit_rtx
= gen_rtx_SYMBOL_REF (Pmode
, nm
);
4014 else if ((option_value
4015 = skip_leading_substring (arg
, "message-length=")))
4016 output_set_maximum_length
4017 (&global_dc
->buffer
, read_integral_parameter
4018 (option_value
, arg
- 2, diagnostic_line_cutoff (global_dc
)));
4019 else if ((option_value
4020 = skip_leading_substring (arg
, "diagnostics-show-location=")))
4022 if (!strcmp (option_value
, "once"))
4023 diagnostic_prefixing_rule (global_dc
) = DIAGNOSTICS_SHOW_PREFIX_ONCE
;
4024 else if (!strcmp (option_value
, "every-line"))
4025 diagnostic_prefixing_rule (global_dc
)
4026 = DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE
;
4028 error ("unrecognized option `%s'", arg
- 2);
4030 else if (!strcmp (arg
, "no-stack-limit"))
4031 stack_limit_rtx
= NULL_RTX
;
4032 else if (!strcmp (arg
, "preprocessed"))
4033 /* Recognize this switch but do nothing. This prevents warnings
4034 about an unrecognized switch if cpplib has not been linked in. */
4042 /* Parse a -W... command line switch. ARG is the value after the -W.
4043 It is safe to access 'ARG - 2' to generate the full switch name.
4044 Return the number of strings consumed. */
4047 decode_W_option (arg
)
4050 const char *option_value
= NULL
;
4053 /* Search for the option in the table of binary W options. */
4055 for (j
= ARRAY_SIZE (W_options
); j
--;)
4057 if (!strcmp (arg
, W_options
[j
].string
))
4059 *W_options
[j
].variable
= W_options
[j
].on_value
;
4063 if (arg
[0] == 'n' && arg
[1] == 'o' && arg
[2] == '-'
4064 && ! strcmp (arg
+ 3, W_options
[j
].string
))
4066 *W_options
[j
].variable
= ! W_options
[j
].on_value
;
4071 if ((option_value
= skip_leading_substring (arg
, "id-clash-")))
4072 warning ("-Wid-clash-LEN is no longer supported");
4073 else if ((option_value
= skip_leading_substring (arg
, "larger-than-")))
4075 larger_than_size
= read_integral_parameter (option_value
, arg
- 2, -1);
4077 warn_larger_than
= larger_than_size
!= -1;
4079 else if (!strcmp (arg
, "unused"))
4083 else if (!strcmp (arg
, "no-unused"))
4093 /* Parse a -g... command line switch. ARG is the value after the -g.
4094 It is safe to access 'ARG - 2' to generate the full switch name.
4095 Return the number of strings consumed. */
4098 decode_g_option (arg
)
4101 static unsigned level
= 0;
4102 /* A lot of code assumes write_symbols == NO_DEBUG if the
4103 debugging level is 0 (thus -gstabs1 -gstabs0 would lose track
4104 of what debugging type has been selected). This records the
4105 selected type. It is an error to specify more than one
4107 static enum debug_info_type selected_debug_type
= NO_DEBUG
;
4108 /* Nonzero if debugging format has been explicitly set.
4109 -g and -ggdb don't explicitly set the debugging format so
4110 -gdwarf -g3 is equivalent to -gdwarf3. */
4111 static int type_explicitly_set_p
= 0;
4112 /* Indexed by enum debug_info_type. */
4113 static const char *const debug_type_names
[] =
4115 "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff", "vms"
4118 /* The maximum admissible debug level value. */
4119 static const unsigned max_debug_level
= 3;
4121 /* Look up ARG in the table. */
4122 for (da
= debug_args
; da
->arg
; da
++)
4124 const int da_len
= strlen (da
->arg
);
4126 if (da_len
== 0 || ! strncmp (arg
, da
->arg
, da_len
))
4128 enum debug_info_type type
= da
->debug_type
;
4129 const char *p
= arg
+ da_len
;
4131 if (*p
&& ! ISDIGIT (*p
))
4134 /* A debug flag without a level defaults to level 2.
4135 Note we do not want to call read_integral_parameter
4136 for that case since it will call atoi which
4139 ??? We may want to generalize the interface to
4140 read_integral_parameter to better handle this case
4141 if this case shows up often. */
4143 level
= read_integral_parameter (p
, 0, max_debug_level
+ 1);
4145 level
= (level
== 0) ? 2 : level
;
4147 if (da_len
> 1 && *p
&& !strncmp (arg
, "dwarf", da_len
))
4149 error ("use -gdwarf -g%d for DWARF v1, level %d",
4152 error ("use -gdwarf-2 for DWARF v2");
4155 if (level
> max_debug_level
)
4158 ignoring option `%s' due to invalid debug level specification",
4160 level
= debug_info_level
;
4163 if (type
== NO_DEBUG
)
4165 type
= PREFERRED_DEBUGGING_TYPE
;
4167 if (da_len
> 1 && strncmp (arg
, "gdb", da_len
) == 0)
4169 #ifdef DWARF2_DEBUGGING_INFO
4170 type
= DWARF2_DEBUG
;
4172 #ifdef DBX_DEBUGGING_INFO
4179 if (type
== NO_DEBUG
)
4180 warning ("`%s': unknown or unsupported -g option", arg
- 2);
4182 /* Does it conflict with an already selected type? */
4183 if (type_explicitly_set_p
4184 /* -g/-ggdb don't conflict with anything. */
4185 && da
->debug_type
!= NO_DEBUG
4186 && type
!= selected_debug_type
)
4187 warning ("`%s' ignored, conflicts with `-g%s'",
4188 arg
- 2, debug_type_names
[(int) selected_debug_type
]);
4191 /* If the format has already been set, -g/-ggdb
4192 only change the debug level. */
4193 if (type_explicitly_set_p
&& da
->debug_type
== NO_DEBUG
)
4194 /* Don't change debugging type. */
4198 selected_debug_type
= type
;
4199 type_explicitly_set_p
= da
->debug_type
!= NO_DEBUG
;
4202 write_symbols
= (level
== 0
4204 : selected_debug_type
);
4205 use_gnu_debug_info_extensions
= da
->use_extensions_p
;
4206 debug_info_level
= (enum debug_info_level
) level
;
4219 /* Decode the first argument in the argv as a language-independent option.
4220 Return the number of strings consumed. */
4223 independent_decode_option (argc
, argv
)
4227 char *arg
= argv
[0];
4229 if (arg
[0] != '-' || arg
[1] == 0)
4241 if (!strcmp (arg
, "-help"))
4244 exit_after_options
= 1;
4247 if (!strcmp (arg
, "-target-help"))
4249 display_target_options ();
4250 exit_after_options
= 1;
4253 if (!strcmp (arg
, "-version"))
4255 print_version (stderr
, "");
4256 exit_after_options
= 1;
4259 /* Handle '--param <name>=<value>'. */
4260 if (strcmp (arg
, "-param") == 0)
4266 error ("-param option missing argument");
4270 /* Get the '<name>=<value>' parameter. */
4272 /* Look for the `='. */
4273 equal
= strchr (arg
, '=');
4275 error ("invalid --param option: %s", arg
);
4280 /* Zero out the `=' sign so that we get two separate strings. */
4282 /* Figure out what value is specified. */
4283 val
= read_integral_parameter (equal
+ 1, NULL
, INVALID_PARAM_VAL
);
4284 if (val
!= INVALID_PARAM_VAL
)
4285 set_param_value (arg
, val
);
4287 error ("invalid parameter value `%s'", equal
+ 1);
4302 /* Already been treated in main (). Do nothing. */
4306 set_target_switch (arg
+ 1);
4310 return decode_f_option (arg
+ 1);
4313 return decode_g_option (arg
+ 1);
4316 if (!strcmp (arg
, "dumpbase"))
4322 dump_base_name
= argv
[1];
4327 decode_d_option (arg
+ 1);
4331 if (!strcmp (arg
, "pedantic"))
4333 else if (!strcmp (arg
, "pedantic-errors"))
4334 flag_pedantic_errors
= pedantic
= 1;
4335 else if (arg
[1] == 0)
4342 if (!strcmp (arg
, "quiet"))
4349 if (!strcmp (arg
, "version"))
4357 inhibit_warnings
= 1;
4366 /* We save the value of warn_uninitialized, since if they put
4367 -Wuninitialized on the command line, we need to generate a
4368 warning about not using it without also specifying -O. */
4369 if (warn_uninitialized
!= 1)
4370 warn_uninitialized
= 2;
4373 return decode_W_option (arg
+ 1);
4377 if (!strncmp (arg
, "aux-info", 8))
4384 aux_info_file_name
= argv
[1];
4385 flag_gen_aux_info
= 1;
4388 else if (arg
[8] == '=')
4390 aux_info_file_name
= arg
+ 9;
4391 flag_gen_aux_info
= 1;
4396 else if (!strcmp (arg
, "auxbase"))
4402 aux_base_name
= argv
[1];
4406 else if (!strcmp (arg
, "auxbase-strip"))
4413 strip_off_ending (argv
[1], strlen (argv
[1]));
4415 aux_base_name
= argv
[1];
4430 asm_file_name
= argv
[1];
4445 g_switch_val
= read_integral_parameter (argv
[1], 0, -1);
4450 g_switch_val
= read_integral_parameter (arg
+ 1, 0, -1);
4454 if (g_switch_val
== -1)
4458 g_switch_set
= TRUE
;
4459 g_switch_value
= g_switch_val
;
4469 /* Decode -m switches. */
4470 /* Decode the switch -mNAME. */
4473 set_target_switch (name
)
4477 int valid_target_option
= 0;
4479 for (j
= 0; j
< ARRAY_SIZE (target_switches
); j
++)
4480 if (!strcmp (target_switches
[j
].name
, name
))
4482 if (target_switches
[j
].value
< 0)
4483 target_flags
&= ~-target_switches
[j
].value
;
4485 target_flags
|= target_switches
[j
].value
;
4488 if (target_switches
[j
].value
< 0)
4489 target_flags_explicit
|= -target_switches
[j
].value
;
4491 target_flags_explicit
|= target_switches
[j
].value
;
4493 valid_target_option
= 1;
4496 #ifdef TARGET_OPTIONS
4497 if (!valid_target_option
)
4498 for (j
= 0; j
< ARRAY_SIZE (target_options
); j
++)
4500 int len
= strlen (target_options
[j
].prefix
);
4501 if (!strncmp (target_options
[j
].prefix
, name
, len
))
4503 *target_options
[j
].variable
= name
+ len
;
4504 valid_target_option
= 1;
4509 if (!valid_target_option
)
4510 error ("invalid option `%s'", name
);
4513 /* Print version information to FILE.
4514 Each line begins with INDENT (for the case where FILE is the
4515 assembler output file). */
4518 print_version (file
, indent
)
4523 #define __VERSION__ "[?]"
4527 "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
4529 "%s%s%s version %s (%s) compiled by CC.\n"
4531 , indent
, *indent
!= 0 ? " " : "",
4532 lang_hooks
.name
, version_string
, TARGET_NAME
,
4533 indent
, __VERSION__
);
4536 /* Print an option value and return the adjusted position in the line.
4537 ??? We don't handle error returns from fprintf (disk full); presumably
4538 other code will catch a disk full though. */
4541 print_single_switch (file
, pos
, max
, indent
, sep
, term
, type
, name
)
4544 const char *indent
, *sep
, *term
, *type
, *name
;
4546 /* The ultrix fprintf returns 0 on success, so compute the result we want
4547 here since we need it for the following test. */
4548 int len
= strlen (sep
) + strlen (type
) + strlen (name
);
4553 fprintf (file
, "%s", term
);
4558 fprintf (file
, "%s", indent
);
4559 pos
= strlen (indent
);
4561 fprintf (file
, "%s%s%s", sep
, type
, name
);
4566 /* Print active target switches to FILE.
4567 POS is the current cursor position and MAX is the size of a "line".
4568 Each line begins with INDENT and ends with TERM.
4569 Each switch is separated from the next by SEP. */
4572 print_switch_values (file
, pos
, max
, indent
, sep
, term
)
4575 const char *indent
, *sep
, *term
;
4580 /* Print the options as passed. */
4582 pos
= print_single_switch (file
, pos
, max
, indent
, *indent
? " " : "", term
,
4583 _("options passed: "), "");
4585 for (p
= &save_argv
[1]; *p
!= NULL
; p
++)
4589 if (strcmp (*p
, "-o") == 0)
4595 if (strcmp (*p
, "-quiet") == 0)
4597 if (strcmp (*p
, "-version") == 0)
4602 pos
= print_single_switch (file
, pos
, max
, indent
, sep
, term
, *p
, "");
4605 fprintf (file
, "%s", term
);
4607 /* Print the -f and -m options that have been enabled.
4608 We don't handle language specific options but printing argv
4611 pos
= print_single_switch (file
, 0, max
, indent
, *indent
? " " : "", term
,
4612 _("options enabled: "), "");
4614 for (j
= 0; j
< ARRAY_SIZE (f_options
); j
++)
4615 if (*f_options
[j
].variable
== f_options
[j
].on_value
)
4616 pos
= print_single_switch (file
, pos
, max
, indent
, sep
, term
,
4617 "-f", f_options
[j
].string
);
4619 /* Print target specific options. */
4621 for (j
= 0; j
< ARRAY_SIZE (target_switches
); j
++)
4622 if (target_switches
[j
].name
[0] != '\0'
4623 && target_switches
[j
].value
> 0
4624 && ((target_switches
[j
].value
& target_flags
)
4625 == target_switches
[j
].value
))
4627 pos
= print_single_switch (file
, pos
, max
, indent
, sep
, term
,
4628 "-m", target_switches
[j
].name
);
4631 #ifdef TARGET_OPTIONS
4632 for (j
= 0; j
< ARRAY_SIZE (target_options
); j
++)
4633 if (*target_options
[j
].variable
!= NULL
)
4636 sprintf (prefix
, "-m%s", target_options
[j
].prefix
);
4637 pos
= print_single_switch (file
, pos
, max
, indent
, sep
, term
,
4638 prefix
, *target_options
[j
].variable
);
4642 fprintf (file
, "%s", term
);
4645 /* Open assembly code output file. Do this even if -fsyntax-only is
4646 on, because then the driver will have provided the name of a
4647 temporary file or bit bucket for us. NAME is the file specified on
4648 the command line, possibly NULL. */
4650 init_asm_output (name
)
4653 if (name
== NULL
&& asm_file_name
== 0)
4654 asm_out_file
= stdout
;
4657 if (asm_file_name
== 0)
4659 int len
= strlen (dump_base_name
);
4660 char *dumpname
= (char *) xmalloc (len
+ 6);
4661 memcpy (dumpname
, dump_base_name
, len
+ 1);
4662 strip_off_ending (dumpname
, len
);
4663 strcat (dumpname
, ".s");
4664 asm_file_name
= dumpname
;
4666 if (!strcmp (asm_file_name
, "-"))
4667 asm_out_file
= stdout
;
4669 asm_out_file
= fopen (asm_file_name
, "w");
4670 if (asm_out_file
== 0)
4671 fatal_io_error ("can't open %s for writing", asm_file_name
);
4674 #ifdef IO_BUFFER_SIZE
4675 setvbuf (asm_out_file
, (char *) xmalloc (IO_BUFFER_SIZE
),
4676 _IOFBF
, IO_BUFFER_SIZE
);
4679 if (!flag_syntax_only
)
4681 #ifdef ASM_FILE_START
4682 ASM_FILE_START (asm_out_file
);
4685 #ifdef ASM_COMMENT_START
4686 if (flag_verbose_asm
)
4688 /* Print the list of options in effect. */
4689 print_version (asm_out_file
, ASM_COMMENT_START
);
4690 print_switch_values (asm_out_file
, 0, MAX_LINE
,
4691 ASM_COMMENT_START
, " ", "\n");
4692 /* Add a blank line here so it appears in assembler output but not
4694 fprintf (asm_out_file
, "\n");
4700 /* Initialization of the front end environment, before command line
4701 options are parsed. Signal handlers, internationalization etc.
4702 ARGV0 is main's argv[0]. */
4704 general_init (argv0
)
4709 p
= argv0
+ strlen (argv0
);
4710 while (p
!= argv0
&& !IS_DIR_SEPARATOR (p
[-1]))
4714 xmalloc_set_program_name (progname
);
4718 gcc_init_libintl ();
4720 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
4722 signal (SIGSEGV
, crash_signal
);
4725 signal (SIGILL
, crash_signal
);
4728 signal (SIGBUS
, crash_signal
);
4731 signal (SIGABRT
, crash_signal
);
4733 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
4734 signal (SIGIOT
, crash_signal
);
4737 signal (SIGFPE
, crash_signal
);
4740 /* Initialize the diagnostics reporting machinery, so option parsing
4741 can give warnings and errors. */
4742 diagnostic_initialize (global_dc
);
4744 /* Initialize the garbage-collector, string pools and tree type hash
4751 /* Parse command line options and set default flag values, called
4752 after language-independent option-independent initialization. Do
4753 minimal options processing. Outputting diagnostics is OK, but GC
4754 and identifier hashtables etc. are not initialized yet.
4756 Return nonzero to suppress compiler back end initialization. */
4758 parse_options_and_default_flags (argc
, argv
)
4764 /* Save in case md file wants to emit args as a comment. */
4768 /* Initialize register usage now so switches may override. */
4771 /* Register the language-independent parameters. */
4772 add_params (lang_independent_params
, LAST_PARAM
);
4774 /* Perform language-specific options initialization. */
4775 (*lang_hooks
.init_options
) ();
4777 /* Scan to see what optimization level has been specified. That will
4778 determine the default value of many flags. */
4779 for (i
= 1; i
< argc
; i
++)
4781 if (!strcmp (argv
[i
], "-O"))
4786 else if (argv
[i
][0] == '-' && argv
[i
][1] == 'O')
4788 /* Handle -Os, -O2, -O3, -O69, ... */
4789 char *p
= &argv
[i
][2];
4791 if ((p
[0] == 's') && (p
[1] == 0))
4795 /* Optimizing for size forces optimize to be 2. */
4800 const int optimize_val
= read_integral_parameter (p
, p
- 2, -1);
4801 if (optimize_val
!= -1)
4803 optimize
= optimize_val
;
4812 flag_merge_constants
= 0;
4818 flag_thread_jumps
= 1;
4820 flag_delayed_branch
= 1;
4822 #ifdef CAN_DEBUG_WITHOUT_FP
4823 flag_omit_frame_pointer
= 1;
4825 flag_guess_branch_prob
= 1;
4826 flag_cprop_registers
= 1;
4827 flag_loop_optimize
= 1;
4828 flag_crossjumping
= 1;
4829 flag_if_conversion
= 1;
4830 flag_if_conversion2
= 1;
4835 flag_optimize_sibling_calls
= 1;
4836 flag_cse_follow_jumps
= 1;
4837 flag_cse_skip_blocks
= 1;
4839 flag_expensive_optimizations
= 1;
4840 flag_strength_reduce
= 1;
4841 flag_rerun_cse_after_loop
= 1;
4842 flag_rerun_loop_opt
= 1;
4843 flag_caller_saves
= 1;
4846 #ifdef INSN_SCHEDULING
4847 flag_schedule_insns
= 1;
4848 flag_schedule_insns_after_reload
= 1;
4851 flag_strict_aliasing
= 1;
4852 flag_delete_null_pointer_checks
= 1;
4853 flag_reorder_blocks
= 1;
4854 flag_reorder_functions
= 1;
4859 flag_inline_functions
= 1;
4860 flag_rename_registers
= 1;
4863 if (optimize
< 2 || optimize_size
)
4868 align_functions
= 1;
4870 /* Don't reorder blocks when optimizing for size because extra
4871 jump insns may be created; also barrier may create extra padding.
4873 More correctly we should have a block reordering mode that tried
4874 to minimize the combined size of all the jumps. This would more
4875 or less automatically remove extra jumps, but would also try to
4876 use more short jumps instead of long jumps. */
4877 flag_reorder_blocks
= 0;
4880 /* Initialize whether `char' is signed. */
4881 flag_signed_char
= DEFAULT_SIGNED_CHAR
;
4882 #ifdef DEFAULT_SHORT_ENUMS
4883 /* Initialize how much space enums occupy, by default. */
4884 flag_short_enums
= DEFAULT_SHORT_ENUMS
;
4887 /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
4890 set_target_switch ("");
4892 /* Unwind tables are always present in an ABI-conformant IA-64
4893 object file, so the default should be ON. */
4894 #ifdef IA64_UNWIND_INFO
4895 flag_unwind_tables
= IA64_UNWIND_INFO
;
4898 #ifdef OPTIMIZATION_OPTIONS
4899 /* Allow default optimizations to be specified on a per-machine basis. */
4900 OPTIMIZATION_OPTIONS (optimize
, optimize_size
);
4903 /* Perform normal command line switch decoding. */
4904 for (i
= 1; i
< argc
;)
4907 int indep_processed
;
4909 /* Give the language a chance to decode the option for itself. */
4910 lang_processed
= (*lang_hooks
.decode_option
) (argc
- i
, argv
+ i
);
4912 if (lang_processed
>= 0)
4913 /* Now see if the option also has a language independent meaning.
4914 Some options are both language specific and language independent,
4916 indep_processed
= independent_decode_option (argc
- i
, argv
+ i
);
4919 lang_processed
= -lang_processed
;
4920 indep_processed
= 0;
4923 if (lang_processed
|| indep_processed
)
4924 i
+= MAX (lang_processed
, indep_processed
);
4927 const char *option
= NULL
;
4928 const char *lang
= NULL
;
4931 /* It is possible that the command line switch is not valid for the
4932 current language, but it is valid for another language. In order
4933 to be compatible with previous versions of the compiler (which
4934 did not issue an error message in this case) we check for this
4935 possibility here. If we do find a match, then if extra_warnings
4936 is set we generate a warning message, otherwise we will just
4937 ignore the option. */
4938 for (j
= 0; j
< ARRAY_SIZE (documented_lang_options
); j
++)
4940 option
= documented_lang_options
[j
].option
;
4943 lang
= documented_lang_options
[j
].description
;
4944 else if (! strncmp (argv
[i
], option
, strlen (option
)))
4948 if (j
!= ARRAY_SIZE (documented_lang_options
))
4952 warning ("ignoring command line option '%s'", argv
[i
]);
4955 ("(it is valid for %s but not the selected language)",
4959 else if (argv
[i
][0] == '-' && argv
[i
][1] == 'g')
4960 warning ("`%s': unknown or unsupported -g option", &argv
[i
][2]);
4962 error ("unrecognized option `%s'", argv
[i
]);
4968 if (flag_no_inline
== 2)
4971 flag_really_no_inline
= flag_no_inline
;
4973 /* Set flag_no_inline before the post_options () hook. The C front
4974 ends use it to determine tree inlining defaults. FIXME: such
4975 code should be lang-independent when all front ends use tree
4976 inlining, in which case it, and this condition, should be moved
4977 to the top of process_options() instead. */
4980 /* Inlining does not work if not optimizing,
4981 so force it not to be done. */
4985 /* The c_decode_option function and decode_option hook set
4986 this to `2' if -Wall is used, so we can avoid giving out
4987 lots of errors for people who don't realize what -Wall does. */
4988 if (warn_uninitialized
== 1)
4989 warning ("-Wuninitialized is not supported without -O");
4992 if (flag_really_no_inline
== 2)
4993 flag_really_no_inline
= flag_no_inline
;
4996 /* Process the options that have been parsed. */
5000 #ifdef OVERRIDE_OPTIONS
5001 /* Some machines may reject certain combinations of options. */
5005 /* Set up the align_*_log variables, defaulting them to 1 if they
5006 were still unset. */
5007 if (align_loops
<= 0) align_loops
= 1;
5008 if (align_loops_max_skip
> align_loops
|| !align_loops
)
5009 align_loops_max_skip
= align_loops
- 1;
5010 align_loops_log
= floor_log2 (align_loops
* 2 - 1);
5011 if (align_jumps
<= 0) align_jumps
= 1;
5012 if (align_jumps_max_skip
> align_jumps
|| !align_jumps
)
5013 align_jumps_max_skip
= align_jumps
- 1;
5014 align_jumps_log
= floor_log2 (align_jumps
* 2 - 1);
5015 if (align_labels
<= 0) align_labels
= 1;
5016 align_labels_log
= floor_log2 (align_labels
* 2 - 1);
5017 if (align_labels_max_skip
> align_labels
|| !align_labels
)
5018 align_labels_max_skip
= align_labels
- 1;
5019 if (align_functions
<= 0) align_functions
= 1;
5020 align_functions_log
= floor_log2 (align_functions
* 2 - 1);
5022 /* Unrolling all loops implies that standard loop unrolling must also
5024 if (flag_unroll_all_loops
)
5025 flag_unroll_loops
= 1;
5026 /* Loop unrolling requires that strength_reduction be on also. Silently
5027 turn on strength reduction here if it isn't already on. Also, the loop
5028 unrolling code assumes that cse will be run after loop, so that must
5029 be turned on also. */
5030 if (flag_unroll_loops
)
5032 flag_strength_reduce
= 1;
5033 flag_rerun_cse_after_loop
= 1;
5036 if (flag_non_call_exceptions
)
5037 flag_asynchronous_unwind_tables
= 1;
5038 if (flag_asynchronous_unwind_tables
)
5039 flag_unwind_tables
= 1;
5041 /* Warn about options that are not supported on this machine. */
5042 #ifndef INSN_SCHEDULING
5043 if (flag_schedule_insns
|| flag_schedule_insns_after_reload
)
5044 warning ("instruction scheduling not supported on this target machine");
5047 if (flag_delayed_branch
)
5048 warning ("this target machine does not have delayed branches");
5051 user_label_prefix
= USER_LABEL_PREFIX
;
5052 if (flag_leading_underscore
!= -1)
5054 /* If the default prefix is more complicated than "" or "_",
5055 issue a warning and ignore this option. */
5056 if (user_label_prefix
[0] == 0 ||
5057 (user_label_prefix
[0] == '_' && user_label_prefix
[1] == 0))
5059 user_label_prefix
= flag_leading_underscore
? "_" : "";
5062 warning ("-f%sleading-underscore not supported on this target machine",
5063 flag_leading_underscore
? "" : "no-");
5066 /* If we are in verbose mode, write out the version and maybe all the
5067 option flags in use. */
5070 print_version (stderr
, "");
5072 print_switch_values (stderr
, 0, MAX_LINE
, "", " ", "\n");
5078 if (flag_syntax_only
)
5080 write_symbols
= NO_DEBUG
;
5084 /* Now we know write_symbols, set up the debug hooks based on it.
5085 By default we do nothing for debug output. */
5086 #if defined(DBX_DEBUGGING_INFO)
5087 if (write_symbols
== DBX_DEBUG
)
5088 debug_hooks
= &dbx_debug_hooks
;
5090 #if defined(XCOFF_DEBUGGING_INFO)
5091 if (write_symbols
== XCOFF_DEBUG
)
5092 debug_hooks
= &xcoff_debug_hooks
;
5094 #ifdef SDB_DEBUGGING_INFO
5095 if (write_symbols
== SDB_DEBUG
)
5096 debug_hooks
= &sdb_debug_hooks
;
5098 #ifdef DWARF_DEBUGGING_INFO
5099 if (write_symbols
== DWARF_DEBUG
)
5100 debug_hooks
= &dwarf_debug_hooks
;
5102 #ifdef DWARF2_DEBUGGING_INFO
5103 if (write_symbols
== DWARF2_DEBUG
)
5104 debug_hooks
= &dwarf2_debug_hooks
;
5106 #ifdef VMS_DEBUGGING_INFO
5107 if (write_symbols
== VMS_DEBUG
|| write_symbols
== VMS_AND_DWARF2_DEBUG
)
5108 debug_hooks
= &vmsdbg_debug_hooks
;
5111 /* If auxiliary info generation is desired, open the output file.
5112 This goes in the same directory as the source file--unlike
5113 all the other output files. */
5114 if (flag_gen_aux_info
)
5116 aux_info_file
= fopen (aux_info_file_name
, "w");
5117 if (aux_info_file
== 0)
5118 fatal_io_error ("can't open %s", aux_info_file_name
);
5121 if (! targetm
.have_named_sections
)
5123 if (flag_function_sections
)
5125 warning ("-ffunction-sections not supported for this target");
5126 flag_function_sections
= 0;
5128 if (flag_data_sections
)
5130 warning ("-fdata-sections not supported for this target");
5131 flag_data_sections
= 0;
5135 if (flag_function_sections
&& profile_flag
)
5137 warning ("-ffunction-sections disabled; it makes profiling impossible");
5138 flag_function_sections
= 0;
5141 #ifndef HAVE_prefetch
5142 if (flag_prefetch_loop_arrays
)
5144 warning ("-fprefetch-loop-arrays not supported for this target");
5145 flag_prefetch_loop_arrays
= 0;
5148 if (flag_prefetch_loop_arrays
&& !HAVE_prefetch
)
5150 warning ("-fprefetch-loop-arrays not supported for this target (try -march switches)");
5151 flag_prefetch_loop_arrays
= 0;
5155 /* This combination of options isn't handled for i386 targets and doesn't
5156 make much sense anyway, so don't allow it. */
5157 if (flag_prefetch_loop_arrays
&& optimize_size
)
5159 warning ("-fprefetch-loop-arrays is not supported with -Os");
5160 flag_prefetch_loop_arrays
= 0;
5163 #ifndef OBJECT_FORMAT_ELF
5164 if (flag_function_sections
&& write_symbols
!= NO_DEBUG
)
5165 warning ("-ffunction-sections may affect debugging on some targets");
5168 /* The presence of IEEE signaling NaNs, implies all math can trap. */
5169 if (flag_signaling_nans
)
5170 flag_trapping_math
= 1;
5173 /* Initialize the compiler back end. */
5177 /* init_emit_once uses reg_raw_mode and therefore must be called
5178 after init_regs which initialized reg_raw_mode. */
5180 init_emit_once (debug_info_level
== DINFO_LEVEL_NORMAL
5181 || debug_info_level
== DINFO_LEVEL_VERBOSE
5182 #ifdef VMS_DEBUGGING_INFO
5183 /* Enable line number info for traceback */
5184 || debug_info_level
> DINFO_LEVEL_NONE
5186 || flag_test_coverage
5187 || warn_notreached
);
5188 init_fake_stack_mems ();
5192 init_function_once ();
5193 init_varasm_once ();
5195 /* The following initialization functions need to generate rtl, so
5196 provide a dummy function context for them. */
5197 init_dummy_function_start ();
5199 if (flag_caller_saves
)
5200 init_caller_save ();
5201 expand_dummy_function_end ();
5204 /* Language-dependent initialization. Returns nonzero on success. */
5206 lang_dependent_init (name
)
5209 if (dump_base_name
== 0)
5210 dump_base_name
= name
? name
: "gccdump";
5212 /* Front-end initialization. This hook can assume that GC,
5213 identifier hashes etc. are set up, but debug initialization is
5214 not done yet. This routine must return the original filename
5215 (e.g. foo.i -> foo.c) so can correctly initialize debug output. */
5216 name
= (*lang_hooks
.init
) (name
);
5220 /* Is this duplication necessary? */
5221 name
= ggc_strdup (name
);
5222 main_input_filename
= input_filename
= name
;
5223 init_asm_output (name
);
5225 /* These create various _DECL nodes, so need to be called after the
5226 front end is initialized. */
5230 /* The following initialization functions need to generate rtl, so
5231 provide a dummy function context for them. */
5232 init_dummy_function_start ();
5234 expand_dummy_function_end ();
5236 /* Put an entry on the input file stack for the main input file. */
5237 push_srcloc (input_filename
, 0);
5239 /* If dbx symbol table desired, initialize writing it and output the
5240 predefined types. */
5241 timevar_push (TV_SYMOUT
);
5243 #ifdef DWARF2_UNWIND_INFO
5244 if (dwarf2out_do_frame ())
5245 dwarf2out_frame_init ();
5248 /* Now we have the correct original filename, we can initialize
5250 (*debug_hooks
->init
) (name
);
5252 timevar_pop (TV_SYMOUT
);
5257 /* Clean up: close opened files, etc. */
5262 /* Close the dump files. */
5263 if (flag_gen_aux_info
)
5265 fclose (aux_info_file
);
5267 unlink (aux_info_file_name
);
5270 /* Close non-debugging input and output files. Take special care to note
5271 whether fclose returns an error, since the pages might still be on the
5272 buffer chain while the file is open. */
5276 if (ferror (asm_out_file
) != 0)
5277 fatal_io_error ("error writing to %s", asm_file_name
);
5278 if (fclose (asm_out_file
) != 0)
5279 fatal_io_error ("error closing %s", asm_file_name
);
5282 /* Do whatever is necessary to finish printing the graphs. */
5283 if (graph_dump_format
!= no_graph
)
5287 for (i
= 0; i
< (int) DFI_MAX
; ++i
)
5288 if (dump_file
[i
].initialized
&& dump_file
[i
].graph_dump_p
)
5293 sprintf (seq
, DUMPFILE_FORMAT
, i
);
5294 suffix
= concat (seq
, dump_file
[i
].extension
, NULL
);
5295 finish_graph_dump_file (dump_base_name
, suffix
);
5302 ggc_print_statistics ();
5303 stringpool_statistics ();
5304 dump_tree_statistics ();
5307 /* Free up memory for the benefit of leak detectors. */
5310 /* Language-specific end of compilation actions. */
5311 (*lang_hooks
.finish
) ();
5314 /* Initialize the compiler, and compile the input file. */
5318 /* All command line options have been parsed; allow the front end to
5319 perform consistency checks, etc. */
5320 bool no_backend
= (*lang_hooks
.post_options
) ();
5322 /* The bulk of command line switch processing. */
5325 /* If an error has already occurred, give up. */
5333 char *name
= xstrdup (lbasename (filename
));
5335 aux_base_name
= name
;
5336 strip_off_ending (name
, strlen (name
));
5339 aux_base_name
= "gccaux";
5341 /* We cannot start timing until after options are processed since that
5342 says if we run timers or not. */
5344 timevar_start (TV_TOTAL
);
5346 /* Set up the back-end if requested. */
5350 /* Language-dependent initialization. Returns true on success. */
5351 if (lang_dependent_init (filename
))
5356 /* Stop timing and print the times. */
5357 timevar_stop (TV_TOTAL
);
5358 timevar_print (stderr
);
5361 /* Entry point of cc1, cc1plus, jc1, f771, etc.
5362 Decode command args, then call compile_file.
5363 Exit code is FATAL_EXIT_CODE if can't open files or if there were
5364 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
5366 It is not safe to call this function more than once. */
5369 toplev_main (argc
, argv
)
5373 /* Initialization of GCC's environment, and diagnostics. */
5374 general_init (argv
[0]);
5376 /* Parse the options and do minimal processing; basically just
5377 enough to default flags appropriately. */
5378 parse_options_and_default_flags (argc
, argv
);
5380 /* Exit early if we can (e.g. -help). */
5381 if (!exit_after_options
)
5384 if (errorcount
|| sorrycount
)
5385 return (FATAL_EXIT_CODE
);
5387 return (SUCCESS_EXIT_CODE
);