1 /* Top level of GNU C compiler
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
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. */
34 #ifdef HAVE_SYS_RESOURCE_H
35 # include <sys/resource.h>
38 #ifdef HAVE_SYS_TIMES_H
39 # include <sys/times.h>
47 #include "insn-attr.h"
48 #include "insn-config.h"
49 #include "hard-reg-set.h"
56 #include "basic-block.h"
63 #include "diagnostic.h"
66 #include "dwarf2asm.h"
68 #ifdef DWARF_DEBUGGING_INFO
72 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
73 #include "dwarf2out.h"
76 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
80 #ifdef SDB_DEBUGGING_INFO
84 #ifdef XCOFF_DEBUGGING_INFO
89 /* The extra parameters substantially improve the I/O performance. */
92 vms_fopen (fname
, type
)
96 /* The <stdio.h> in the gcc-vms-1.42 distribution prototypes fopen with two
97 fixed arguments, which matches ANSI's specification but not VAXCRTL's
98 pre-ANSI implementation. This hack circumvents the mismatch problem. */
99 FILE *(*vmslib_fopen
)() = (FILE *(*)()) fopen
;
102 return (*vmslib_fopen
) (fname
, type
, "mbc=32",
103 "deq=64", "fop=tef", "shr=nil");
105 return (*vmslib_fopen
) (fname
, type
, "mbc=32");
108 #define fopen vms_fopen
111 #ifndef DEFAULT_GDB_EXTENSIONS
112 #define DEFAULT_GDB_EXTENSIONS 1
115 /* If more than one debugging type is supported, you must define
116 PREFERRED_DEBUGGING_TYPE to choose a format in a system-dependent way.
118 This is one long line cause VAXC can't handle a \-newline. */
119 #if 1 < (defined (DBX_DEBUGGING_INFO) + defined (SDB_DEBUGGING_INFO) + defined (DWARF_DEBUGGING_INFO) + defined (DWARF2_DEBUGGING_INFO) + defined (XCOFF_DEBUGGING_INFO))
120 #ifndef PREFERRED_DEBUGGING_TYPE
121 You Lose
! You must define PREFERRED_DEBUGGING_TYPE
!
122 #endif /* no PREFERRED_DEBUGGING_TYPE */
123 #else /* Only one debugging format supported. Define PREFERRED_DEBUGGING_TYPE
124 so the following code needn't care. */
125 #ifdef DBX_DEBUGGING_INFO
126 #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
128 #ifdef SDB_DEBUGGING_INFO
129 #define PREFERRED_DEBUGGING_TYPE SDB_DEBUG
131 #ifdef DWARF_DEBUGGING_INFO
132 #define PREFERRED_DEBUGGING_TYPE DWARF_DEBUG
134 #ifdef DWARF2_DEBUGGING_INFO
135 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
137 #ifdef XCOFF_DEBUGGING_INFO
138 #define PREFERRED_DEBUGGING_TYPE XCOFF_DEBUG
140 #endif /* More than one debugger format enabled. */
142 /* If still not defined, must have been because no debugging formats
144 #ifndef PREFERRED_DEBUGGING_TYPE
145 #define PREFERRED_DEBUGGING_TYPE NO_DEBUG
148 #if defined (HAVE_DECL_ENVIRON) && !HAVE_DECL_ENVIRON
149 extern char **environ
;
152 /* Carry information from ASM_DECLARE_OBJECT_NAME
153 to ASM_FINISH_DECLARE_OBJECT. */
155 extern int size_directive_output
;
156 extern tree last_assemble_variable_decl
;
158 static void set_target_switch
PARAMS ((const char *));
159 static const char *decl_name
PARAMS ((tree
, int));
161 static void float_signal
PARAMS ((int)) ATTRIBUTE_NORETURN
;
162 static void crash_signal
PARAMS ((int)) ATTRIBUTE_NORETURN
;
163 static void compile_file
PARAMS ((const char *));
164 static void display_help
PARAMS ((void));
165 static void display_target_options
PARAMS ((void));
167 static void decode_d_option
PARAMS ((const char *));
168 static int decode_f_option
PARAMS ((const char *));
169 static int decode_W_option
PARAMS ((const char *));
170 static int decode_g_option
PARAMS ((const char *));
171 static unsigned int independent_decode_option
PARAMS ((int, char **));
173 static void print_version
PARAMS ((FILE *, const char *));
174 static int print_single_switch
PARAMS ((FILE *, int, int, const char *,
175 const char *, const char *,
176 const char *, const char *));
177 static void print_switch_values
PARAMS ((FILE *, int, int, const char *,
178 const char *, const char *));
180 /* Length of line when printing switch values. */
183 /* Name of program invoked, sans directories. */
185 const char *progname
;
187 /* Copy of arguments to main. */
191 /* Name of current original source file (what was input to cpp).
192 This comes from each #-command in the actual input. */
194 const char *input_filename
;
196 /* Name of top-level original source file (what was input to cpp).
197 This comes from the #-command at the beginning of the actual input.
198 If there isn't any there, then this is the cc1 input file name. */
200 const char *main_input_filename
;
202 /* Current line number in real source file. */
206 /* Nonzero if it is unsafe to create any new pseudo registers. */
209 /* Stack of currently pending input files. */
211 struct file_stack
*input_file_stack
;
213 /* Incremented on each change to input_file_stack. */
214 int input_file_stack_tick
;
216 /* Name to use as base of names for dump output files. */
218 const char *dump_base_name
;
220 /* Bit flags that specify the machine subtype we are compiling for.
221 Bits are tested using macros TARGET_... defined in the tm.h file
222 and set by `-m...' switches. Must be defined in rtlanal.c. */
224 extern int target_flags
;
226 /* Describes a dump file. */
228 struct dump_file_info
230 /* The unique extension to apply, e.g. ".jump". */
231 const char *const extension
;
233 /* The -d<c> character that enables this dump file. */
234 char const debug_switch
;
236 /* True if there is a corresponding graph dump file. */
237 char const graph_dump_p
;
239 /* True if the user selected this dump. */
242 /* True if the files have been initialized (ie truncated). */
246 /* Enumerate the extant dump files. */
285 /* Describes all the dump files. Should be kept in order of the
286 pass and in sync with dump_file_index above.
288 Remaining -d letters:
294 struct dump_file_info dump_file
[DFI_MAX
] =
296 { "rtl", 'r', 0, 0, 0 },
297 { "sibling", 'i', 0, 0, 0 },
298 { "eh", 'h', 0, 0, 0 },
299 { "jump", 'j', 0, 0, 0 },
300 { "cse", 's', 0, 0, 0 },
301 { "addressof", 'F', 0, 0, 0 },
302 { "ssa", 'e', 1, 0, 0 },
303 { "dce", 'X', 1, 0, 0 },
304 { "ussa", 'e', 1, 0, 0 }, /* Yes, duplicate enable switch. */
305 { "gcse", 'G', 1, 0, 0 },
306 { "loop", 'L', 1, 0, 0 },
307 { "cse2", 't', 1, 0, 0 },
308 { "cfg", 'f', 1, 0, 0 },
309 { "bp", 'b', 1, 0, 0 },
310 { "life", 'f', 1, 0, 0 }, /* Yes, duplicate enable switch. */
311 { "combine", 'c', 1, 0, 0 },
312 { "ce", 'C', 1, 0, 0 },
313 { "regmove", 'N', 1, 0, 0 },
314 { "sched", 'S', 1, 0, 0 },
315 { "lreg", 'l', 1, 0, 0 },
316 { "greg", 'g', 1, 0, 0 },
317 { "postreload", 'o', 1, 0, 0 },
318 { "flow2", 'w', 1, 0, 0 },
319 { "peephole2", 'z', 1, 0, 0 },
320 { "rnreg", 'n', 1, 0, 0 },
321 { "ce2", 'E', 1, 0, 0 },
322 { "sched2", 'R', 1, 0, 0 },
323 { "bbro", 'B', 1, 0, 0 },
324 { "jump2", 'J', 1, 0, 0 },
325 { "mach", 'M', 1, 0, 0 },
326 { "dbr", 'd', 0, 0, 0 },
327 { "stack", 'k', 1, 0, 0 },
330 static int open_dump_file
PARAMS ((enum dump_file_index
, tree
));
331 static void close_dump_file
PARAMS ((enum dump_file_index
,
332 void (*) (FILE *, rtx
), rtx
));
334 /* Other flags saying which kinds of debugging dump have been requested. */
336 int rtl_dump_and_exit
;
337 int flag_print_asm_name
;
338 static int flag_print_mem
;
339 static int version_flag
;
340 static char *filename
;
341 enum graph_dump_types graph_dump_format
;
343 /* Name for output file of assembly code, specified with -o. */
347 /* Value of the -G xx switch, and whether it was passed or not. */
351 /* Type(s) of debugging information we are producing (if any).
352 See flags.h for the definitions of the different possible
353 types of debugging information. */
354 enum debug_info_type write_symbols
= NO_DEBUG
;
356 /* Level of debugging information we are producing. See flags.h
357 for the definitions of the different possible levels. */
358 enum debug_info_level debug_info_level
= DINFO_LEVEL_NONE
;
360 /* Nonzero means use GNU-only extensions in the generated symbolic
361 debugging information. */
362 /* Currently, this only has an effect when write_symbols is set to
363 DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG. */
364 int use_gnu_debug_info_extensions
= 0;
366 /* Nonzero means do optimizations. -O.
367 Particular numeric values stand for particular amounts of optimization;
368 thus, -O2 stores 2 here. However, the optimizations beyond the basic
369 ones are not controlled directly by this variable. Instead, they are
370 controlled by individual `flag_...' variables that are defaulted
371 based on this variable. */
375 /* Nonzero means optimize for size. -Os.
376 The only valid values are zero and non-zero. When optimize_size is
377 non-zero, optimize defaults to 2, but certain individual code
378 bloating optimizations are disabled. */
380 int optimize_size
= 0;
382 /* Number of error messages and warning messages so far. */
385 int warningcount
= 0;
388 /* Nonzero if we should exit after parsing options. */
389 static int exit_after_options
= 0;
391 /* The FUNCTION_DECL for the function currently being compiled,
392 or 0 if between functions. */
393 tree current_function_decl
;
395 /* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
397 tree current_function_func_begin_label
;
399 /* Pointer to function to compute the name to use to print a declaration.
400 DECL is the declaration in question.
401 VERBOSITY determines what information will be printed:
402 0: DECL_NAME, demangled as necessary.
403 1: and scope information.
404 2: and any other information that might be interesting, such as function
405 parameter types in C++. */
407 const char *(*decl_printable_name
) PARAMS ((tree
, int));
409 /* Pointer to function to compute rtl for a language-specific tree code. */
411 typedef rtx (*lang_expand_expr_t
)
412 PARAMS ((union tree_node
*, rtx
, enum machine_mode
,
413 enum expand_modifier modifier
));
415 lang_expand_expr_t lang_expand_expr
= 0;
417 tree (*lang_expand_constant
) PARAMS ((tree
)) = 0;
419 /* Pointer to function to finish handling an incomplete decl at the
420 end of compilation. */
422 void (*incomplete_decl_finalize_hook
) PARAMS ((tree
)) = 0;
424 /* Nonzero if doing dwarf2 duplicate elimination. */
426 int flag_eliminate_dwarf2_dups
= 0;
428 /* Nonzero if generating code to do profiling. */
430 int profile_flag
= 0;
432 /* Nonzero if generating code to do profiling on a line-by-line basis. */
434 int profile_block_flag
;
436 /* Nonzero if generating code to profile program flow graph arcs. */
438 int profile_arc_flag
= 0;
440 /* Nonzero if generating info for gcov to calculate line test coverage. */
442 int flag_test_coverage
= 0;
444 /* Nonzero indicates that branch taken probabilities should be calculated. */
446 int flag_branch_probabilities
= 0;
448 /* Nonzero if basic blocks should be reordered. */
450 int flag_reorder_blocks
= 0;
452 /* Nonzero if registers should be renamed. */
454 int flag_rename_registers
= 0;
456 /* Nonzero for -pedantic switch: warn about anything
457 that standard spec forbids. */
461 /* Temporarily suppress certain warnings.
462 This is set while reading code from a system header file. */
464 int in_system_header
= 0;
466 /* Don't print functions as they are compiled. -quiet. */
470 /* Print times taken by the various passes. -ftime-report. */
474 /* Print memory still in use at end of compilation (which may have little
475 to do with peak memory consumption). -fmem-report. */
479 /* Non-zero means to collect statistics which might be expensive
480 and to print them when we are done. */
481 int flag_detailed_statistics
= 0;
486 /* Nonzero means `char' should be signed. */
488 int flag_signed_char
;
490 /* Nonzero means give an enum type only as many bytes as it needs. */
492 int flag_short_enums
;
494 /* Nonzero for -fcaller-saves: allocate values in regs that need to
495 be saved across function calls, if that produces overall better code.
496 Optional now, so people can test it. */
498 #ifdef DEFAULT_CALLER_SAVES
499 int flag_caller_saves
= 1;
501 int flag_caller_saves
= 0;
504 /* Nonzero if structures and unions should be returned in memory.
506 This should only be defined if compatibility with another compiler or
507 with an ABI is needed, because it results in slower code. */
509 #ifndef DEFAULT_PCC_STRUCT_RETURN
510 #define DEFAULT_PCC_STRUCT_RETURN 1
513 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
515 int flag_pcc_struct_return
= DEFAULT_PCC_STRUCT_RETURN
;
517 /* Nonzero for -fforce-mem: load memory value into a register
518 before arithmetic on it. This makes better cse but slower compilation. */
520 int flag_force_mem
= 0;
522 /* Nonzero for -fforce-addr: load memory address into a register before
523 reference to memory. This makes better cse but slower compilation. */
525 int flag_force_addr
= 0;
527 /* Nonzero for -fdefer-pop: don't pop args after each function call;
528 instead save them up to pop many calls' args with one insns. */
530 int flag_defer_pop
= 0;
532 /* Nonzero for -ffloat-store: don't allocate floats and doubles
533 in extended-precision registers. */
535 int flag_float_store
= 0;
537 /* Nonzero for -fcse-follow-jumps:
538 have cse follow jumps to do a more extensive job. */
540 int flag_cse_follow_jumps
;
542 /* Nonzero for -fcse-skip-blocks:
543 have cse follow a branch around a block. */
544 int flag_cse_skip_blocks
;
546 /* Nonzero for -fexpensive-optimizations:
547 perform miscellaneous relatively-expensive optimizations. */
548 int flag_expensive_optimizations
;
550 /* Nonzero for -fthread-jumps:
551 have jump optimize output of loop. */
553 int flag_thread_jumps
;
555 /* Nonzero enables strength-reduction in loop.c. */
557 int flag_strength_reduce
= 0;
559 /* Nonzero enables loop unrolling in unroll.c. Only loops for which the
560 number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
561 UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
564 int flag_unroll_loops
;
566 /* Nonzero enables loop unrolling in unroll.c. All loops are unrolled.
567 This is generally not a win. */
569 int flag_unroll_all_loops
;
571 /* Nonzero forces all invariant computations in loops to be moved
574 int flag_move_all_movables
= 0;
576 /* Nonzero forces all general induction variables in loops to be
579 int flag_reduce_all_givs
= 0;
581 /* Nonzero to perform full register move optimization passes. This is the
584 int flag_regmove
= 0;
586 /* Nonzero for -fwritable-strings:
587 store string constants in data segment and don't uniquize them. */
589 int flag_writable_strings
= 0;
591 /* Nonzero means don't put addresses of constant functions in registers.
592 Used for compiling the Unix kernel, where strange substitutions are
593 done on the assembly output. */
595 int flag_no_function_cse
= 0;
597 /* Nonzero for -fomit-frame-pointer:
598 don't make a frame pointer in simple functions that don't require one. */
600 int flag_omit_frame_pointer
= 0;
602 /* Nonzero means place each function into its own section on those platforms
603 which support arbitrary section names and unlimited numbers of sections. */
605 int flag_function_sections
= 0;
607 /* ... and similar for data. */
609 int flag_data_sections
= 0;
611 /* Nonzero to inhibit use of define_optimization peephole opts. */
613 int flag_no_peephole
= 0;
615 /* Nonzero allows GCC to violate some IEEE or ANSI rules regarding math
616 operations in the interest of optimization. For example it allows
617 GCC to assume arguments to sqrt are nonnegative numbers, allowing
618 faster code for sqrt to be generated. */
620 int flag_fast_math
= 0;
622 /* Nonzero allows GCC to optimize sibling and tail recursive calls. */
624 int flag_optimize_sibling_calls
= 0;
626 /* Nonzero means the front end generally wants `errno' maintained by math
627 operations, like built-in SQRT, unless overridden by flag_fast_math. */
629 int flag_errno_math
= 1;
631 /* 0 means straightforward implementation of complex divide acceptable.
632 1 means wide ranges of inputs must work for complex divide.
633 2 means C99-like requirements for complex divide (not yet implemented). */
635 int flag_complex_divide_method
= 0;
637 /* Nonzero means all references through pointers are volatile. */
641 /* Nonzero means treat all global and extern variables as volatile. */
643 int flag_volatile_global
;
645 /* Nonzero means treat all static variables as volatile. */
647 int flag_volatile_static
;
649 /* Nonzero means just do syntax checking; don't output anything. */
651 int flag_syntax_only
= 0;
653 /* Nonzero means perform global cse. */
655 static int flag_gcse
;
657 /* Nonzero means to use global dataflow analysis to eliminate
658 useless null pointer tests. */
660 static int flag_delete_null_pointer_checks
;
662 /* Nonzero means to rerun cse after loop optimization. This increases
663 compilation time about 20% and picks up a few more common expressions. */
665 static int flag_rerun_cse_after_loop
;
667 /* Nonzero means to run loop optimizations twice. */
669 int flag_rerun_loop_opt
;
671 /* Nonzero for -finline-functions: ok to inline functions that look like
672 good inline candidates. */
674 int flag_inline_functions
;
676 /* Nonzero for -fkeep-inline-functions: even if we make a function
677 go inline everywhere, keep its definition around for debugging
680 int flag_keep_inline_functions
;
682 /* Nonzero means that functions will not be inlined. */
686 /* Nonzero means that we should emit static const variables
687 regardless of whether or not optimization is turned on. */
689 int flag_keep_static_consts
= 1;
691 /* Nonzero means we should be saving declaration info into a .X file. */
693 int flag_gen_aux_info
= 0;
695 /* Specified name of aux-info file. */
697 static char *aux_info_file_name
;
699 /* Nonzero means make the text shared if supported. */
701 int flag_shared_data
;
703 /* Nonzero means schedule into delayed branch slots if supported. */
705 int flag_delayed_branch
;
707 /* Nonzero if we are compiling pure (sharable) code.
708 Value is 1 if we are doing reasonable (i.e. simple
709 offset into offset table) pic. Value is 2 if we can
710 only perform register offsets. */
714 /* Nonzero means generate extra code for exception handling and enable
715 exception handling. */
719 /* Nonzero means generate frame unwind info table when supported. */
721 int flag_unwind_tables
= 0;
723 /* Nonzero means don't place uninitialized global data in common storage
728 /* Nonzero means pretend it is OK to examine bits of target floats,
729 even if that isn't true. The resulting code will have incorrect constants,
730 but the same series of instructions that the native compiler would make. */
732 int flag_pretend_float
;
734 /* Nonzero means change certain warnings into errors.
735 Usually these are warnings about failure to conform to some standard. */
737 int flag_pedantic_errors
= 0;
739 /* flag_schedule_insns means schedule insns within basic blocks (before
741 flag_schedule_insns_after_reload means schedule insns after
744 int flag_schedule_insns
= 0;
745 int flag_schedule_insns_after_reload
= 0;
747 /* The following flags have effect only for scheduling before register
750 flag_schedule_interblock means schedule insns accross basic blocks.
751 flag_schedule_speculative means allow speculative motion of non-load insns.
752 flag_schedule_speculative_load means allow speculative motion of some
754 flag_schedule_speculative_load_dangerous allows speculative motion of more
757 int flag_schedule_interblock
= 1;
758 int flag_schedule_speculative
= 1;
759 int flag_schedule_speculative_load
= 0;
760 int flag_schedule_speculative_load_dangerous
= 0;
762 int flag_single_precision_constant
;
764 /* flag_branch_on_count_reg means try to replace add-1,compare,branch tupple
765 by a cheaper branch on a count register. */
766 int flag_branch_on_count_reg
= 1;
768 /* -finhibit-size-directive inhibits output of .size for ELF.
769 This is used only for compiling crtstuff.c,
770 and it may be extended to other effects
771 needed for crtstuff.c on other systems. */
772 int flag_inhibit_size_directive
= 0;
774 /* -fverbose-asm causes extra commentary information to be produced in
775 the generated assembly code (to make it more readable). This option
776 is generally only of use to those who actually need to read the
777 generated assembly code (perhaps while debugging the compiler itself).
778 -fno-verbose-asm, the default, causes the extra information
779 to be omitted and is useful when comparing two assembler files. */
781 int flag_verbose_asm
= 0;
783 /* -dA causes debug commentary information to be produced in
784 the generated assembly code (to make it more readable). This option
785 is generally only of use to those who actually need to read the
786 generated assembly code (perhaps while debugging the compiler itself).
787 Currently, this switch is only used by dwarfout.c; however, it is intended
788 to be a catchall for printing debug information in the assembler file. */
790 int flag_debug_asm
= 0;
792 /* -dP causes the rtl to be emitted as a comment in assembly. */
794 int flag_dump_rtl_in_asm
= 0;
796 /* -fgnu-linker specifies use of the GNU linker for initializations.
797 (Or, more generally, a linker that handles initializations.)
798 -fno-gnu-linker says that collect2 will be used. */
800 int flag_gnu_linker
= 0;
802 int flag_gnu_linker
= 1;
808 /* Enable dead code elimination. */
811 /* Tag all structures with __attribute__(packed). */
812 int flag_pack_struct
= 0;
814 /* Emit code to check for stack overflow; also may cause large objects
815 to be allocated dynamically. */
816 int flag_stack_check
;
818 /* When non-NULL, indicates that whenever space is allocated on the
819 stack, the resulting stack pointer must not pass this
820 address---that is, for stacks that grow downward, the stack pointer
821 must always be greater than or equal to this address; for stacks
822 that grow upward, the stack pointer must be less than this address.
823 At present, the rtx may be either a REG or a SYMBOL_REF, although
824 the support provided depends on the backend. */
827 /* -fcheck-memory-usage causes extra code to be generated in order to check
828 memory accesses. This is used by a detector of bad memory accesses such
830 int flag_check_memory_usage
= 0;
832 /* -fprefix-function-name causes function name to be prefixed. This
833 can be used with -fcheck-memory-usage to isolate code compiled with
834 -fcheck-memory-usage. */
835 int flag_prefix_function_name
= 0;
837 /* 0 if pointer arguments may alias each other. True in C.
838 1 if pointer arguments may not alias each other but may alias
840 2 if pointer arguments may not alias each other and may not
841 alias global variables. True in Fortran.
842 This defaults to 0 for C. */
843 int flag_argument_noalias
= 0;
845 /* Nonzero if we should do (language-dependent) alias analysis.
846 Typically, this analysis will assume that expressions of certain
847 types do not alias expressions of certain other types. Only used
848 if alias analysis (in general) is enabled. */
849 int flag_strict_aliasing
= 0;
851 /* Instrument functions with calls at entry and exit, for profiling. */
852 int flag_instrument_function_entry_exit
= 0;
854 /* Nonzero means ignore `#ident' directives. 0 means handle them.
855 On SVR4 targets, it also controls whether or not to emit a
856 string identifying the compiler. */
858 int flag_no_ident
= 0;
860 /* This will perform a peephole pass before sched2. */
861 int flag_peephole2
= 0;
863 /* This will try to guess branch probabilities. */
864 int flag_guess_branch_prob
= 0;
866 /* -fbounded-pointers causes gcc to compile pointers as composite
867 objects occupying three words: the pointer value, the base address
868 of the referent object, and the address immediately beyond the end
869 of the referent object. The base and extent allow us to perform
870 runtime bounds checking. -fbounded-pointers implies -fcheck-bounds. */
871 int flag_bounded_pointers
= 0;
873 /* -fcheck-bounds causes gcc to generate array bounds checks.
874 For C, C++: defaults to value of flag_bounded_pointers.
875 For ObjC: defaults to off.
876 For Java: defaults to on.
877 For Fortran: defaults to off.
878 For CHILL: defaults to off. */
879 int flag_bounds_check
= 0;
881 /* If one, renumber instruction UIDs to reduce the number of
882 unused UIDs if there are a lot of instructions. If greater than
883 one, unconditionally renumber instruction UIDs. */
884 int flag_renumber_insns
= 1;
886 /* Values of the -falign-* flags: how much to align labels in code.
887 0 means `use default', 1 means `don't align'.
888 For each variable, there is an _log variant which is the power
889 of two not less than the variable, for .align output. */
896 int align_labels_log
;
898 int align_functions_log
;
900 /* Table of supported debugging formats. */
904 /* Since PREFERRED_DEBUGGING_TYPE isn't necessarily a
905 constant expression, we use NO_DEBUG in its place. */
906 enum debug_info_type debug_type
;
907 int use_extensions_p
;
908 const char *description
;
912 { "", NO_DEBUG
, DEFAULT_GDB_EXTENSIONS
,
913 N_("Generate debugging info in default format") },
914 { "gdb", NO_DEBUG
, 1, N_("Generate debugging info in default extended format") },
915 #ifdef DBX_DEBUGGING_INFO
916 { "stabs", DBX_DEBUG
, 0, N_("Generate STABS format debug info") },
917 { "stabs+", DBX_DEBUG
, 1, N_("Generate extended STABS format debug info") },
919 #ifdef DWARF_DEBUGGING_INFO
920 { "dwarf", DWARF_DEBUG
, 0, N_("Generate DWARF-1 format debug info") },
921 { "dwarf+", DWARF_DEBUG
, 1,
922 N_("Generate extended DWARF-1 format debug info") },
924 #ifdef DWARF2_DEBUGGING_INFO
925 { "dwarf-2", DWARF2_DEBUG
, 0, N_("Generate DWARF-2 debug info") },
927 #ifdef XCOFF_DEBUGGING_INFO
928 { "xcoff", XCOFF_DEBUG
, 0, N_("Generate XCOFF format debug info") },
929 { "xcoff+", XCOFF_DEBUG
, 1, N_("Generate extended XCOFF format debug info") },
931 #ifdef SDB_DEBUGGING_INFO
932 { "coff", SDB_DEBUG
, 0, N_("Generate COFF format debug info") },
942 const char *description
;
944 lang_independent_options
;
948 /* Add or remove a leading underscore from user symbols. */
949 int flag_leading_underscore
= -1;
951 /* The user symbol prefix after having resolved same. */
952 const char *user_label_prefix
;
954 static const param_info lang_independent_params
[] = {
955 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
956 { OPTION, DEFAULT, HELP },
957 #include "params.def"
962 /* A default for same. */
963 #ifndef USER_LABEL_PREFIX
964 #define USER_LABEL_PREFIX ""
967 /* Table of language-independent -f options.
968 STRING is the option name. VARIABLE is the address of the variable.
969 ON_VALUE is the value to store in VARIABLE
970 if `-fSTRING' is seen as an option.
971 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
973 lang_independent_options f_options
[] =
975 {"float-store", &flag_float_store
, 1,
976 N_("Do not store floats in registers") },
977 {"volatile", &flag_volatile
, 1,
978 N_("Consider all mem refs through pointers as volatile") },
979 {"volatile-global", &flag_volatile_global
, 1,
980 N_("Consider all mem refs to global data to be volatile") },
981 {"volatile-static", &flag_volatile_static
, 1,
982 N_("Consider all mem refs to static data to be volatile") },
983 {"defer-pop", &flag_defer_pop
, 1,
984 N_("Defer popping functions args from stack until later") },
985 {"omit-frame-pointer", &flag_omit_frame_pointer
, 1,
986 N_("When possible do not generate stack frames") },
987 {"optimize-sibling-calls", &flag_optimize_sibling_calls
, 1,
988 N_("Optimize sibling and tail recursive calls") },
989 {"cse-follow-jumps", &flag_cse_follow_jumps
, 1,
990 N_("When running CSE, follow jumps to their targets") },
991 {"cse-skip-blocks", &flag_cse_skip_blocks
, 1,
992 N_("When running CSE, follow conditional jumps") },
993 {"expensive-optimizations", &flag_expensive_optimizations
, 1,
994 N_("Perform a number of minor, expensive optimisations") },
995 {"thread-jumps", &flag_thread_jumps
, 1,
996 N_("Perform jump threading optimisations") },
997 {"strength-reduce", &flag_strength_reduce
, 1,
998 N_("Perform strength reduction optimisations") },
999 {"unroll-loops", &flag_unroll_loops
, 1,
1000 N_("Perform loop unrolling when iteration count is known") },
1001 {"unroll-all-loops", &flag_unroll_all_loops
, 1,
1002 N_("Perform loop unrolling for all loops") },
1003 {"move-all-movables", &flag_move_all_movables
, 1,
1004 N_("Force all loop invariant computations out of loops") },
1005 {"reduce-all-givs", &flag_reduce_all_givs
, 1,
1006 N_("Strength reduce all loop general induction variables") },
1007 {"writable-strings", &flag_writable_strings
, 1,
1008 N_("Store strings in writable data section") },
1009 {"peephole", &flag_no_peephole
, 0,
1010 N_("Enable machine specific peephole optimisations") },
1011 {"force-mem", &flag_force_mem
, 1,
1012 N_("Copy memory operands into registers before using") },
1013 {"force-addr", &flag_force_addr
, 1,
1014 N_("Copy memory address constants into regs before using") },
1015 {"function-cse", &flag_no_function_cse
, 0,
1016 N_("Allow function addresses to be held in registers") },
1017 {"inline-functions", &flag_inline_functions
, 1,
1018 N_("Integrate simple functions into their callers") },
1019 {"keep-inline-functions", &flag_keep_inline_functions
, 1,
1020 N_("Generate code for funcs even if they are fully inlined") },
1021 {"inline", &flag_no_inline
, 0,
1022 N_("Pay attention to the 'inline' keyword") },
1023 {"keep-static-consts", &flag_keep_static_consts
, 1,
1024 N_("Emit static const variables even if they are not used") },
1025 {"syntax-only", &flag_syntax_only
, 1,
1026 N_("Check for syntax errors, then stop") },
1027 {"shared-data", &flag_shared_data
, 1,
1028 N_("Mark data as shared rather than private") },
1029 {"caller-saves", &flag_caller_saves
, 1,
1030 N_("Enable saving registers around function calls") },
1031 {"pcc-struct-return", &flag_pcc_struct_return
, 1,
1032 N_("Return 'short' aggregates in memory, not registers") },
1033 {"reg-struct-return", &flag_pcc_struct_return
, 0,
1034 N_("Return 'short' aggregates in registers") },
1035 {"delayed-branch", &flag_delayed_branch
, 1,
1036 N_("Attempt to fill delay slots of branch instructions") },
1037 {"gcse", &flag_gcse
, 1,
1038 N_("Perform the global common subexpression elimination") },
1039 {"rerun-cse-after-loop", &flag_rerun_cse_after_loop
, 1,
1040 N_("Run CSE pass after loop optimisations") },
1041 {"rerun-loop-opt", &flag_rerun_loop_opt
, 1,
1042 N_("Run the loop optimiser twice") },
1043 {"delete-null-pointer-checks", &flag_delete_null_pointer_checks
, 1,
1044 N_("Delete useless null pointer checks") },
1045 {"pretend-float", &flag_pretend_float
, 1,
1046 N_("Pretend that host and target use the same FP format") },
1047 {"schedule-insns", &flag_schedule_insns
, 1,
1048 N_("Reschedule instructions before register allocation") },
1049 {"schedule-insns2", &flag_schedule_insns_after_reload
, 1,
1050 N_("Reschedule instructions after register allocation") },
1051 {"sched-interblock",&flag_schedule_interblock
, 1,
1052 N_("Enable scheduling across basic blocks") },
1053 {"sched-spec",&flag_schedule_speculative
, 1,
1054 N_("Allow speculative motion of non-loads") },
1055 {"sched-spec-load",&flag_schedule_speculative_load
, 1,
1056 N_("Allow speculative motion of some loads") },
1057 {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous
, 1,
1058 N_("Allow speculative motion of more loads") },
1059 {"branch-count-reg",&flag_branch_on_count_reg
, 1,
1060 N_("Replace add,compare,branch with branch on count reg") },
1061 {"pic", &flag_pic
, 1,
1062 N_("Generate position independent code, if possible") },
1063 {"PIC", &flag_pic
, 2, ""},
1064 {"exceptions", &flag_exceptions
, 1,
1065 N_("Enable exception handling") },
1066 {"unwind-tables", &flag_unwind_tables
, 1,
1067 N_("Just generate unwind tables for exception handling") },
1068 {"non-call-exceptions", &flag_non_call_exceptions
, 1,
1069 N_("Support synchronous non-call exceptions") },
1070 {"profile-arcs", &profile_arc_flag
, 1,
1071 N_("Insert arc based program profiling code") },
1072 {"test-coverage", &flag_test_coverage
, 1,
1073 N_("Create data files needed by gcov") },
1074 {"branch-probabilities", &flag_branch_probabilities
, 1,
1075 N_("Use profiling information for branch probabilities") },
1076 {"reorder-blocks", &flag_reorder_blocks
, 1,
1077 N_("Reorder basic blocks to improve code placement") },
1078 {"rename-registers", &flag_rename_registers
, 1,
1079 N_("Do the register renaming optimization pass") },
1080 {"fast-math", &flag_fast_math
, 1,
1081 N_("Improve FP speed by violating ANSI & IEEE rules") },
1082 {"common", &flag_no_common
, 0,
1083 N_("Do not put unitialised globals in the common section") },
1084 {"inhibit-size-directive", &flag_inhibit_size_directive
, 1,
1085 N_("Do not generate .size directives") },
1086 {"function-sections", &flag_function_sections
, 1,
1087 N_("place each function into its own section") },
1088 {"data-sections", &flag_data_sections
, 1,
1089 N_("place data items into their own section") },
1090 {"verbose-asm", &flag_verbose_asm
, 1,
1091 N_("Add extra commentry to assembler output") },
1092 {"gnu-linker", &flag_gnu_linker
, 1,
1093 N_("Output GNU ld formatted global initialisers") },
1094 {"regmove", &flag_regmove
, 1,
1095 N_("Enables a register move optimisation") },
1096 {"optimize-register-move", &flag_regmove
, 1,
1097 N_("Do the full regmove optimization pass") },
1098 {"pack-struct", &flag_pack_struct
, 1,
1099 N_("Pack structure members together without holes") },
1100 {"stack-check", &flag_stack_check
, 1,
1101 N_("Insert stack checking code into the program") },
1102 {"argument-alias", &flag_argument_noalias
, 0,
1103 N_("Specify that arguments may alias each other & globals") },
1104 {"argument-noalias", &flag_argument_noalias
, 1,
1105 N_("Assume arguments may alias globals but not each other") },
1106 {"argument-noalias-global", &flag_argument_noalias
, 2,
1107 N_("Assume arguments do not alias each other or globals") },
1108 {"strict-aliasing", &flag_strict_aliasing
, 1,
1109 N_("Assume strict aliasing rules apply") },
1110 {"align-loops", &align_loops
, 0,
1111 N_("Align the start of loops") },
1112 {"align-jumps", &align_jumps
, 0,
1113 N_("Align labels which are only reached by jumping") },
1114 {"align-labels", &align_labels
, 0,
1115 N_("Align all labels") },
1116 {"align-functions", &align_functions
, 0,
1117 N_("Align the start of functions") },
1118 {"check-memory-usage", &flag_check_memory_usage
, 1,
1119 N_("Generate code to check every memory access") },
1120 {"prefix-function-name", &flag_prefix_function_name
, 1,
1121 N_("Add a prefix to all function names") },
1122 {"dump-unnumbered", &flag_dump_unnumbered
, 1,
1123 N_("Suppress output of instruction numbers and line number notes in debugging dumps") },
1124 {"instrument-functions", &flag_instrument_function_entry_exit
, 1,
1125 N_("Instrument function entry/exit with profiling calls") },
1126 {"ssa", &flag_ssa
, 1,
1127 N_("Enable SSA optimizations") },
1128 {"dce", &flag_dce
, 1,
1129 N_("Enable dead code elimination") },
1130 {"leading-underscore", &flag_leading_underscore
, 1,
1131 N_("External symbols have a leading underscore") },
1132 {"ident", &flag_no_ident
, 0,
1133 N_("Process #ident directives") },
1134 { "peephole2", &flag_peephole2
, 1,
1135 N_("Enables an rtl peephole pass run before sched2") },
1136 { "guess-branch-probability", &flag_guess_branch_prob
, 1,
1137 N_("Enables guessing of branch probabilities") },
1138 {"math-errno", &flag_errno_math
, 1,
1139 N_("Set errno after built-in math functions") },
1140 {"single-precision-constant", &flag_single_precision_constant
, 1,
1141 N_("Convert floating point constant to single precision constant") },
1142 {"time-report", &time_report
, 1,
1143 N_("Report time taken by each compiler pass at end of run") },
1144 {"mem-report", &mem_report
, 1,
1145 N_("Report on permanent memory allocation at end of run") },
1146 { "trapv", &flag_trapv
, 1,
1147 N_("Trap for signed overflow in addition / subtraction / multiplication.") },
1150 /* Table of language-specific options. */
1152 static struct lang_opt
1155 const char *description
;
1157 documented_lang_options
[] =
1159 /* In order not to overload the --help output, the convention
1160 used here is to only describe those options which are not
1161 enabled by default. */
1164 N_("Compile just for ISO C89") },
1165 { "-fallow-single-precision",
1166 N_("Do not promote floats to double if using -traditional") },
1168 N_("Determine language standard") },
1170 { "-fsigned-bitfields", "" },
1171 { "-funsigned-bitfields",
1172 N_("Make bitfields by unsigned by default") },
1173 { "-fno-signed-bitfields", "" },
1174 { "-fno-unsigned-bitfields","" },
1176 N_("Make 'char' be signed by default") },
1177 { "-funsigned-char",
1178 N_("Make 'char' be unsigned by default") },
1179 { "-fno-signed-char", "" },
1180 { "-fno-unsigned-char", "" },
1182 { "-ftraditional", "" },
1184 N_("Attempt to support traditional K&R style C") },
1185 { "-fnotraditional", "" },
1186 { "-fno-traditional", "" },
1190 N_("Do not recognise the 'asm' keyword") },
1191 { "-fbuiltin", "" },
1193 N_("Do not recognise any built in functions") },
1195 N_("Assume normal C execution environment") },
1196 { "-fno-hosted", "" },
1198 N_("Assume that standard libraries & main might not exist") },
1199 { "-fno-freestanding", "" },
1200 { "-fcond-mismatch",
1201 N_("Allow different types as args of ? operator") },
1202 { "-fno-cond-mismatch", "" },
1203 { "-fdollars-in-identifiers",
1204 N_("Allow the use of $ inside identifiers") },
1205 { "-fno-dollars-in-identifiers", "" },
1206 { "-fpreprocessed", "" },
1207 { "-fno-preprocessed", "" },
1209 N_("Use the same size for double as for float") },
1210 { "-fno-short-double", "" },
1212 N_("Use the smallest fitting integer to hold enums") },
1213 { "-fno-short-enums", "" },
1215 N_("Override the underlying type for wchar_t to `unsigned short'") },
1216 { "-fno-short-wchar", "" },
1219 N_("Enable most warning messages") },
1220 { "-Wbad-function-cast",
1221 N_("Warn about casting functions to incompatible types") },
1222 { "-Wno-bad-function-cast", "" },
1223 { "-Wno-missing-noreturn", "" },
1224 { "-Wmissing-format-attribute",
1225 N_("Warn about functions which might be candidates for format attributes") },
1226 { "-Wno-missing-format-attribute", "" },
1228 N_("Warn about casts which discard qualifiers") },
1229 { "-Wno-cast-qual", "" },
1230 { "-Wchar-subscripts",
1231 N_("Warn about subscripts whose type is 'char'") },
1232 { "-Wno-char-subscripts", "" },
1234 N_("Warn if nested comments are detected") },
1235 { "-Wno-comment", "" },
1237 N_("Warn if nested comments are detected") },
1238 { "-Wno-comments", "" },
1240 N_("Warn about possibly confusing type conversions") },
1241 { "-Wno-conversion", "" },
1243 N_("Warn about printf/scanf/strftime/strfmon format anomalies") },
1244 { "-Wno-format", "" },
1245 { "-Wformat-y2k", "" },
1246 { "-Wno-format-y2k",
1247 N_("Don't warn about strftime formats yielding 2 digit years") },
1248 { "-Wformat-extra-args", "" },
1249 { "-Wno-format-extra-args",
1250 N_("Don't warn about too many arguments to format functions") },
1251 { "-Wformat-nonliteral",
1252 N_("Warn about non-string-literal format strings") },
1253 { "-Wno-format-nonliteral", "" },
1254 { "-Wformat-security",
1255 N_("Warn about possible security problems with format functions") },
1256 { "-Wno-format-security", "" },
1257 { "-Wimplicit-function-declaration",
1258 N_("Warn about implicit function declarations") },
1259 { "-Wno-implicit-function-declaration", "" },
1260 { "-Werror-implicit-function-declaration", "" },
1262 N_("Warn when a declaration does not specify a type") },
1263 { "-Wno-implicit-int", "" },
1264 { "-Wimplicit", "" },
1265 { "-Wno-implicit", "" },
1267 N_("Warn about the use of the #import directive") },
1268 { "-Wno-import", "" },
1269 { "-Wlong-long","" },
1271 N_("Do not warn about using 'long long' when -pedantic") },
1273 N_("Warn about suspicious declarations of main") },
1274 { "-Wno-main", "" },
1275 { "-Wmissing-braces",
1276 N_("Warn about possibly missing braces around initialisers") },
1277 { "-Wno-missing-braces", "" },
1278 { "-Wmissing-declarations",
1279 N_("Warn about global funcs without previous declarations") },
1280 { "-Wno-missing-declarations", "" },
1281 { "-Wmissing-prototypes",
1282 N_("Warn about global funcs without prototypes") },
1283 { "-Wno-missing-prototypes", "" },
1285 N_("Warn about use of multicharacter literals") },
1286 { "-Wno-multichar", "" },
1287 { "-Wnested-externs",
1288 N_("Warn about externs not at file scope level") },
1289 { "-Wno-nested-externs", "" },
1291 N_("Warn about possible missing parentheses") },
1292 { "-Wno-parentheses", "" },
1293 { "-Wsequence-point",
1294 N_("Warn about possible violations of sequence point rules") },
1295 { "-Wno-sequence-point", "" },
1296 { "-Wpointer-arith",
1297 N_("Warn about function pointer arithmetic") },
1298 { "-Wno-pointer-arith", "" },
1299 { "-Wredundant-decls",
1300 N_("Warn about multiple declarations of the same object") },
1301 { "-Wno-redundant-decls", "" },
1303 N_("Warn about signed/unsigned comparisons") },
1304 { "-Wno-sign-compare", "" },
1306 N_("Warn about testing equality of floating point numbers") },
1307 { "-Wno-float-equal", "" },
1308 { "-Wunknown-pragmas",
1309 N_("Warn about unrecognized pragmas") },
1310 { "-Wno-unknown-pragmas", "" },
1311 { "-Wstrict-prototypes",
1312 N_("Warn about non-prototyped function decls") },
1313 { "-Wno-strict-prototypes", "" },
1315 N_("Warn about constructs whose meaning change in ISO C") },
1316 { "-Wno-traditional", "" },
1318 N_("Warn when trigraphs are encountered") },
1319 { "-Wno-trigraphs", "" },
1321 { "-Wno-undef", "" },
1322 { "-Wwrite-strings",
1323 N_("Mark strings as 'const char *'") },
1324 { "-Wno-write-strings", "" },
1326 #define DEFINE_LANG_NAME(NAME) { NULL, NAME },
1328 #include "options.h"
1332 /* Here is a table, controlled by the tm.h file, listing each -m switch
1333 and which bits in `target_switches' it should set or clear.
1334 If VALUE is positive, it is bits to set.
1335 If VALUE is negative, -VALUE is bits to clear.
1336 (The sign bit is not used so there is no confusion.) */
1342 const char *description
;
1344 target_switches
[] = TARGET_SWITCHES
;
1346 /* This table is similar, but allows the switch to have a value. */
1348 #ifdef TARGET_OPTIONS
1352 const char **variable
;
1353 const char *description
;
1355 target_options
[] = TARGET_OPTIONS
;
1358 /* Options controlling warnings. */
1360 /* Don't print warning messages. -w. */
1362 int inhibit_warnings
= 0;
1364 /* Don't suppress warnings from system headers. -Wsystem-headers. */
1366 int warn_system_headers
= 0;
1368 /* Print various extra warnings. -W. */
1370 int extra_warnings
= 0;
1372 /* Treat warnings as errors. -Werror. */
1374 int warnings_are_errors
= 0;
1376 /* Nonzero to warn about unused variables, functions et.al. */
1378 int warn_unused_function
;
1379 int warn_unused_label
;
1380 int warn_unused_parameter
;
1381 int warn_unused_variable
;
1382 int warn_unused_value
;
1385 set_Wunused (setting
)
1388 warn_unused_function
= setting
;
1389 warn_unused_label
= setting
;
1390 /* Unused function parameter warnings are reported when either ``-W
1391 -Wunused'' or ``-Wunused-parameter'' is specified. Differentiate
1392 -Wunused by setting WARN_UNUSED_PARAMETER to -1. */
1394 warn_unused_parameter
= 0;
1395 else if (!warn_unused_parameter
)
1396 warn_unused_parameter
= -1;
1397 warn_unused_variable
= setting
;
1398 warn_unused_value
= setting
;
1401 /* Nonzero to warn about code which is never reached. */
1403 int warn_notreached
;
1405 /* Nonzero to warn about variables used before they are initialized. */
1407 int warn_uninitialized
;
1409 /* Nonzero means warn about all declarations which shadow others. */
1413 /* Warn if a switch on an enum fails to have a case for every enum value. */
1417 /* Nonzero means warn about function definitions that default the return type
1418 or that use a null return and have a return-type other than void. */
1420 int warn_return_type
;
1422 /* Nonzero means warn about pointer casts that increase the required
1423 alignment of the target type (and might therefore lead to a crash
1424 due to a misaligned access). */
1426 int warn_cast_align
;
1428 /* Nonzero means warn about any identifiers that match in the first N
1429 characters. The value N is in `id_clash_len'. */
1434 /* Nonzero means warn about any objects definitions whose size is larger
1435 than N bytes. Also want about function definitions whose returned
1436 values are larger than N bytes. The value N is in `larger_than_size'. */
1438 int warn_larger_than
;
1439 HOST_WIDE_INT larger_than_size
;
1441 /* Nonzero means warn if inline function is too large. */
1445 /* Warn if a function returns an aggregate,
1446 since there are often incompatible calling conventions for doing this. */
1448 int warn_aggregate_return
;
1450 /* Warn if packed attribute on struct is unnecessary and inefficient. */
1454 /* Warn when gcc pads a structure to an alignment boundary. */
1458 /* Warn when an optimization pass is disabled. */
1460 int warn_disabled_optimization
;
1462 /* Warn about functions which might be candidates for attribute noreturn. */
1464 int warn_missing_noreturn
;
1466 /* Likewise for -W. */
1468 lang_independent_options W_options
[] =
1470 {"unused-function", &warn_unused_function
, 1,
1471 N_("Warn when a function is unused") },
1472 {"unused-label", &warn_unused_label
, 1,
1473 N_("Warn when a label is unused") },
1474 {"unused-parameter", &warn_unused_parameter
, 1,
1475 N_("Warn when a function parameter is unused") },
1476 {"unused-variable", &warn_unused_variable
, 1,
1477 N_("Warn when a variable is unused") },
1478 {"unused-value", &warn_unused_value
, 1,
1479 N_("Warn when an expression value is unused") },
1480 {"system-headers", &warn_system_headers
, 1,
1481 N_("Do not suppress warnings from system headers") },
1482 {"error", &warnings_are_errors
, 1,
1483 N_("Treat all warnings as errors") },
1484 {"shadow", &warn_shadow
, 1,
1485 N_("Warn when one local variable shadows another") },
1486 {"switch", &warn_switch
, 1,
1487 N_("Warn about enumerated switches missing a specific case") },
1488 {"aggregate-return", &warn_aggregate_return
, 1,
1489 N_("Warn about returning structures, unions or arrays") },
1490 {"cast-align", &warn_cast_align
, 1,
1491 N_("Warn about pointer casts which increase alignment") },
1492 {"unreachable-code", &warn_notreached
, 1,
1493 N_("Warn about code that will never be executed") },
1494 {"uninitialized", &warn_uninitialized
, 1,
1495 N_("Warn about unitialized automatic variables") },
1496 {"inline", &warn_inline
, 1,
1497 N_("Warn when an inlined function cannot be inlined") },
1498 {"packed", &warn_packed
, 1,
1499 N_("Warn when the packed attribute has no effect on struct layout") },
1500 {"padded", &warn_padded
, 1,
1501 N_("Warn when padding is required to align struct members") },
1502 {"disabled-optimization", &warn_disabled_optimization
, 1,
1503 N_("Warn when an optimization pass is disabled") },
1504 {"missing-noreturn", &warn_missing_noreturn
, 1,
1505 N_("Warn about functions which might be candidates for attribute noreturn") }
1508 /* Output files for assembler code (real compiler output)
1509 and debugging dumps. */
1512 FILE *aux_info_file
;
1513 FILE *rtl_dump_file
= NULL
;
1515 /* Decode the string P as an integral parameter.
1516 If the string is indeed an integer return its numeric value else
1517 issue an Invalid Option error for the option PNAME and return DEFVAL.
1518 If PNAME is zero just return DEFVAL, do not call error. */
1521 read_integral_parameter (p
, pname
, defval
)
1526 const char *endp
= p
;
1530 if (*endp
>= '0' && *endp
<= '9')
1539 error ("Invalid option `%s'", pname
);
1547 /* This is the default decl_printable_name function. */
1550 decl_name (decl
, verbosity
)
1552 int verbosity ATTRIBUTE_UNUSED
;
1554 return IDENTIFIER_POINTER (DECL_NAME (decl
));
1558 /* This calls abort and is used to avoid problems when abort if a macro.
1559 It is used when we need to pass the address of abort. */
1567 /* When `malloc.c' is compiled with `rcheck' defined,
1568 it calls this function to report clobberage. */
1572 const char *s ATTRIBUTE_UNUSED
;
1577 /* Return the logarithm of X, base 2, considering X unsigned,
1578 if X is a power of 2. Otherwise, returns -1.
1580 This should be used via the `exact_log2' macro. */
1584 register unsigned HOST_WIDE_INT x
;
1586 register int log
= 0;
1587 /* Test for 0 or a power of 2. */
1588 if (x
== 0 || x
!= (x
& -x
))
1590 while ((x
>>= 1) != 0)
1595 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1596 If X is 0, return -1.
1598 This should be used via the floor_log2 macro. */
1602 register unsigned HOST_WIDE_INT x
;
1604 register int log
= -1;
1611 /* Return the approximate positive square root of a number N. This is for
1612 statistical reports, not code generation. */
1627 d
= (s
* s
- x
) / (2 * s
);
1634 static int float_handler_set
;
1636 jmp_buf float_handler
;
1638 /* Signals actually come here. */
1641 float_signal (signo
)
1642 /* If this is missing, some compilers complain. */
1643 int signo ATTRIBUTE_UNUSED
;
1645 if (float_handled
== 0)
1646 crash_signal (signo
);
1647 #if defined (USG) || defined (hpux)
1648 /* Re-enable the signal catcher. */
1649 signal (SIGFPE
, float_signal
);
1652 signal (SIGFPE
, float_signal
);
1653 longjmp (float_handler
, 1);
1656 /* Specify where to longjmp to when a floating arithmetic error happens.
1657 If HANDLER is 0, it means don't handle the errors any more. */
1660 set_float_handler (handler
)
1663 float_handled
= (handler
!= 0);
1665 bcopy ((char *) handler
, (char *) float_handler
, sizeof (float_handler
));
1667 if (float_handled
&& ! float_handler_set
)
1669 signal (SIGFPE
, float_signal
);
1670 float_handler_set
= 1;
1674 /* This is a wrapper function for code which might elicit an
1675 arithmetic exception. That code should be passed in as a function
1676 pointer FN, and one argument DATA. DATA is usually a struct which
1677 contains the real input and output for function FN. This function
1678 returns 0 (failure) if longjmp was called (i.e. an exception
1679 occured.) It returns 1 (success) otherwise. */
1682 do_float_handler (fn
, data
)
1683 void (*fn
) PARAMS ((PTR
));
1690 /* We got here via longjmp () caused by an exception in function
1692 set_float_handler (NULL
);
1696 set_float_handler (buf
);
1698 set_float_handler (NULL
);
1702 /* Specify, in HANDLER, where to longjmp to when a floating arithmetic
1703 error happens, pushing the previous specification into OLD_HANDLER.
1704 Return an indication of whether there was a previous handler in effect. */
1707 push_float_handler (handler
, old_handler
)
1708 jmp_buf handler
, old_handler
;
1710 int was_handled
= float_handled
;
1714 memcpy ((char *) old_handler
, (char *) float_handler
,
1715 sizeof (float_handler
));
1717 memcpy ((char *) float_handler
, (char *) handler
, sizeof (float_handler
));
1721 /* Restore the previous specification of whether and where to longjmp to
1722 when a floating arithmetic error happens. */
1725 pop_float_handler (handled
, handler
)
1729 float_handled
= handled
;
1731 bcopy ((char *) handler
, (char *) float_handler
, sizeof (float_handler
));
1734 /* Handler for fatal signals, such as SIGSEGV. These are transformed
1735 into ICE messages, which is much more user friendly. */
1738 crash_signal (signo
)
1741 internal_error ("Internal error: %s", strsignal (signo
));
1744 /* Strip off a legitimate source ending from the input string NAME of
1745 length LEN. Rather than having to know the names used by all of
1746 our front ends, we strip off an ending of a period followed by
1747 up to five characters. (Java uses ".class".) */
1750 strip_off_ending (name
, len
)
1755 for (i
= 2; i
< 6 && len
> i
; i
++)
1757 if (name
[len
- i
] == '.')
1759 name
[len
- i
] = '\0';
1765 /* Given a file name X, return the nondirectory portion. */
1768 file_name_nondirectory (x
)
1771 char *tmp
= (char *) strrchr (x
, '/');
1772 if (DIR_SEPARATOR
!= '/' && ! tmp
)
1773 tmp
= (char *) strrchr (x
, DIR_SEPARATOR
);
1775 return (char *) (tmp
+ 1);
1780 /* Output a quoted string. */
1783 output_quoted_string (asm_file
, string
)
1787 #ifdef OUTPUT_QUOTED_STRING
1788 OUTPUT_QUOTED_STRING (asm_file
, string
);
1792 putc ('\"', asm_file
);
1793 while ((c
= *string
++) != 0)
1795 if (c
== '\"' || c
== '\\')
1796 putc ('\\', asm_file
);
1799 putc ('\"', asm_file
);
1803 /* Output a file name in the form wanted by System V. */
1806 output_file_directive (asm_file
, input_name
)
1808 const char *input_name
;
1810 int len
= strlen (input_name
);
1811 const char *na
= input_name
+ len
;
1813 /* NA gets INPUT_NAME sans directory names. */
1814 while (na
> input_name
)
1816 if (IS_DIR_SEPARATOR (na
[-1]))
1821 #ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
1822 ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file
, na
);
1824 #ifdef ASM_OUTPUT_SOURCE_FILENAME
1825 ASM_OUTPUT_SOURCE_FILENAME (asm_file
, na
);
1827 fprintf (asm_file
, "\t.file\t");
1828 output_quoted_string (asm_file
, na
);
1829 fputc ('\n', asm_file
);
1834 /* Routine to open a dump file. Return true if the dump file is enabled. */
1837 open_dump_file (index
, decl
)
1838 enum dump_file_index index
;
1842 const char *open_arg
;
1845 if (! dump_file
[index
].enabled
)
1848 timevar_push (TV_DUMP
);
1849 if (rtl_dump_file
!= NULL
)
1850 fclose (rtl_dump_file
);
1852 sprintf (seq
, ".%02d.", index
);
1854 if (! dump_file
[index
].initialized
)
1856 /* If we've not initialized the files, do so now. */
1857 if (graph_dump_format
!= no_graph
1858 && dump_file
[index
].graph_dump_p
)
1860 dump_name
= concat (seq
, dump_file
[index
].extension
, NULL
);
1861 clean_graph_dump_file (dump_base_name
, dump_name
);
1864 dump_file
[index
].initialized
= 1;
1870 dump_name
= concat (dump_base_name
, seq
,
1871 dump_file
[index
].extension
, NULL
);
1873 rtl_dump_file
= fopen (dump_name
, open_arg
);
1874 if (rtl_dump_file
== NULL
)
1875 fatal_io_error ("can't open %s", dump_name
);
1880 fprintf (rtl_dump_file
, "\n;; Function %s\n\n",
1881 decl_printable_name (decl
, 2));
1883 timevar_pop (TV_DUMP
);
1887 /* Routine to close a dump file. */
1890 close_dump_file (index
, func
, insns
)
1891 enum dump_file_index index
;
1892 void (*func
) PARAMS ((FILE *, rtx
));
1895 if (! rtl_dump_file
)
1898 timevar_push (TV_DUMP
);
1900 && graph_dump_format
!= no_graph
1901 && dump_file
[index
].graph_dump_p
)
1906 sprintf (seq
, ".%02d.", index
);
1907 suffix
= concat (seq
, dump_file
[index
].extension
, NULL
);
1908 print_rtl_graph_with_bb (dump_base_name
, suffix
, insns
);
1913 func (rtl_dump_file
, insns
);
1915 fflush (rtl_dump_file
);
1916 fclose (rtl_dump_file
);
1918 rtl_dump_file
= NULL
;
1919 timevar_pop (TV_DUMP
);
1922 /* Do any final processing required for the declarations in VEC, of
1923 which there are LEN. We write out inline functions and variables
1924 that have been deferred until this point, but which are required.
1925 Returns non-zero if anything was put out. */
1928 wrapup_global_declarations (vec
, len
)
1935 int output_something
= 0;
1937 for (i
= 0; i
< len
; i
++)
1941 /* We're not deferring this any longer. */
1942 DECL_DEFER_OUTPUT (decl
) = 0;
1944 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_SIZE (decl
) == 0
1945 && incomplete_decl_finalize_hook
!= 0)
1946 (*incomplete_decl_finalize_hook
) (decl
);
1949 /* Now emit any global variables or functions that we have been
1950 putting off. We need to loop in case one of the things emitted
1951 here references another one which comes earlier in the list. */
1955 for (i
= 0; i
< len
; i
++)
1959 if (TREE_ASM_WRITTEN (decl
) || DECL_EXTERNAL (decl
))
1962 /* Don't write out static consts, unless we still need them.
1964 We also keep static consts if not optimizing (for debugging),
1965 unless the user specified -fno-keep-static-consts.
1966 ??? They might be better written into the debug information.
1967 This is possible when using DWARF.
1969 A language processor that wants static constants to be always
1970 written out (even if it is not used) is responsible for
1971 calling rest_of_decl_compilation itself. E.g. the C front-end
1972 calls rest_of_decl_compilation from finish_decl.
1973 One motivation for this is that is conventional in some
1974 environments to write things like:
1975 static const char rcsid[] = "... version string ...";
1976 intending to force the string to be in the executable.
1978 A language processor that would prefer to have unneeded
1979 static constants "optimized away" would just defer writing
1980 them out until here. E.g. C++ does this, because static
1981 constants are often defined in header files.
1983 ??? A tempting alternative (for both C and C++) would be
1984 to force a constant to be written if and only if it is
1985 defined in a main file, as opposed to an include file. */
1987 if (TREE_CODE (decl
) == VAR_DECL
&& TREE_STATIC (decl
)
1988 && (! TREE_READONLY (decl
)
1989 || TREE_PUBLIC (decl
)
1991 && flag_keep_static_consts
1992 && !DECL_ARTIFICIAL (decl
))
1993 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))))
1996 rest_of_decl_compilation (decl
, NULL_PTR
, 1, 1);
1999 if (TREE_CODE (decl
) == FUNCTION_DECL
2000 && DECL_INITIAL (decl
) != 0
2001 && DECL_SAVED_INSNS (decl
) != 0
2002 && (flag_keep_inline_functions
2003 || (TREE_PUBLIC (decl
) && !DECL_COMDAT (decl
))
2004 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))))
2007 output_inline_function (decl
);
2012 output_something
= 1;
2016 return output_something
;
2019 /* Issue appropriate warnings for the global declarations in VEC (of
2020 which there are LEN). Output debugging information for them. */
2023 check_global_declarations (vec
, len
)
2030 for (i
= 0; i
< len
; i
++)
2034 if (TREE_CODE (decl
) == VAR_DECL
&& TREE_STATIC (decl
)
2035 && ! TREE_ASM_WRITTEN (decl
))
2036 /* Cancel the RTL for this decl so that, if debugging info
2037 output for global variables is still to come,
2038 this one will be omitted. */
2039 SET_DECL_RTL (decl
, NULL_RTX
);
2041 /* Warn about any function
2042 declared static but not defined.
2043 We don't warn about variables,
2044 because many programs have static variables
2045 that exist only to get some text into the object file. */
2046 if (TREE_CODE (decl
) == FUNCTION_DECL
2047 && (warn_unused_function
2048 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
)))
2049 && DECL_INITIAL (decl
) == 0
2050 && DECL_EXTERNAL (decl
)
2051 && ! DECL_ARTIFICIAL (decl
)
2052 && ! TREE_PUBLIC (decl
))
2054 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
)))
2055 pedwarn_with_decl (decl
,
2056 "`%s' used but never defined");
2058 warning_with_decl (decl
,
2059 "`%s' declared `static' but never defined");
2060 /* This symbol is effectively an "extern" declaration now. */
2061 TREE_PUBLIC (decl
) = 1;
2062 assemble_external (decl
);
2065 /* Warn about static fns or vars defined but not used,
2066 but not about inline functions or static consts
2067 since defining those in header files is normal practice. */
2068 if (((warn_unused_function
2069 && TREE_CODE (decl
) == FUNCTION_DECL
&& ! DECL_INLINE (decl
))
2070 || (warn_unused_variable
2071 && TREE_CODE (decl
) == VAR_DECL
&& ! TREE_READONLY (decl
)))
2072 && ! DECL_IN_SYSTEM_HEADER (decl
)
2073 && ! DECL_EXTERNAL (decl
)
2074 && ! TREE_PUBLIC (decl
)
2075 && ! TREE_USED (decl
)
2076 && (TREE_CODE (decl
) == FUNCTION_DECL
|| ! DECL_REGISTER (decl
))
2077 /* The TREE_USED bit for file-scope decls
2078 is kept in the identifier, to handle multiple
2079 external decls in different scopes. */
2080 && ! TREE_USED (DECL_NAME (decl
)))
2081 warning_with_decl (decl
, "`%s' defined but not used");
2083 timevar_push (TV_SYMOUT
);
2084 #ifdef SDB_DEBUGGING_INFO
2085 /* The COFF linker can move initialized global vars to the end.
2086 And that can screw up the symbol ordering.
2087 By putting the symbols in that order to begin with,
2088 we avoid a problem. mcsun!unido!fauern!tumuc!pes@uunet.uu.net. */
2089 if (write_symbols
== SDB_DEBUG
&& TREE_CODE (decl
) == VAR_DECL
2090 && TREE_PUBLIC (decl
) && DECL_INITIAL (decl
)
2091 && ! DECL_EXTERNAL (decl
)
2092 && DECL_RTL (decl
) != 0)
2093 sdbout_symbol (decl
, 0);
2095 /* Output COFF information for non-global
2096 file-scope initialized variables. */
2097 if (write_symbols
== SDB_DEBUG
2098 && TREE_CODE (decl
) == VAR_DECL
2099 && DECL_INITIAL (decl
)
2100 && ! DECL_EXTERNAL (decl
)
2101 && DECL_RTL (decl
) != 0
2102 && GET_CODE (DECL_RTL (decl
)) == MEM
)
2103 sdbout_toplevel_data (decl
);
2104 #endif /* SDB_DEBUGGING_INFO */
2105 #ifdef DWARF_DEBUGGING_INFO
2106 /* Output DWARF information for file-scope tentative data object
2107 declarations, file-scope (extern) function declarations (which
2108 had no corresponding body) and file-scope tagged type declarations
2109 and definitions which have not yet been forced out. */
2111 if (write_symbols
== DWARF_DEBUG
2112 && (TREE_CODE (decl
) != FUNCTION_DECL
|| !DECL_INITIAL (decl
)))
2113 dwarfout_file_scope_decl (decl
, 1);
2115 #ifdef DWARF2_DEBUGGING_INFO
2116 /* Output DWARF2 information for file-scope tentative data object
2117 declarations, file-scope (extern) function declarations (which
2118 had no corresponding body) and file-scope tagged type declarations
2119 and definitions which have not yet been forced out. */
2121 if (write_symbols
== DWARF2_DEBUG
2122 && (TREE_CODE (decl
) != FUNCTION_DECL
|| !DECL_INITIAL (decl
)))
2123 dwarf2out_decl (decl
);
2125 timevar_pop (TV_SYMOUT
);
2129 /* Save the current INPUT_FILENAME and LINENO on the top entry in the
2130 INPUT_FILE_STACK. Push a new entry for FILE and LINE, and set the
2131 INPUT_FILENAME and LINENO accordingly. */
2134 push_srcloc (file
, line
)
2138 struct file_stack
*fs
;
2140 if (input_file_stack
)
2142 input_file_stack
->name
= input_filename
;
2143 input_file_stack
->line
= lineno
;
2146 fs
= (struct file_stack
*) xmalloc (sizeof (struct file_stack
));
2147 fs
->name
= input_filename
= file
;
2148 fs
->line
= lineno
= line
;
2149 fs
->indent_level
= 0;
2150 fs
->next
= input_file_stack
;
2151 input_file_stack
= fs
;
2152 input_file_stack_tick
++;
2155 /* Pop the top entry off the stack of presently open source files.
2156 Restore the INPUT_FILENAME and LINENO from the new topmost entry on
2162 struct file_stack
*fs
;
2164 fs
= input_file_stack
;
2165 input_file_stack
= fs
->next
;
2167 input_file_stack_tick
++;
2168 /* The initial source file is never popped. */
2169 if (!input_file_stack
)
2171 input_filename
= input_file_stack
->name
;
2172 lineno
= input_file_stack
->line
;
2175 /* Compile an entire file of output from cpp, named NAME.
2176 Write a file of assembly output and various debugging dumps. */
2184 int name_specified
= name
!= 0;
2186 if (dump_base_name
== 0)
2187 dump_base_name
= name
? name
: "gccdump";
2192 /* Start timing total execution time. */
2195 timevar_start (TV_TOTAL
);
2197 /* Initialize data in various passes. */
2200 name
= init_parse (name
);
2201 init_emit_once (debug_info_level
== DINFO_LEVEL_NORMAL
2202 || debug_info_level
== DINFO_LEVEL_VERBOSE
2203 || flag_test_coverage
2204 || warn_notreached
);
2207 init_decl_processing ();
2213 init_function_once ();
2214 init_stor_layout_once ();
2215 init_varasm_once ();
2216 init_EXPR_INSN_LIST_cache ();
2218 /* The following initialization functions need to generate rtl, so
2219 provide a dummy function context for them. */
2220 init_dummy_function_start ();
2223 if (flag_caller_saves
)
2224 init_caller_save ();
2225 expand_dummy_function_end ();
2227 /* If auxiliary info generation is desired, open the output file.
2228 This goes in the same directory as the source file--unlike
2229 all the other output files. */
2230 if (flag_gen_aux_info
)
2232 aux_info_file
= fopen (aux_info_file_name
, "w");
2233 if (aux_info_file
== 0)
2234 fatal_io_error ("can't open %s", aux_info_file_name
);
2237 /* Open assembler code output file. Do this even if -fsyntax-only is on,
2238 because then the driver will have provided the name of a temporary
2239 file or bit bucket for us. */
2241 if (! name_specified
&& asm_file_name
== 0)
2242 asm_out_file
= stdout
;
2245 if (asm_file_name
== 0)
2247 int len
= strlen (dump_base_name
);
2248 char *dumpname
= (char *) xmalloc (len
+ 6);
2249 memcpy (dumpname
, dump_base_name
, len
+ 1);
2250 strip_off_ending (dumpname
, len
);
2251 strcat (dumpname
, ".s");
2252 asm_file_name
= dumpname
;
2254 if (!strcmp (asm_file_name
, "-"))
2255 asm_out_file
= stdout
;
2257 asm_out_file
= fopen (asm_file_name
, "w");
2258 if (asm_out_file
== 0)
2259 fatal_io_error ("can't open %s for writing", asm_file_name
);
2262 #ifdef IO_BUFFER_SIZE
2263 setvbuf (asm_out_file
, (char *) xmalloc (IO_BUFFER_SIZE
),
2264 _IOFBF
, IO_BUFFER_SIZE
);
2268 name
= ggc_strdup (name
);
2270 input_filename
= name
;
2272 /* Put an entry on the input file stack for the main input file. */
2273 push_srcloc (input_filename
, 0);
2275 /* Perform language-specific initialization.
2276 This may set main_input_filename. */
2277 if (lang_hooks
.init
)
2278 (*lang_hooks
.init
) ();
2280 /* If the input doesn't start with a #line, use the input name
2281 as the official input file name. */
2282 if (main_input_filename
== 0)
2283 main_input_filename
= name
;
2285 if (flag_syntax_only
)
2287 write_symbols
= NO_DEBUG
;
2289 profile_block_flag
= 0;
2293 ASM_FILE_START (asm_out_file
);
2295 #ifdef ASM_COMMENT_START
2296 if (flag_verbose_asm
)
2298 /* Print the list of options in effect. */
2299 print_version (asm_out_file
, ASM_COMMENT_START
);
2300 print_switch_values (asm_out_file
, 0, MAX_LINE
,
2301 ASM_COMMENT_START
, " ", "\n");
2302 /* Add a blank line here so it appears in assembler output but not
2304 fprintf (asm_out_file
, "\n");
2307 } /* ! flag_syntax_only */
2309 #ifndef ASM_OUTPUT_SECTION_NAME
2310 if (flag_function_sections
)
2312 warning ("-ffunction-sections not supported for this target.");
2313 flag_function_sections
= 0;
2315 if (flag_data_sections
)
2317 warning ("-fdata-sections not supported for this target.");
2318 flag_data_sections
= 0;
2322 if (flag_function_sections
2323 && (profile_flag
|| profile_block_flag
))
2325 warning ("-ffunction-sections disabled; it makes profiling impossible.");
2326 flag_function_sections
= 0;
2329 #ifndef OBJECT_FORMAT_ELF
2330 if (flag_function_sections
&& write_symbols
!= NO_DEBUG
)
2331 warning ("-ffunction-sections may affect debugging on some targets.");
2334 /* If dbx symbol table desired, initialize writing it
2335 and output the predefined types. */
2336 timevar_push (TV_SYMOUT
);
2337 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2338 if (write_symbols
== DBX_DEBUG
|| write_symbols
== XCOFF_DEBUG
)
2339 dbxout_init (asm_out_file
, main_input_filename
, getdecls ());
2341 #ifdef SDB_DEBUGGING_INFO
2342 if (write_symbols
== SDB_DEBUG
)
2343 sdbout_init (asm_out_file
, main_input_filename
, getdecls ());
2345 #ifdef DWARF_DEBUGGING_INFO
2346 if (write_symbols
== DWARF_DEBUG
)
2347 dwarfout_init (asm_out_file
, main_input_filename
);
2349 #ifdef DWARF2_UNWIND_INFO
2350 if (dwarf2out_do_frame ())
2351 dwarf2out_frame_init ();
2353 #ifdef DWARF2_DEBUGGING_INFO
2354 if (write_symbols
== DWARF2_DEBUG
)
2355 dwarf2out_init (asm_out_file
, main_input_filename
);
2357 timevar_pop (TV_SYMOUT
);
2359 /* Initialize yet another pass. */
2361 init_final (main_input_filename
);
2362 init_branch_prob (dump_base_name
);
2364 timevar_push (TV_PARSE
);
2366 /* Call the parser, which parses the entire file
2367 (calling rest_of_compilation for each function). */
2369 if (yyparse () != 0)
2371 if (errorcount
== 0)
2372 fnotice (stderr
, "Errors detected in input file (your bison.simple is out of date)\n");
2374 /* In case there were missing closebraces,
2375 get us back to the global binding level. */
2376 while (! global_bindings_p ())
2380 /* Compilation is now finished except for writing
2381 what's left of the symbol table output. */
2383 timevar_pop (TV_PARSE
);
2385 if (flag_syntax_only
)
2388 globals
= getdecls ();
2390 /* Really define vars that have had only a tentative definition.
2391 Really output inline functions that must actually be callable
2392 and have not been output so far. */
2395 int len
= list_length (globals
);
2396 tree
*vec
= (tree
*) xmalloc (sizeof (tree
) * len
);
2400 /* Process the decls in reverse order--earliest first.
2401 Put them into VEC from back to front, then take out from front. */
2403 for (i
= 0, decl
= globals
; i
< len
; i
++, decl
= TREE_CHAIN (decl
))
2404 vec
[len
- i
- 1] = decl
;
2406 wrapup_global_declarations (vec
, len
);
2408 /* This must occur after the loop to output deferred functions. Else
2409 the profiler initializer would not be emitted if all the functions
2410 in this compilation unit were deferred.
2412 output_func_start_profiler can not cause any additional functions or
2413 data to need to be output, so it need not be in the deferred function
2415 output_func_start_profiler ();
2417 check_global_declarations (vec
, len
);
2423 /* Write out any pending weak symbol declarations. */
2427 /* Do dbx symbols. */
2428 timevar_push (TV_SYMOUT
);
2429 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2430 if (write_symbols
== DBX_DEBUG
|| write_symbols
== XCOFF_DEBUG
)
2431 dbxout_finish (asm_out_file
, main_input_filename
);
2434 #ifdef DWARF_DEBUGGING_INFO
2435 if (write_symbols
== DWARF_DEBUG
)
2439 #ifdef DWARF2_UNWIND_INFO
2440 if (dwarf2out_do_frame ())
2441 dwarf2out_frame_finish ();
2444 #ifdef DWARF2_DEBUGGING_INFO
2445 if (write_symbols
== DWARF2_DEBUG
)
2446 dwarf2out_finish ();
2448 timevar_pop (TV_SYMOUT
);
2450 /* Output some stuff at end of file if nec. */
2452 dw2_output_indirect_constants ();
2454 end_final (dump_base_name
);
2456 if (profile_arc_flag
|| flag_test_coverage
|| flag_branch_probabilities
)
2458 timevar_push (TV_DUMP
);
2459 open_dump_file (DFI_bp
, NULL
);
2463 close_dump_file (DFI_bp
, NULL
, NULL_RTX
);
2464 timevar_pop (TV_DUMP
);
2468 ASM_FILE_END (asm_out_file
);
2471 /* Attach a special .ident directive to the end of the file to identify
2472 the version of GCC which compiled this code. The format of the .ident
2473 string is patterned after the ones produced by native SVR4 compilers. */
2476 fprintf (asm_out_file
, "%s\"GCC: (GNU) %s\"\n",
2477 IDENT_ASM_OP
, version_string
);
2480 /* Language-specific end of compilation actions. */
2482 if (lang_hooks
.finish
)
2483 (*lang_hooks
.finish
) ();
2485 /* Close the dump files. */
2487 if (flag_gen_aux_info
)
2489 fclose (aux_info_file
);
2491 unlink (aux_info_file_name
);
2494 if (optimize
> 0 && open_dump_file (DFI_combine
, NULL
))
2496 timevar_push (TV_DUMP
);
2497 dump_combine_total_stats (rtl_dump_file
);
2498 close_dump_file (DFI_combine
, NULL
, NULL_RTX
);
2499 timevar_pop (TV_DUMP
);
2502 /* Close non-debugging input and output files. Take special care to note
2503 whether fclose returns an error, since the pages might still be on the
2504 buffer chain while the file is open. */
2508 if (ferror (asm_out_file
) != 0)
2509 fatal_io_error ("error writing to %s", asm_file_name
);
2510 if (fclose (asm_out_file
) != 0)
2511 fatal_io_error ("error closing %s", asm_file_name
);
2513 /* Do whatever is necessary to finish printing the graphs. */
2514 if (graph_dump_format
!= no_graph
)
2518 for (i
= 0; i
< (int) DFI_MAX
; ++i
)
2519 if (dump_file
[i
].initialized
&& dump_file
[i
].graph_dump_p
)
2524 sprintf (seq
, ".%02d.", i
);
2525 suffix
= concat (seq
, dump_file
[i
].extension
, NULL
);
2526 finish_graph_dump_file (dump_base_name
, suffix
);
2533 ggc_print_statistics ();
2534 stringpool_statistics ();
2537 /* Free up memory for the benefit of leak detectors. */
2540 /* Stop timing total execution time. */
2541 timevar_stop (TV_TOTAL
);
2543 /* Print the times. */
2545 timevar_print (stderr
);
2548 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
2549 and TYPE_DECL nodes.
2551 This does nothing for local (non-static) variables, unless the
2552 variable is a register variable with an ASMSPEC. In that case, or
2553 if the variable is not an automatice, it sets up the RTL and
2554 outputs any assembler code (label definition, storage allocation
2555 and initialization).
2557 DECL is the declaration. If ASMSPEC is nonzero, it specifies
2558 the assembler symbol name to be used. TOP_LEVEL is nonzero
2559 if this declaration is not within a function. */
2562 rest_of_decl_compilation (decl
, asmspec
, top_level
, at_end
)
2564 const char *asmspec
;
2568 /* Declarations of variables, and of functions defined elsewhere. */
2570 /* The most obvious approach, to put an #ifndef around where
2571 this macro is used, doesn't work since it's inside a macro call. */
2572 #ifndef ASM_FINISH_DECLARE_OBJECT
2573 #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP, END)
2576 /* Forward declarations for nested functions are not "external",
2577 but we need to treat them as if they were. */
2578 if (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
)
2579 || TREE_CODE (decl
) == FUNCTION_DECL
)
2581 timevar_push (TV_VARCONST
);
2583 make_decl_rtl (decl
, asmspec
);
2584 /* Initialized extern variable exists to be replaced
2585 with its value, or represents something that will be
2586 output in another file. */
2587 if (! (TREE_CODE (decl
) == VAR_DECL
2588 && DECL_EXTERNAL (decl
) && TREE_READONLY (decl
)
2589 && DECL_INITIAL (decl
) != 0
2590 && DECL_INITIAL (decl
) != error_mark_node
))
2591 /* Don't output anything
2592 when a tentative file-scope definition is seen.
2593 But at end of compilation, do output code for them. */
2594 if (! (! at_end
&& top_level
2595 && (DECL_INITIAL (decl
) == 0
2596 || DECL_INITIAL (decl
) == error_mark_node
)))
2597 assemble_variable (decl
, top_level
, at_end
, 0);
2598 if (decl
== last_assemble_variable_decl
)
2600 ASM_FINISH_DECLARE_OBJECT (asm_out_file
, decl
,
2603 timevar_pop (TV_VARCONST
);
2605 else if (DECL_REGISTER (decl
) && asmspec
!= 0)
2607 if (decode_reg_name (asmspec
) >= 0)
2609 SET_DECL_RTL (decl
, NULL_RTX
);
2610 make_decl_rtl (decl
, asmspec
);
2614 error ("invalid register name `%s' for register variable", asmspec
);
2615 DECL_REGISTER (decl
) = 0;
2620 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2621 else if ((write_symbols
== DBX_DEBUG
|| write_symbols
== XCOFF_DEBUG
)
2622 && TREE_CODE (decl
) == TYPE_DECL
)
2624 timevar_push (TV_SYMOUT
);
2625 dbxout_symbol (decl
, 0);
2626 timevar_pop (TV_SYMOUT
);
2629 #ifdef SDB_DEBUGGING_INFO
2630 else if (write_symbols
== SDB_DEBUG
&& top_level
2631 && TREE_CODE (decl
) == TYPE_DECL
)
2633 timevar_push (TV_SYMOUT
);
2634 sdbout_symbol (decl
, 0);
2635 timevar_pop (TV_SYMOUT
);
2640 /* Called after finishing a record, union or enumeral type. */
2643 rest_of_type_compilation (type
, toplev
)
2644 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO) || defined (SDB_DEBUGGING_INFO)
2648 tree type ATTRIBUTE_UNUSED
;
2649 int toplev ATTRIBUTE_UNUSED
;
2652 timevar_push (TV_SYMOUT
);
2653 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2654 if (write_symbols
== DBX_DEBUG
|| write_symbols
== XCOFF_DEBUG
)
2655 dbxout_symbol (TYPE_STUB_DECL (type
), !toplev
);
2657 #ifdef SDB_DEBUGGING_INFO
2658 if (write_symbols
== SDB_DEBUG
)
2659 sdbout_symbol (TYPE_STUB_DECL (type
), !toplev
);
2661 #ifdef DWARF2_DEBUGGING_INFO
2662 if (write_symbols
== DWARF2_DEBUG
&& toplev
)
2663 dwarf2out_decl (TYPE_STUB_DECL (type
));
2665 timevar_pop (TV_SYMOUT
);
2668 /* DECL is an inline function, whose body is present, but which is not
2669 being output at this point. (We're putting that off until we need
2670 to do it.) If there are any actions that need to take place,
2671 including the emission of debugging information for the function,
2672 this is where they should go. This function may be called by
2673 language-dependent code for front-ends that do not even generate
2674 RTL for functions that don't need to be put out. */
2677 note_deferral_of_defined_inline_function (decl
)
2678 tree decl ATTRIBUTE_UNUSED
;
2680 #ifdef DWARF_DEBUGGING_INFO
2681 /* Generate the DWARF info for the "abstract" instance of a function
2682 which we may later generate inlined and/or out-of-line instances
2684 if (write_symbols
== DWARF_DEBUG
2685 && (DECL_INLINE (decl
) || DECL_ABSTRACT (decl
))
2686 && ! DECL_ABSTRACT_ORIGIN (decl
))
2688 /* The front-end may not have set CURRENT_FUNCTION_DECL, but the
2689 DWARF code expects it to be set in this case. Intuitively,
2690 DECL is the function we just finished defining, so setting
2691 CURRENT_FUNCTION_DECL is sensible. */
2692 tree saved_cfd
= current_function_decl
;
2693 int was_abstract
= DECL_ABSTRACT (decl
);
2694 current_function_decl
= decl
;
2696 /* Let the DWARF code do its work. */
2697 set_decl_abstract_flags (decl
, 1);
2698 dwarfout_file_scope_decl (decl
, 0);
2700 set_decl_abstract_flags (decl
, 0);
2702 /* Reset CURRENT_FUNCTION_DECL. */
2703 current_function_decl
= saved_cfd
;
2708 /* FNDECL is an inline function which is about to be emitted out of line.
2709 Do any preparation, such as emitting abstract debug info for the inline
2710 before it gets mangled by optimization. */
2713 note_outlining_of_inline_function (fndecl
)
2714 tree fndecl ATTRIBUTE_UNUSED
;
2716 #ifdef DWARF2_DEBUGGING_INFO
2717 /* The DWARF 2 backend tries to reduce debugging bloat by not emitting
2718 the abstract description of inline functions until something tries to
2719 reference them. Force it out now, before optimizations mangle the
2721 if (write_symbols
== DWARF2_DEBUG
)
2722 dwarf2out_abstract_function (fndecl
);
2726 /* This is called from finish_function (within yyparse)
2727 after each top-level definition is parsed.
2728 It is supposed to compile that function or variable
2729 and output the assembler code for it.
2730 After we return, the tree storage is freed. */
2733 rest_of_compilation (decl
)
2739 int rebuild_label_notes_after_reload
;
2740 int register_life_up_to_date
;
2742 timevar_push (TV_REST_OF_COMPILATION
);
2744 /* Now that we're out of the frontend, we shouldn't have any more
2745 CONCATs anywhere. */
2746 generating_concat_p
= 0;
2748 /* When processing delayed functions, prepare_function_start() won't
2749 have been run to re-initialize it. */
2750 cse_not_expected
= ! optimize
;
2752 /* First, make sure that NOTE_BLOCK is set correctly for each
2753 NOTE_INSN_BLOCK_BEG/NOTE_INSN_BLOCK_END note. */
2754 if (!cfun
->x_whole_function_mode_p
)
2757 /* Then remove any notes we don't need. That will make iterating
2758 over the instruction sequence faster, and allow the garbage
2759 collector to reclaim the memory used by the notes. */
2760 remove_unnecessary_notes ();
2762 /* In function-at-a-time mode, we do not attempt to keep the BLOCK
2763 tree in sensible shape. So, we just recalculate it here. */
2764 if (cfun
->x_whole_function_mode_p
)
2769 /* If we are reconsidering an inline function
2770 at the end of compilation, skip the stuff for making it inline. */
2772 if (DECL_SAVED_INSNS (decl
) == 0)
2778 /* If this is nested inside an inlined external function, pretend
2779 it was only declared. Since we cannot inline such functions,
2780 generating code for this one is not only not necessary but will
2781 confuse some debugging output writers. */
2782 for (parent
= DECL_CONTEXT (current_function_decl
);
2783 parent
!= NULL_TREE
;
2784 parent
= get_containing_scope (parent
))
2785 if (TREE_CODE (parent
) == FUNCTION_DECL
2786 && DECL_INLINE (parent
) && DECL_EXTERNAL (parent
))
2788 DECL_INITIAL (decl
) = 0;
2789 goto exit_rest_of_compilation
;
2792 /* If requested, consider whether to make this function inline. */
2793 if ((DECL_INLINE (decl
) && !flag_no_inline
)
2794 || flag_inline_functions
)
2796 timevar_push (TV_INTEGRATION
);
2797 lose
= function_cannot_inline_p (decl
);
2798 timevar_pop (TV_INTEGRATION
);
2799 if (lose
|| ! optimize
)
2801 if (warn_inline
&& DECL_INLINE (decl
))
2802 warning_with_decl (decl
, lose
);
2803 DECL_ABSTRACT_ORIGIN (decl
) = 0;
2804 /* Don't really compile an extern inline function.
2805 If we can't make it inline, pretend
2806 it was only declared. */
2807 if (DECL_EXTERNAL (decl
))
2809 DECL_INITIAL (decl
) = 0;
2810 goto exit_rest_of_compilation
;
2814 /* ??? Note that this has the effect of making it look
2815 like "inline" was specified for a function if we choose
2816 to inline it. This isn't quite right, but it's
2817 probably not worth the trouble to fix. */
2818 inlinable
= DECL_INLINE (decl
) = 1;
2821 insns
= get_insns ();
2823 /* Dump the rtl code if we are dumping rtl. */
2825 if (open_dump_file (DFI_rtl
, decl
))
2827 if (DECL_SAVED_INSNS (decl
))
2828 fprintf (rtl_dump_file
, ";; (integrable)\n\n");
2829 close_dump_file (DFI_rtl
, print_rtl
, insns
);
2832 /* Convert from NOTE_INSN_EH_REGION style notes, and do other
2833 sorts of eh initialization. Delay this until after the
2834 initial rtl dump so that we can see the original nesting. */
2835 convert_from_eh_region_ranges ();
2837 /* If function is inline, and we don't yet know whether to
2838 compile it by itself, defer decision till end of compilation.
2839 finish_compilation will call rest_of_compilation again
2840 for those functions that need to be output. Also defer those
2841 functions that we are supposed to defer. */
2844 || (DECL_INLINE (decl
)
2845 && ((! TREE_PUBLIC (decl
) && ! TREE_ADDRESSABLE (decl
)
2846 && ! flag_keep_inline_functions
)
2847 || DECL_EXTERNAL (decl
))))
2848 DECL_DEFER_OUTPUT (decl
) = 1;
2850 if (DECL_INLINE (decl
))
2851 /* DWARF wants seperate debugging info for abstract and
2852 concrete instances of all inline functions, including those
2853 declared inline but not inlined, and those inlined even
2854 though they weren't declared inline. Conveniently, that's
2855 what DECL_INLINE means at this point. */
2856 note_deferral_of_defined_inline_function (decl
);
2858 if (DECL_DEFER_OUTPUT (decl
))
2860 /* If -Wreturn-type, we have to do a bit of compilation. We just
2861 want to call jump_optimize to figure out whether or not we can
2862 fall off the end of the function; we do the minimum amount of
2863 work necessary to make that safe. And, we set optimize to zero
2864 to keep jump_optimize from working too hard. */
2865 if (warn_return_type
)
2867 int saved_optimize
= optimize
;
2870 find_exception_handler_labels ();
2871 jump_optimize (insns
, !JUMP_CROSS_JUMP
, !JUMP_NOOP_MOVES
,
2872 !JUMP_AFTER_REGSCAN
);
2873 optimize
= saved_optimize
;
2876 current_function_nothrow
= nothrow_function_p ();
2877 if (current_function_nothrow
)
2878 /* Now we know that this can't throw; set the flag for the benefit
2879 of other functions later in this translation unit. */
2880 TREE_NOTHROW (current_function_decl
) = 1;
2882 timevar_push (TV_INTEGRATION
);
2883 save_for_inline (decl
);
2884 timevar_pop (TV_INTEGRATION
);
2885 DECL_SAVED_INSNS (decl
)->inlinable
= inlinable
;
2886 goto exit_rest_of_compilation
;
2889 /* If specified extern inline but we aren't inlining it, we are
2890 done. This goes for anything that gets here with DECL_EXTERNAL
2891 set, not just things with DECL_INLINE. */
2892 if (DECL_EXTERNAL (decl
))
2893 goto exit_rest_of_compilation
;
2898 /* Initialize some variables used by the optimizers. */
2899 init_function_for_compilation ();
2901 if (! DECL_DEFER_OUTPUT (decl
))
2902 TREE_ASM_WRITTEN (decl
) = 1;
2904 /* Now that integrate will no longer see our rtl, we need not
2905 distinguish between the return value of this function and the
2906 return value of called functions. Also, we can remove all SETs
2907 of subregs of hard registers; they are only here because of
2909 rtx_equal_function_value_matters
= 0;
2910 purge_hard_subreg_sets (get_insns ());
2912 /* Don't return yet if -Wreturn-type; we need to do jump_optimize. */
2913 if ((rtl_dump_and_exit
|| flag_syntax_only
) && !warn_return_type
)
2914 goto exit_rest_of_compilation
;
2916 /* We may have potential sibling or tail recursion sites. Select one
2917 (of possibly multiple) methods of performing the call. */
2918 if (flag_optimize_sibling_calls
)
2920 timevar_push (TV_JUMP
);
2921 open_dump_file (DFI_sibling
, decl
);
2923 optimize_sibling_and_tail_recursive_calls ();
2925 close_dump_file (DFI_sibling
, print_rtl
, get_insns ());
2926 timevar_pop (TV_JUMP
);
2929 /* Complete generation of exception handling code. */
2930 find_exception_handler_labels ();
2933 timevar_push (TV_JUMP
);
2934 open_dump_file (DFI_eh
, decl
);
2936 finish_eh_generation ();
2938 close_dump_file (DFI_eh
, print_rtl
, get_insns ());
2939 timevar_pop (TV_JUMP
);
2943 /* If we are doing position-independent code generation, now
2944 is the time to output special prologues and epilogues.
2945 We do not want to do this earlier, because it just clutters
2946 up inline functions with meaningless insns. */
2951 insns
= get_insns ();
2953 /* Copy any shared structure that should not be shared. */
2954 unshare_all_rtl (current_function_decl
, insns
);
2956 #ifdef SETJMP_VIA_SAVE_AREA
2957 /* This must be performed before virutal register instantiation. */
2958 if (current_function_calls_alloca
)
2959 optimize_save_area_alloca (insns
);
2962 /* Instantiate all virtual registers. */
2963 instantiate_virtual_regs (current_function_decl
, insns
);
2965 open_dump_file (DFI_jump
, decl
);
2967 /* Always do one jump optimization pass to ensure that JUMP_LABEL fields
2968 are initialized and to compute whether control can drop off the end
2971 timevar_push (TV_JUMP
);
2972 /* Turn NOTE_INSN_EXPECTED_VALUE into REG_BR_PROB. Do this
2973 before jump optimization switches branch directions. */
2974 expected_value_to_br_prob ();
2976 reg_scan (insns
, max_reg_num (), 0);
2977 jump_optimize (insns
, !JUMP_CROSS_JUMP
, !JUMP_NOOP_MOVES
,
2978 JUMP_AFTER_REGSCAN
);
2980 timevar_pop (TV_JUMP
);
2982 /* Now is when we stop if -fsyntax-only and -Wreturn-type. */
2983 if (rtl_dump_and_exit
|| flag_syntax_only
|| DECL_DEFER_OUTPUT (decl
))
2985 close_dump_file (DFI_jump
, print_rtl
, insns
);
2986 goto exit_rest_of_compilation
;
2989 timevar_push (TV_JUMP
);
2993 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
2996 /* ??? Run if-conversion before delete_null_pointer_checks,
2997 since the later does not preserve the CFG. This should
2998 be changed -- no since converting if's that are going to
3000 timevar_push (TV_IFCVT
);
3002 timevar_pop (TV_IFCVT
);
3004 /* Try to identify useless null pointer tests and delete them. */
3005 if (flag_delete_null_pointer_checks
)
3006 delete_null_pointer_checks (insns
);
3009 /* Jump optimization, and the removal of NULL pointer checks, may
3010 have reduced the number of instructions substantially. CSE, and
3011 future passes, allocate arrays whose dimensions involve the
3012 maximum instruction UID, so if we can reduce the maximum UID
3013 we'll save big on memory. */
3014 renumber_insns (rtl_dump_file
);
3015 timevar_pop (TV_JUMP
);
3017 close_dump_file (DFI_jump
, print_rtl
, insns
);
3021 /* Perform common subexpression elimination.
3022 Nonzero value from `cse_main' means that jumps were simplified
3023 and some code may now be unreachable, so do
3024 jump optimization again. */
3028 open_dump_file (DFI_cse
, decl
);
3029 timevar_push (TV_CSE
);
3031 reg_scan (insns
, max_reg_num (), 1);
3033 if (flag_thread_jumps
)
3035 timevar_push (TV_JUMP
);
3036 thread_jumps (insns
, max_reg_num (), 1);
3037 timevar_pop (TV_JUMP
);
3040 tem
= cse_main (insns
, max_reg_num (), 0, rtl_dump_file
);
3042 /* If we are not running the second CSE pass, then we are no longer
3043 expecting CSE to be run. */
3044 cse_not_expected
= !flag_rerun_cse_after_loop
;
3046 if (tem
|| optimize
> 1)
3048 timevar_push (TV_JUMP
);
3049 jump_optimize (insns
, !JUMP_CROSS_JUMP
, !JUMP_NOOP_MOVES
,
3050 !JUMP_AFTER_REGSCAN
);
3051 timevar_pop (TV_JUMP
);
3054 /* Run this after jump optmizations remove all the unreachable code
3055 so that unreachable code will not keep values live. */
3056 delete_trivially_dead_insns (insns
, max_reg_num ());
3058 /* Try to identify useless null pointer tests and delete them. */
3059 if (flag_delete_null_pointer_checks
)
3061 timevar_push (TV_JUMP
);
3062 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
3066 delete_null_pointer_checks (insns
);
3067 timevar_pop (TV_JUMP
);
3070 /* The second pass of jump optimization is likely to have
3071 removed a bunch more instructions. */
3072 renumber_insns (rtl_dump_file
);
3074 timevar_pop (TV_CSE
);
3075 close_dump_file (DFI_cse
, print_rtl
, insns
);
3078 open_dump_file (DFI_addressof
, decl
);
3080 purge_addressof (insns
);
3081 reg_scan (insns
, max_reg_num (), 1);
3083 close_dump_file (DFI_addressof
, print_rtl
, insns
);
3087 if (optimize
> 0 && flag_ssa
)
3089 /* Convert to SSA form. */
3091 timevar_push (TV_TO_SSA
);
3092 open_dump_file (DFI_ssa
, decl
);
3094 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
3098 close_dump_file (DFI_ssa
, print_rtl_with_bb
, insns
);
3099 timevar_pop (TV_TO_SSA
);
3101 /* The SSA implementation uses basic block numbers in its phi
3102 nodes. Thus, changing the control-flow graph or the basic
3103 blocks, e.g., calling find_basic_blocks () or cleanup_cfg (),
3104 may cause problems. */
3108 /* Remove dead code. */
3110 timevar_push (TV_DEAD_CODE_ELIM
);
3111 open_dump_file (DFI_dce
, decl
);
3113 insns
= get_insns ();
3114 eliminate_dead_code();
3116 close_dump_file (DFI_dce
, print_rtl_with_bb
, insns
);
3117 timevar_pop (TV_DEAD_CODE_ELIM
);
3120 /* Convert from SSA form. */
3122 timevar_push (TV_FROM_SSA
);
3123 open_dump_file (DFI_ussa
, decl
);
3125 convert_from_ssa ();
3126 /* New registers have been created. Rescan their usage. */
3127 reg_scan (insns
, max_reg_num (), 1);
3128 /* Life analysis used in SSA adds log_links but these
3129 shouldn't be there until the flow stage, so clear
3131 clear_log_links (insns
);
3133 close_dump_file (DFI_ussa
, print_rtl_with_bb
, insns
);
3134 timevar_pop (TV_FROM_SSA
);
3139 /* Perform global cse. */
3141 if (optimize
> 0 && flag_gcse
)
3143 timevar_push (TV_GCSE
);
3144 open_dump_file (DFI_gcse
, decl
);
3146 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
3148 tem
= gcse_main (insns
, rtl_dump_file
);
3150 /* If gcse altered any jumps, rerun jump optimizations to clean
3154 timevar_push (TV_JUMP
);
3155 jump_optimize (insns
, !JUMP_CROSS_JUMP
, !JUMP_NOOP_MOVES
,
3156 !JUMP_AFTER_REGSCAN
);
3157 timevar_pop (TV_JUMP
);
3160 close_dump_file (DFI_gcse
, print_rtl
, insns
);
3161 timevar_pop (TV_GCSE
);
3166 /* Move constant computations out of loops. */
3170 timevar_push (TV_LOOP
);
3171 open_dump_file (DFI_loop
, decl
);
3173 if (flag_rerun_loop_opt
)
3175 /* We only want to perform unrolling once. */
3177 loop_optimize (insns
, rtl_dump_file
, 0);
3179 /* The first call to loop_optimize makes some instructions
3180 trivially dead. We delete those instructions now in the
3181 hope that doing so will make the heuristics in loop work
3182 better and possibly speed up compilation. */
3183 delete_trivially_dead_insns (insns
, max_reg_num ());
3185 /* The regscan pass is currently necessary as the alias
3186 analysis code depends on this information. */
3187 reg_scan (insns
, max_reg_num (), 1);
3189 loop_optimize (insns
, rtl_dump_file
,
3190 (flag_unroll_loops
? LOOP_UNROLL
: 0) | LOOP_BCT
);
3192 close_dump_file (DFI_loop
, print_rtl
, insns
);
3193 timevar_pop (TV_LOOP
);
3200 timevar_push (TV_CSE2
);
3201 open_dump_file (DFI_cse2
, decl
);
3203 if (flag_rerun_cse_after_loop
)
3205 /* Running another jump optimization pass before the second
3206 cse pass sometimes simplifies the RTL enough to allow
3207 the second CSE pass to do a better job. Jump_optimize can change
3208 max_reg_num so we must rerun reg_scan afterwards.
3209 ??? Rework to not call reg_scan so often. */
3210 timevar_push (TV_JUMP
);
3212 reg_scan (insns
, max_reg_num (), 0);
3213 jump_optimize (insns
, !JUMP_CROSS_JUMP
,
3214 !JUMP_NOOP_MOVES
, JUMP_AFTER_REGSCAN
);
3216 timevar_push (TV_IFCVT
);
3218 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
3222 timevar_pop(TV_IFCVT
);
3224 timevar_pop (TV_JUMP
);
3226 reg_scan (insns
, max_reg_num (), 0);
3227 tem
= cse_main (insns
, max_reg_num (), 1, rtl_dump_file
);
3231 timevar_push (TV_JUMP
);
3232 jump_optimize (insns
, !JUMP_CROSS_JUMP
,
3233 !JUMP_NOOP_MOVES
, !JUMP_AFTER_REGSCAN
);
3234 timevar_pop (TV_JUMP
);
3238 if (flag_thread_jumps
)
3240 /* This pass of jump threading straightens out code
3241 that was kinked by loop optimization. */
3242 timevar_push (TV_JUMP
);
3243 reg_scan (insns
, max_reg_num (), 0);
3244 thread_jumps (insns
, max_reg_num (), 0);
3245 timevar_pop (TV_JUMP
);
3248 close_dump_file (DFI_cse2
, print_rtl
, insns
);
3249 timevar_pop (TV_CSE2
);
3254 cse_not_expected
= 1;
3258 /* Do control and data flow analysis; wrote some of the results to
3261 timevar_push (TV_FLOW
);
3262 open_dump_file (DFI_cfg
, decl
);
3264 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
3266 check_function_return_warnings ();
3268 close_dump_file (DFI_cfg
, print_rtl_with_bb
, insns
);
3270 if (profile_arc_flag
|| flag_test_coverage
|| flag_branch_probabilities
)
3272 timevar_push (TV_BRANCH_PROB
);
3273 open_dump_file (DFI_bp
, decl
);
3277 close_dump_file (DFI_bp
, print_rtl_with_bb
, insns
);
3278 timevar_pop (TV_BRANCH_PROB
);
3281 open_dump_file (DFI_life
, decl
);
3286 /* Discover and record the loop depth at the head of each basic
3287 block. The loop infrastructure does the real job for us. */
3288 flow_loops_find (&loops
, LOOP_TREE
);
3290 /* Estimate using heuristics if no profiling info is available. */
3291 if (flag_guess_branch_prob
)
3292 estimate_probability (&loops
);
3295 flow_loops_dump (&loops
, rtl_dump_file
, NULL
, 0);
3297 flow_loops_free (&loops
);
3299 life_analysis (insns
, rtl_dump_file
, PROP_FINAL
);
3300 mark_constant_function ();
3301 timevar_pop (TV_FLOW
);
3303 register_life_up_to_date
= 1;
3306 if (warn_uninitialized
|| extra_warnings
)
3308 uninitialized_vars_warning (DECL_INITIAL (decl
));
3310 setjmp_args_warning ();
3313 close_dump_file (DFI_life
, print_rtl_with_bb
, insns
);
3317 /* If -opt, try combining insns through substitution. */
3321 int rebuild_jump_labels_after_combine
= 0;
3323 timevar_push (TV_COMBINE
);
3324 open_dump_file (DFI_combine
, decl
);
3326 rebuild_jump_labels_after_combine
3327 = combine_instructions (insns
, max_reg_num ());
3329 /* Combining insns may have turned an indirect jump into a
3330 direct jump. Rebuid the JUMP_LABEL fields of jumping
3332 if (rebuild_jump_labels_after_combine
)
3334 timevar_push (TV_JUMP
);
3335 rebuild_jump_labels (insns
);
3336 timevar_pop (TV_JUMP
);
3338 timevar_push (TV_FLOW
);
3339 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
3342 /* Blimey. We've got to have the CFG up to date for the call to
3343 if_convert below. However, the random deletion of blocks
3344 without updating life info can wind up with Wierd Stuff in
3345 global_live_at_end. We then run sched1, which updates things
3346 properly, discovers the wierdness and aborts. */
3347 update_life_info (NULL
, UPDATE_LIFE_GLOBAL_RM_NOTES
,
3348 PROP_DEATH_NOTES
| PROP_KILL_DEAD_CODE
3349 | PROP_SCAN_DEAD_CODE
);
3351 timevar_pop (TV_FLOW
);
3354 close_dump_file (DFI_combine
, print_rtl_with_bb
, insns
);
3355 timevar_pop (TV_COMBINE
);
3360 /* Rerun if-conversion, as combine may have simplified things enough to
3361 now meet sequence length restrictions. */
3364 timevar_push (TV_IFCVT
);
3365 open_dump_file (DFI_ce
, decl
);
3371 close_dump_file (DFI_ce
, print_rtl_with_bb
, insns
);
3372 timevar_pop (TV_IFCVT
);
3375 /* Register allocation pre-pass, to reduce number of moves
3376 necessary for two-address machines. */
3377 if (optimize
> 0 && (flag_regmove
|| flag_expensive_optimizations
))
3379 timevar_push (TV_REGMOVE
);
3380 open_dump_file (DFI_regmove
, decl
);
3382 regmove_optimize (insns
, max_reg_num (), rtl_dump_file
);
3384 close_dump_file (DFI_regmove
, print_rtl_with_bb
, insns
);
3385 timevar_pop (TV_REGMOVE
);
3390 /* Any of the several passes since flow1 will have munged register
3391 lifetime data a bit. */
3393 register_life_up_to_date
= 0;
3395 #ifdef OPTIMIZE_MODE_SWITCHING
3396 timevar_push (TV_GCSE
);
3398 if (optimize_mode_switching (NULL_PTR
))
3400 /* We did work, and so had to regenerate global life information.
3401 Take advantage of this and don't re-recompute register life
3402 information below. */
3403 register_life_up_to_date
= 1;
3406 timevar_pop (TV_GCSE
);
3409 #ifdef INSN_SCHEDULING
3411 /* Print function header into sched dump now
3412 because doing the sched analysis makes some of the dump. */
3413 if (optimize
> 0 && flag_schedule_insns
)
3415 timevar_push (TV_SCHED
);
3416 open_dump_file (DFI_sched
, decl
);
3418 /* Do control and data sched analysis,
3419 and write some of the results to dump file. */
3421 schedule_insns (rtl_dump_file
);
3423 close_dump_file (DFI_sched
, print_rtl_with_bb
, insns
);
3424 timevar_pop (TV_SCHED
);
3428 /* Register lifetime information was updated as part of verifying
3430 register_life_up_to_date
= 1;
3434 /* Determine if the current function is a leaf before running reload
3435 since this can impact optimizations done by the prologue and
3436 epilogue thus changing register elimination offsets. */
3437 current_function_is_leaf
= leaf_function_p ();
3439 timevar_push (TV_LOCAL_ALLOC
);
3440 open_dump_file (DFI_lreg
, decl
);
3442 /* Allocate pseudo-regs that are used only within 1 basic block.
3444 RUN_JUMP_AFTER_RELOAD records whether or not we need to rerun the
3445 jump optimizer after register allocation and reloading are finished. */
3447 if (! register_life_up_to_date
)
3448 recompute_reg_usage (insns
, ! optimize_size
);
3449 regclass (insns
, max_reg_num (), rtl_dump_file
);
3450 rebuild_label_notes_after_reload
= local_alloc ();
3452 timevar_pop (TV_LOCAL_ALLOC
);
3454 if (dump_file
[DFI_lreg
].enabled
)
3456 timevar_push (TV_DUMP
);
3458 dump_flow_info (rtl_dump_file
);
3459 dump_local_alloc (rtl_dump_file
);
3461 close_dump_file (DFI_lreg
, print_rtl_with_bb
, insns
);
3462 timevar_pop (TV_DUMP
);
3467 timevar_push (TV_GLOBAL_ALLOC
);
3468 open_dump_file (DFI_greg
, decl
);
3470 /* If optimizing, allocate remaining pseudo-regs. Do the reload
3471 pass fixing up any insns that are invalid. */
3474 failure
= global_alloc (rtl_dump_file
);
3477 build_insn_chain (insns
);
3478 failure
= reload (insns
, 0);
3481 timevar_pop (TV_GLOBAL_ALLOC
);
3483 if (dump_file
[DFI_greg
].enabled
)
3485 timevar_push (TV_DUMP
);
3487 dump_global_regs (rtl_dump_file
);
3489 close_dump_file (DFI_greg
, print_rtl_with_bb
, insns
);
3490 timevar_pop (TV_DUMP
);
3494 goto exit_rest_of_compilation
;
3498 open_dump_file (DFI_postreload
, decl
);
3500 /* Do a very simple CSE pass over just the hard registers. */
3503 timevar_push (TV_RELOAD_CSE_REGS
);
3504 reload_cse_regs (insns
);
3505 timevar_pop (TV_RELOAD_CSE_REGS
);
3508 /* If optimizing, then go ahead and split insns now since we are about
3509 to recompute flow information anyway. */
3512 int old_labelnum
= max_label_num ();
3514 split_all_insns (0);
3515 rebuild_label_notes_after_reload
|= old_labelnum
!= max_label_num ();
3518 /* Register allocation and reloading may have turned an indirect jump into
3519 a direct jump. If so, we must rebuild the JUMP_LABEL fields of
3520 jumping instructions. */
3521 if (rebuild_label_notes_after_reload
)
3523 timevar_push (TV_JUMP
);
3525 rebuild_jump_labels (insns
);
3527 timevar_pop (TV_JUMP
);
3530 close_dump_file (DFI_postreload
, print_rtl_with_bb
, insns
);
3532 /* Re-create the death notes which were deleted during reload. */
3533 timevar_push (TV_FLOW2
);
3534 open_dump_file (DFI_flow2
, decl
);
3536 jump_optimize (insns
, !JUMP_CROSS_JUMP
,
3537 JUMP_NOOP_MOVES
, !JUMP_AFTER_REGSCAN
);
3538 find_basic_blocks (insns
, max_reg_num (), rtl_dump_file
);
3540 /* On some machines, the prologue and epilogue code, or parts thereof,
3541 can be represented as RTL. Doing so lets us schedule insns between
3542 it and the rest of the code and also allows delayed branch
3543 scheduling to operate in the epilogue. */
3544 thread_prologue_and_epilogue_insns (insns
);
3549 life_analysis (insns
, rtl_dump_file
, PROP_FINAL
);
3551 /* This is kind of a heuristic. We need to run combine_stack_adjustments
3552 even for machines with possibly nonzero RETURN_POPS_ARGS
3553 and ACCUMULATE_OUTGOING_ARGS. We expect that only ports having
3554 push instructions will have popping returns. */
3555 #ifndef PUSH_ROUNDING
3556 if (!ACCUMULATE_OUTGOING_ARGS
)
3558 combine_stack_adjustments ();
3563 flow2_completed
= 1;
3565 close_dump_file (DFI_flow2
, print_rtl_with_bb
, insns
);
3566 timevar_pop (TV_FLOW2
);
3568 #ifdef HAVE_peephole2
3569 if (optimize
> 0 && flag_peephole2
)
3571 timevar_push (TV_PEEPHOLE2
);
3572 open_dump_file (DFI_peephole2
, decl
);
3574 peephole2_optimize (rtl_dump_file
);
3576 close_dump_file (DFI_peephole2
, print_rtl_with_bb
, insns
);
3577 timevar_pop (TV_PEEPHOLE2
);
3581 if (optimize
> 0 && flag_rename_registers
)
3583 timevar_push (TV_RENAME_REGISTERS
);
3584 open_dump_file (DFI_rnreg
, decl
);
3586 regrename_optimize ();
3588 close_dump_file (DFI_rnreg
, print_rtl_with_bb
, insns
);
3589 timevar_pop (TV_RENAME_REGISTERS
);
3594 timevar_push (TV_IFCVT2
);
3595 open_dump_file (DFI_ce2
, decl
);
3599 close_dump_file (DFI_ce2
, print_rtl_with_bb
, insns
);
3600 timevar_pop (TV_IFCVT2
);
3603 #ifdef INSN_SCHEDULING
3604 if (optimize
> 0 && flag_schedule_insns_after_reload
)
3606 timevar_push (TV_SCHED2
);
3607 open_dump_file (DFI_sched2
, decl
);
3609 /* Do control and data sched analysis again,
3610 and write some more of the results to dump file. */
3612 schedule_insns (rtl_dump_file
);
3614 close_dump_file (DFI_sched2
, print_rtl_with_bb
, insns
);
3615 timevar_pop (TV_SCHED2
);
3621 #ifdef LEAF_REGISTERS
3622 current_function_uses_only_leaf_regs
3623 = optimize
> 0 && only_leaf_regs_used () && leaf_function_p ();
3626 if (optimize
> 0 && flag_reorder_blocks
)
3628 timevar_push (TV_REORDER_BLOCKS
);
3629 open_dump_file (DFI_bbro
, decl
);
3631 reorder_basic_blocks ();
3633 close_dump_file (DFI_bbro
, print_rtl_with_bb
, insns
);
3634 timevar_pop (TV_REORDER_BLOCKS
);
3637 /* One more attempt to remove jumps to .+1 left by dead-store elimination.
3638 Also do cross-jumping this time and delete no-op move insns. */
3642 timevar_push (TV_JUMP
);
3643 open_dump_file (DFI_jump2
, decl
);
3645 jump_optimize (insns
, JUMP_CROSS_JUMP
, JUMP_NOOP_MOVES
,
3646 !JUMP_AFTER_REGSCAN
);
3648 /* CFG no longer kept up to date. */
3650 close_dump_file (DFI_jump2
, print_rtl
, insns
);
3651 timevar_pop (TV_JUMP
);
3654 /* If a machine dependent reorganization is needed, call it. */
3655 #ifdef MACHINE_DEPENDENT_REORG
3656 open_dump_file (DFI_mach
, decl
);
3658 MACHINE_DEPENDENT_REORG (insns
);
3660 close_dump_file (DFI_mach
, print_rtl
, insns
);
3665 /* If a scheduling pass for delayed branches is to be done,
3666 call the scheduling code. */
3669 if (optimize
> 0 && flag_delayed_branch
)
3671 timevar_push (TV_DBR_SCHED
);
3672 open_dump_file (DFI_dbr
, decl
);
3674 dbr_schedule (insns
, rtl_dump_file
);
3676 close_dump_file (DFI_dbr
, print_rtl
, insns
);
3677 timevar_pop (TV_DBR_SCHED
);
3684 /* ??? Do this before shorten branches so that we aren't creating
3685 insns too late and fail sanity checks in final. */
3686 convert_to_eh_region_ranges ();
3689 /* Shorten branches.
3691 Note this must run before reg-stack because of death note (ab)use
3692 in the ia32 backend. */
3693 timevar_push (TV_SHORTEN_BRANCH
);
3694 shorten_branches (get_insns ());
3695 timevar_pop (TV_SHORTEN_BRANCH
);
3698 timevar_push (TV_REG_STACK
);
3699 open_dump_file (DFI_stack
, decl
);
3701 reg_to_stack (insns
, rtl_dump_file
);
3703 close_dump_file (DFI_stack
, print_rtl
, insns
);
3704 timevar_pop (TV_REG_STACK
);
3708 convert_to_eh_region_ranges ();
3711 current_function_nothrow
= nothrow_function_p ();
3712 if (current_function_nothrow
)
3713 /* Now we know that this can't throw; set the flag for the benefit
3714 of other functions later in this translation unit. */
3715 TREE_NOTHROW (current_function_decl
) = 1;
3717 /* Now turn the rtl into assembler code. */
3719 timevar_push (TV_FINAL
);
3724 /* Get the function's name, as described by its RTL. This may be
3725 different from the DECL_NAME name used in the source file. */
3727 x
= DECL_RTL (decl
);
3728 if (GET_CODE (x
) != MEM
)
3731 if (GET_CODE (x
) != SYMBOL_REF
)
3733 fnname
= XSTR (x
, 0);
3735 assemble_start_function (decl
, fnname
);
3736 final_start_function (insns
, asm_out_file
, optimize
);
3737 final (insns
, asm_out_file
, optimize
, 0);
3738 final_end_function (insns
, asm_out_file
, optimize
);
3740 #ifdef IA64_UNWIND_INFO
3741 /* ??? The IA-64 ".handlerdata" directive must be issued before
3742 the ".endp" directive that closes the procedure descriptor. */
3743 output_function_exception_table ();
3746 assemble_end_function (decl
, fnname
);
3748 #ifndef IA64_UNWIND_INFO
3749 /* Otherwise, it feels unclean to switch sections in the middle. */
3750 output_function_exception_table ();
3754 fflush (asm_out_file
);
3756 /* Release all memory allocated by flow. */
3757 free_basic_block_vars (0);
3759 /* Release all memory held by regsets now. */
3760 regset_release_memory ();
3762 timevar_pop (TV_FINAL
);
3766 /* Write DBX symbols if requested. */
3768 /* Note that for those inline functions where we don't initially
3769 know for certain that we will be generating an out-of-line copy,
3770 the first invocation of this routine (rest_of_compilation) will
3771 skip over this code by doing a `goto exit_rest_of_compilation;'.
3772 Later on, finish_compilation will call rest_of_compilation again
3773 for those inline functions that need to have out-of-line copies
3774 generated. During that call, we *will* be routed past here. */
3776 timevar_push (TV_SYMOUT
);
3777 #ifdef DBX_DEBUGGING_INFO
3778 if (write_symbols
== DBX_DEBUG
)
3779 dbxout_function (decl
);
3782 #ifdef DWARF_DEBUGGING_INFO
3783 if (write_symbols
== DWARF_DEBUG
)
3784 dwarfout_file_scope_decl (decl
, 0);
3787 #ifdef DWARF2_DEBUGGING_INFO
3788 if (write_symbols
== DWARF2_DEBUG
)
3789 dwarf2out_decl (decl
);
3791 timevar_pop (TV_SYMOUT
);
3793 exit_rest_of_compilation
:
3795 /* In case the function was not output,
3796 don't leave any temporary anonymous types
3797 queued up for sdb output. */
3798 #ifdef SDB_DEBUGGING_INFO
3799 if (write_symbols
== SDB_DEBUG
)
3800 sdbout_types (NULL_TREE
);
3803 reload_completed
= 0;
3804 flow2_completed
= 0;
3807 timevar_push (TV_FINAL
);
3809 /* Clear out the insn_length contents now that they are no
3811 init_insn_lengths ();
3813 /* Clear out the real_constant_chain before some of the rtx's
3814 it runs through become garbage. */
3815 clear_const_double_mem ();
3817 /* Show no temporary slots allocated. */
3820 free_basic_block_vars (0);
3822 timevar_pop (TV_FINAL
);
3824 /* Make sure volatile mem refs aren't considered valid operands for
3825 arithmetic insns. We must call this here if this is a nested inline
3826 function, since the above code leaves us in the init_recog state
3827 (from final.c), and the function context push/pop code does not
3828 save/restore volatile_ok.
3830 ??? Maybe it isn't necessary for expand_start_function to call this
3831 anymore if we do it here? */
3833 init_recog_no_volatile ();
3835 /* We're done with this function. Free up memory if we can. */
3836 free_after_parsing (cfun
);
3837 if (! DECL_DEFER_OUTPUT (decl
))
3838 free_after_compilation (cfun
);
3843 timevar_pop (TV_REST_OF_COMPILATION
);
3853 printf (_(" -ffixed-<register> Mark <register> as being unavailable to the compiler\n"));
3854 printf (_(" -fcall-used-<register> Mark <register> as being corrupted by function calls\n"));
3855 printf (_(" -fcall-saved-<register> Mark <register> as being preserved across functions\n"));
3856 printf (_(" -finline-limit=<number> Limits the size of inlined functions to <number>\n"));
3857 printf (_(" -fmessage-length=<number> Limits diagnostics messages lengths to <number> characters per line. 0 suppresses line-wrapping\n"));
3858 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"));
3860 for (i
= ARRAY_SIZE (f_options
); i
--;)
3862 const char *description
= f_options
[i
].description
;
3864 if (description
!= NULL
&& * description
!= 0)
3865 printf (" -f%-21s %s\n",
3866 f_options
[i
].string
, _(description
));
3869 printf (_(" -O[number] Set optimisation level to [number]\n"));
3870 printf (_(" -Os Optimise for space rather than speed\n"));
3871 for (i
= sizeof (compiler_params
); i
--;)
3873 const char *description
= compiler_params
[i
].help
;
3874 const int length
= 21-strlen(compiler_params
[i
].option
);
3876 if (description
!= NULL
&& * description
!= 0)
3877 printf (" --param %s=<value>%.*s%s\n",
3878 compiler_params
[i
].option
,
3879 length
> 0 ? length
: 1, " ",
3882 printf (_(" -pedantic Issue warnings needed by strict compliance to ISO C\n"));
3883 printf (_(" -pedantic-errors Like -pedantic except that errors are produced\n"));
3884 printf (_(" -w Suppress warnings\n"));
3885 printf (_(" -W Enable extra warnings\n"));
3887 for (i
= ARRAY_SIZE (W_options
); i
--;)
3889 const char *description
= W_options
[i
].description
;
3891 if (description
!= NULL
&& * description
!= 0)
3892 printf (" -W%-21s %s\n",
3893 W_options
[i
].string
, _(description
));
3896 printf (_(" -Wunused Enable unused warnings\n"));
3897 printf (_(" -Wid-clash-<num> Warn if 2 identifiers have the same first <num> chars\n"));
3898 printf (_(" -Wlarger-than-<number> Warn if an object is larger than <number> bytes\n"));
3899 printf (_(" -p Enable function profiling\n"));
3900 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER)
3901 printf (_(" -a Enable block profiling \n"));
3903 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER) || defined FUNCTION_BLOCK_PROFILER_EXIT
3904 printf (_(" -ax Enable jump profiling \n"));
3906 printf (_(" -o <file> Place output into <file> \n"));
3908 -G <number> Put global and static data smaller than <number>\n\
3909 bytes into a special section (on some targets)\n"));
3911 for (i
= ARRAY_SIZE (debug_args
); i
--;)
3913 if (debug_args
[i
].description
!= NULL
)
3914 printf (" -g%-21s %s\n",
3915 debug_args
[i
].arg
, _(debug_args
[i
].description
));
3918 printf (_(" -aux-info <file> Emit declaration info into <file>\n"));
3919 printf (_(" -quiet Do not display functions compiled or elapsed time\n"));
3920 printf (_(" -version Display the compiler's version\n"));
3921 printf (_(" -d[letters] Enable dumps from specific passes of the compiler\n"));
3922 printf (_(" -dumpbase <file> Base name to be used for dumps from specific passes\n"));
3923 #if defined INSN_SCHEDULING
3924 printf (_(" -fsched-verbose=<number> Set the verbosity level of the scheduler\n"));
3926 printf (_(" --help Display this information\n"));
3931 /* Display descriptions of language specific options.
3932 If there is no description, note that there is an undocumented option.
3933 If the description is empty, do not display anything. (This allows
3934 options to be deliberately undocumented, for whatever reason).
3935 If the option string is missing, then this is a marker, indicating
3936 that the description string is in fact the name of a language, whose
3937 language specific options are to follow. */
3939 if (ARRAY_SIZE (documented_lang_options
) > 1)
3941 printf (_("\nLanguage specific options:\n"));
3943 for (i
= 0; i
< ARRAY_SIZE (documented_lang_options
); i
++)
3945 const char *description
= documented_lang_options
[i
].description
;
3946 const char *option
= documented_lang_options
[i
].option
;
3948 if (description
== NULL
)
3953 printf (_(" %-23.23s [undocumented]\n"), option
);
3955 else if (*description
== 0)
3957 else if (option
== NULL
)
3961 (_("\nThere are undocumented %s specific options as well.\n"),
3965 printf (_("\n Options for %s:\n"), description
);
3970 printf (" %-23.23s %s\n", option
, _(description
));
3975 printf (_("\nThere are undocumented %s specific options as well.\n"),
3978 display_target_options ();
3982 display_target_options ()
3986 if (ARRAY_SIZE (target_switches
) > 1
3987 #ifdef TARGET_OPTIONS
3988 || ARRAY_SIZE (target_options
) > 1
3996 printf (_("\nTarget specific options:\n"));
3998 for (i
= ARRAY_SIZE (target_switches
); i
--;)
4000 const char *option
= target_switches
[i
].name
;
4001 const char *description
= target_switches
[i
].description
;
4003 if (option
== NULL
|| *option
== 0)
4005 else if (description
== NULL
)
4010 printf (_(" -m%-23.23s [undocumented]\n"), option
);
4012 else if (* description
!= 0)
4013 doc
+= printf (" -m%-23.23s %s\n", option
, _(description
));
4016 #ifdef TARGET_OPTIONS
4017 for (i
= ARRAY_SIZE (target_options
); i
--;)
4019 const char *option
= target_options
[i
].prefix
;
4020 const char *description
= target_options
[i
].description
;
4022 if (option
== NULL
|| *option
== 0)
4024 else if (description
== NULL
)
4029 printf (_(" -m%-23.23s [undocumented]\n"), option
);
4031 else if (* description
!= 0)
4032 doc
+= printf (" -m%-23.23s %s\n", option
, _(description
));
4038 printf (_("\nThere are undocumented target specific options as well.\n"));
4040 printf (_(" They exist, but they are not documented.\n"));
4045 /* Parse a -d... comand line switch. */
4048 decode_d_option (arg
)
4057 for (i
= 0; i
< (int) DFI_MAX
; ++i
)
4058 dump_file
[i
].enabled
= 1;
4067 flag_print_asm_name
= 1;
4070 flag_dump_rtl_in_asm
= 1;
4071 flag_print_asm_name
= 1;
4074 graph_dump_format
= vcg
;
4077 rtl_dump_and_exit
= 1;
4082 case 'D': /* These are handled by the preprocessor. */
4088 for (i
= 0; i
< (int) DFI_MAX
; ++i
)
4089 if (c
== dump_file
[i
].debug_switch
)
4091 dump_file
[i
].enabled
= 1;
4096 warning ("unrecognized gcc debugging option: %c", c
);
4101 /* Parse a -f... comand line switch. ARG is the value after the -f.
4102 It is safe to access 'ARG - 2' to generate the full switch name.
4103 Return the number of strings consumed. */
4106 decode_f_option (arg
)
4110 const char *option_value
= NULL
;
4112 /* Search for the option in the table of binary f options. */
4113 for (j
= ARRAY_SIZE (f_options
); j
--;)
4115 if (!strcmp (arg
, f_options
[j
].string
))
4117 *f_options
[j
].variable
= f_options
[j
].on_value
;
4121 if (arg
[0] == 'n' && arg
[1] == 'o' && arg
[2] == '-'
4122 && ! strcmp (arg
+ 3, f_options
[j
].string
))
4124 *f_options
[j
].variable
= ! f_options
[j
].on_value
;
4129 if ((option_value
= skip_leading_substring (arg
, "inline-limit-"))
4130 || (option_value
= skip_leading_substring (arg
, "inline-limit=")))
4133 read_integral_parameter (option_value
, arg
- 2,
4135 set_param_value ("max-inline-insns", val
);
4137 #ifdef INSN_SCHEDULING
4138 else if ((option_value
= skip_leading_substring (arg
, "sched-verbose=")))
4139 fix_sched_param ("verbose", option_value
);
4141 else if ((option_value
= skip_leading_substring (arg
, "fixed-")))
4142 fix_register (option_value
, 1, 1);
4143 else if ((option_value
= skip_leading_substring (arg
, "call-used-")))
4144 fix_register (option_value
, 0, 1);
4145 else if ((option_value
= skip_leading_substring (arg
, "call-saved-")))
4146 fix_register (option_value
, 0, 0);
4147 else if ((option_value
= skip_leading_substring (arg
, "align-loops=")))
4148 align_loops
= read_integral_parameter (option_value
, arg
- 2, align_loops
);
4149 else if ((option_value
= skip_leading_substring (arg
, "align-functions=")))
4151 = read_integral_parameter (option_value
, arg
- 2, align_functions
);
4152 else if ((option_value
= skip_leading_substring (arg
, "align-jumps=")))
4153 align_jumps
= read_integral_parameter (option_value
, arg
- 2, align_jumps
);
4154 else if ((option_value
= skip_leading_substring (arg
, "align-labels=")))
4156 = read_integral_parameter (option_value
, arg
- 2, align_labels
);
4157 else if ((option_value
4158 = skip_leading_substring (arg
, "stack-limit-register=")))
4160 int reg
= decode_reg_name (option_value
);
4162 error ("unrecognized register name `%s'", option_value
);
4164 stack_limit_rtx
= gen_rtx_REG (Pmode
, reg
);
4166 else if ((option_value
4167 = skip_leading_substring (arg
, "stack-limit-symbol=")))
4170 nm
= ggc_strdup (option_value
);
4171 stack_limit_rtx
= gen_rtx_SYMBOL_REF (Pmode
, nm
);
4173 else if ((option_value
4174 = skip_leading_substring (arg
, "message-length=")))
4175 diagnostic_message_length_per_line
=
4176 read_integral_parameter (option_value
, arg
- 2,
4177 diagnostic_message_length_per_line
);
4178 else if ((option_value
4179 = skip_leading_substring (arg
, "diagnostics-show-location=")))
4181 if (!strcmp (option_value
, "once"))
4182 set_message_prefixing_rule (DIAGNOSTICS_SHOW_PREFIX_ONCE
);
4183 else if (!strcmp (option_value
, "every-line"))
4184 set_message_prefixing_rule (DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE
);
4186 error ("Unrecognized option `%s'", arg
- 2);
4188 else if (!strcmp (arg
, "no-stack-limit"))
4189 stack_limit_rtx
= NULL_RTX
;
4190 else if (!strcmp (arg
, "preprocessed"))
4191 /* Recognise this switch but do nothing. This prevents warnings
4192 about an unrecognized switch if cpplib has not been linked in. */
4200 /* Parse a -W... comand line switch. ARG is the value after the -W.
4201 It is safe to access 'ARG - 2' to generate the full switch name.
4202 Return the number of strings consumed. */
4205 decode_W_option (arg
)
4208 const char *option_value
= NULL
;
4211 /* Search for the option in the table of binary W options. */
4213 for (j
= ARRAY_SIZE (W_options
); j
--;)
4215 if (!strcmp (arg
, W_options
[j
].string
))
4217 *W_options
[j
].variable
= W_options
[j
].on_value
;
4221 if (arg
[0] == 'n' && arg
[1] == 'o' && arg
[2] == '-'
4222 && ! strcmp (arg
+ 3, W_options
[j
].string
))
4224 *W_options
[j
].variable
= ! W_options
[j
].on_value
;
4229 if ((option_value
= skip_leading_substring (arg
, "id-clash-")))
4231 id_clash_len
= read_integral_parameter (option_value
, arg
- 2, -1);
4233 if (id_clash_len
!= -1)
4236 else if ((option_value
= skip_leading_substring (arg
, "larger-than-")))
4238 larger_than_size
= read_integral_parameter (option_value
, arg
- 2, -1);
4240 warn_larger_than
= larger_than_size
!= -1;
4242 else if (!strcmp (arg
, "unused"))
4246 else if (!strcmp (arg
, "no-unused"))
4256 /* Parse a -g... comand line switch. ARG is the value after the -g.
4257 It is safe to access 'ARG - 2' to generate the full switch name.
4258 Return the number of strings consumed. */
4261 decode_g_option (arg
)
4265 /* A lot of code assumes write_symbols == NO_DEBUG if the
4266 debugging level is 0 (thus -gstabs1 -gstabs0 would lose track
4267 of what debugging type has been selected). This records the
4268 selected type. It is an error to specify more than one
4270 static enum debug_info_type selected_debug_type
= NO_DEBUG
;
4271 /* Non-zero if debugging format has been explicitly set.
4272 -g and -ggdb don't explicitly set the debugging format so
4273 -gdwarf -g3 is equivalent to -gdwarf3. */
4274 static int type_explicitly_set_p
= 0;
4275 /* Indexed by enum debug_info_type. */
4276 static const char *debug_type_names
[] =
4278 "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff"
4281 /* The maximum admissible debug level value. */
4282 static const unsigned max_debug_level
= 3;
4284 /* Look up ARG in the table. */
4285 for (da
= debug_args
; da
->arg
; da
++)
4287 const int da_len
= strlen (da
->arg
);
4289 if (da_len
== 0 || ! strncmp (arg
, da
->arg
, da_len
))
4291 enum debug_info_type type
= da
->debug_type
;
4292 const char *p
= arg
+ da_len
;
4294 if (*p
&& (*p
< '0' || *p
> '9'))
4297 /* A debug flag without a level defaults to level 2.
4298 Note we do not want to call read_integral_parameter
4299 for that case since it will call atoi which
4302 ??? We may want to generalize the interface to
4303 read_integral_parameter to better handle this case
4304 if this case shows up often. */
4306 level
= read_integral_parameter (p
, 0, max_debug_level
+ 1);
4310 if (da_len
> 1 && *p
&& !strncmp (arg
, "dwarf", da_len
))
4312 error ("use -gdwarf -g%d for DWARF v1, level %d",
4315 error ("use -gdwarf-2 for DWARF v2");
4318 if (level
> max_debug_level
)
4321 ignoring option `%s' due to invalid debug level specification",
4323 level
= debug_info_level
;
4326 if (type
== NO_DEBUG
)
4328 type
= PREFERRED_DEBUGGING_TYPE
;
4330 if (da_len
> 1 && strncmp (arg
, "gdb", da_len
) == 0)
4332 #if defined (DWARF2_DEBUGGING_INFO) && !defined (LINKER_DOES_NOT_WORK_WITH_DWARF2)
4333 type
= DWARF2_DEBUG
;
4335 #ifdef DBX_DEBUGGING_INFO
4342 if (type
== NO_DEBUG
)
4343 warning ("`%s': unknown or unsupported -g option", arg
- 2);
4345 /* Does it conflict with an already selected type? */
4346 if (type_explicitly_set_p
4347 /* -g/-ggdb don't conflict with anything. */
4348 && da
->debug_type
!= NO_DEBUG
4349 && type
!= selected_debug_type
)
4350 warning ("`%s' ignored, conflicts with `-g%s'",
4351 arg
- 2, debug_type_names
[(int) selected_debug_type
]);
4354 /* If the format has already been set, -g/-ggdb
4355 only change the debug level. */
4356 if (type_explicitly_set_p
&& da
->debug_type
== NO_DEBUG
)
4357 /* Don't change debugging type. */
4361 selected_debug_type
= type
;
4362 type_explicitly_set_p
= da
->debug_type
!= NO_DEBUG
;
4365 write_symbols
= (level
== 0
4367 : selected_debug_type
);
4368 use_gnu_debug_info_extensions
= da
->use_extensions_p
;
4369 debug_info_level
= (enum debug_info_level
) level
;
4382 /* Decode the first argument in the argv as a language-independent option.
4383 Return the number of strings consumed. */
4386 independent_decode_option (argc
, argv
)
4390 char *arg
= argv
[0];
4392 if (arg
[0] != '-' || arg
[1] == 0)
4404 if (!strcmp (arg
, "-help"))
4407 exit_after_options
= 1;
4410 if (!strcmp (arg
, "-target-help"))
4412 display_target_options ();
4413 exit_after_options
= 1;
4416 if (!strcmp (arg
, "-version"))
4418 print_version (stderr
, "");
4419 exit_after_options
= 1;
4422 /* Handle '--param <name>=<value>'. */
4423 if (strcmp (arg
, "-param") == 0)
4429 error ("-param option missing argument");
4433 /* Get the '<name>=<value>' parameter. */
4435 /* Look for the `='. */
4436 equal
= strchr (arg
, '=');
4438 error ("invalid --param option: %s", arg
);
4443 /* Zero out the `=' sign so that we get two separate strings. */
4445 /* Figure out what value is specified. */
4446 val
= read_integral_parameter (equal
+ 1, NULL
, INVALID_PARAM_VAL
);
4447 if (val
!= INVALID_PARAM_VAL
)
4448 set_param_value (arg
, val
);
4450 error ("invalid parameter value `%s'", equal
+ 1);
4465 /* Already been treated in main (). Do nothing. */
4469 set_target_switch (arg
+ 1);
4473 return decode_f_option (arg
+ 1);
4476 return decode_g_option (arg
+ 1);
4479 if (!strcmp (arg
, "dumpbase"))
4484 dump_base_name
= argv
[1];
4488 decode_d_option (arg
+ 1);
4492 if (!strcmp (arg
, "pedantic"))
4494 else if (!strcmp (arg
, "pedantic-errors"))
4495 flag_pedantic_errors
= pedantic
= 1;
4496 else if (arg
[1] == 0)
4503 if (!strcmp (arg
, "quiet"))
4510 if (!strcmp (arg
, "version"))
4518 inhibit_warnings
= 1;
4527 /* We save the value of warn_uninitialized, since if they put
4528 -Wuninitialized on the command line, we need to generate a
4529 warning about not using it without also specifying -O. */
4530 if (warn_uninitialized
!= 1)
4531 warn_uninitialized
= 2;
4534 return decode_W_option (arg
+ 1);
4540 #if !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4541 warning ("`-a' option (basic block profile) not supported");
4543 profile_block_flag
= (profile_block_flag
< 2) ? 1 : 3;
4546 else if (!strcmp (arg
, "ax"))
4548 #if !defined (FUNCTION_BLOCK_PROFILER_EXIT) || !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4549 warning ("`-ax' option (jump profiling) not supported");
4551 profile_block_flag
= (!profile_block_flag
4552 || profile_block_flag
== 2) ? 2 : 3;
4555 else if (!strncmp (arg
, "aux-info", 8))
4562 aux_info_file_name
= argv
[1];
4563 flag_gen_aux_info
= 1;
4566 else if (arg
[8] == '=')
4568 aux_info_file_name
= arg
+ 9;
4569 flag_gen_aux_info
= 1;
4584 asm_file_name
= argv
[1];
4599 g_switch_val
= read_integral_parameter (argv
[1], 0, -1);
4604 g_switch_val
= read_integral_parameter (arg
+ 1, 0, -1);
4608 if (g_switch_val
== -1)
4612 g_switch_set
= TRUE
;
4613 g_switch_value
= g_switch_val
;
4623 /* Entry point of cc1/c++. Decode command args, then call compile_file.
4624 Exit code is 35 if can't open files, 34 if fatal error,
4625 33 if had nonfatal errors, else success. */
4627 extern int main
PARAMS ((int, char **));
4637 /* save in case md file wants to emit args as a comment. */
4641 p
= argv
[0] + strlen (argv
[0]);
4642 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
4646 xmalloc_set_program_name (progname
);
4648 /* LC_CTYPE determines the character set used by the terminal so it has be set
4649 to output messages correctly. */
4651 #ifdef HAVE_LC_MESSAGES
4652 setlocale (LC_CTYPE
, "");
4653 setlocale (LC_MESSAGES
, "");
4655 setlocale (LC_ALL
, "");
4658 (void) bindtextdomain (PACKAGE
, localedir
);
4659 (void) textdomain (PACKAGE
);
4661 /* Install handler for SIGFPE, which may be received while we do
4662 compile-time floating point arithmetic. */
4663 signal (SIGFPE
, float_signal
);
4665 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
4667 signal (SIGSEGV
, crash_signal
);
4670 signal (SIGILL
, crash_signal
);
4673 signal (SIGBUS
, crash_signal
);
4676 signal (SIGABRT
, crash_signal
);
4678 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
4679 signal (SIGIOT
, crash_signal
);
4682 decl_printable_name
= decl_name
;
4683 lang_expand_expr
= (lang_expand_expr_t
) do_abort
;
4685 /* Initialize whether `char' is signed. */
4686 flag_signed_char
= DEFAULT_SIGNED_CHAR
;
4687 #ifdef DEFAULT_SHORT_ENUMS
4688 /* Initialize how much space enums occupy, by default. */
4689 flag_short_enums
= DEFAULT_SHORT_ENUMS
;
4692 /* Initialize the garbage-collector. */
4695 ggc_add_rtx_root (&stack_limit_rtx
, 1);
4696 ggc_add_tree_root (¤t_function_decl
, 1);
4697 ggc_add_tree_root (¤t_function_func_begin_label
, 1);
4699 /* Initialize the diagnostics reporting machinery. */
4700 initialize_diagnostics ();
4702 /* Register the language-independent parameters. */
4703 add_params (lang_independent_params
, LAST_PARAM
);
4705 /* Perform language-specific options intialization. */
4706 if (lang_hooks
.init_options
)
4707 (*lang_hooks
.init_options
) ();
4709 /* Scan to see what optimization level has been specified. That will
4710 determine the default value of many flags. */
4711 for (i
= 1; i
< argc
; i
++)
4713 if (!strcmp (argv
[i
], "-O"))
4718 else if (argv
[i
][0] == '-' && argv
[i
][1] == 'O')
4720 /* Handle -Os, -O2, -O3, -O69, ... */
4721 char *p
= &argv
[i
][2];
4723 if ((p
[0] == 's') && (p
[1] == 0))
4727 /* Optimizing for size forces optimize to be 2. */
4732 const int optimize_val
= read_integral_parameter (p
, p
- 2, -1);
4733 if (optimize_val
!= -1)
4735 optimize
= optimize_val
;
4745 flag_thread_jumps
= 1;
4747 flag_delayed_branch
= 1;
4749 #ifdef CAN_DEBUG_WITHOUT_FP
4750 flag_omit_frame_pointer
= 1;
4752 flag_guess_branch_prob
= 1;
4757 flag_optimize_sibling_calls
= 1;
4758 flag_cse_follow_jumps
= 1;
4759 flag_cse_skip_blocks
= 1;
4761 flag_expensive_optimizations
= 1;
4762 flag_strength_reduce
= 1;
4763 flag_rerun_cse_after_loop
= 1;
4764 flag_rerun_loop_opt
= 1;
4765 flag_caller_saves
= 1;
4768 #ifdef INSN_SCHEDULING
4769 flag_schedule_insns
= 1;
4770 flag_schedule_insns_after_reload
= 1;
4773 flag_strict_aliasing
= 1;
4774 flag_delete_null_pointer_checks
= 1;
4775 flag_reorder_blocks
= 1;
4780 flag_inline_functions
= 1;
4781 flag_rename_registers
= 1;
4784 if (optimize
< 2 || optimize_size
)
4789 align_functions
= 1;
4792 /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
4795 set_target_switch ("");
4797 /* Unwind tables are always present in an ABI-conformant IA-64
4798 object file, so the default should be ON. */
4799 #ifdef IA64_UNWIND_INFO
4800 flag_unwind_tables
= IA64_UNWIND_INFO
;
4803 #ifdef OPTIMIZATION_OPTIONS
4804 /* Allow default optimizations to be specified on a per-machine basis. */
4805 OPTIMIZATION_OPTIONS (optimize
, optimize_size
);
4808 /* Initialize register usage now so switches may override. */
4811 /* Perform normal command line switch decoding. */
4812 for (i
= 1; i
< argc
;)
4815 int indep_processed
;
4817 /* Give the language a chance to decode the option for itself. */
4818 lang_processed
= (*lang_hooks
.decode_option
) (argc
- i
, argv
+ i
);
4820 if (lang_processed
>= 0)
4821 /* Now see if the option also has a language independent meaning.
4822 Some options are both language specific and language independent,
4824 indep_processed
= independent_decode_option (argc
- i
, argv
+ i
);
4827 lang_processed
= -lang_processed
;
4828 indep_processed
= 0;
4831 if (lang_processed
|| indep_processed
)
4832 i
+= MAX (lang_processed
, indep_processed
);
4835 const char *option
= NULL
;
4836 const char *lang
= NULL
;
4839 /* It is possible that the command line switch is not valid for the
4840 current language, but it is valid for another language. In order
4841 to be compatible with previous versions of the compiler (which
4842 did not issue an error message in this case) we check for this
4843 possibility here. If we do find a match, then if extra_warnings
4844 is set we generate a warning message, otherwise we will just
4845 ignore the option. */
4846 for (j
= 0; j
< ARRAY_SIZE (documented_lang_options
); j
++)
4848 option
= documented_lang_options
[j
].option
;
4851 lang
= documented_lang_options
[j
].description
;
4852 else if (! strncmp (argv
[i
], option
, strlen (option
)))
4856 if (j
!= ARRAY_SIZE (documented_lang_options
))
4860 warning ("Ignoring command line option '%s'", argv
[i
]);
4863 ("(It is valid for %s but not the selected language)",
4867 else if (argv
[i
][0] == '-' && argv
[i
][1] == 'g')
4868 warning ("`%s': unknown or unsupported -g option", &argv
[i
][2]);
4870 error ("Unrecognized option `%s'", argv
[i
]);
4876 /* All command line options have been processed. */
4877 if (lang_hooks
.post_options
)
4878 (*lang_hooks
.post_options
) ();
4880 if (exit_after_options
)
4883 /* Reflect any language-specific diagnostic option setting. */
4884 reshape_diagnostic_buffer ();
4886 /* Checker uses the frame pointer. */
4887 if (flag_check_memory_usage
)
4888 flag_omit_frame_pointer
= 0;
4892 /* Inlining does not work if not optimizing,
4893 so force it not to be done. */
4897 /* The c_decode_option function and decode_option hook set
4898 this to `2' if -Wall is used, so we can avoid giving out
4899 lots of errors for people who don't realize what -Wall does. */
4900 if (warn_uninitialized
== 1)
4901 warning ("-Wuninitialized is not supported without -O");
4904 /* We do not currently support sibling-call optimization in the
4905 presence of exceptions. See PR2975 for a test-case that will
4906 fail if we try to combine both of these features. */
4907 if (flag_exceptions
)
4908 flag_optimize_sibling_calls
= 0;
4910 #ifdef OVERRIDE_OPTIONS
4911 /* Some machines may reject certain combinations of options. */
4915 /* Set up the align_*_log variables, defaulting them to 1 if they
4916 were still unset. */
4917 if (align_loops
<= 0) align_loops
= 1;
4918 align_loops_log
= floor_log2 (align_loops
* 2 - 1);
4919 if (align_jumps
<= 0) align_jumps
= 1;
4920 align_jumps_log
= floor_log2 (align_jumps
* 2 - 1);
4921 if (align_labels
<= 0) align_labels
= 1;
4922 align_labels_log
= floor_log2 (align_labels
* 2 - 1);
4923 if (align_functions
<= 0) align_functions
= 1;
4924 align_functions_log
= floor_log2 (align_functions
* 2 - 1);
4926 if (profile_block_flag
== 3)
4928 warning ("`-ax' and `-a' are conflicting options. `-a' ignored.");
4929 profile_block_flag
= 2;
4932 /* Unrolling all loops implies that standard loop unrolling must also
4934 if (flag_unroll_all_loops
)
4935 flag_unroll_loops
= 1;
4936 /* Loop unrolling requires that strength_reduction be on also. Silently
4937 turn on strength reduction here if it isn't already on. Also, the loop
4938 unrolling code assumes that cse will be run after loop, so that must
4939 be turned on also. */
4940 if (flag_unroll_loops
)
4942 flag_strength_reduce
= 1;
4943 flag_rerun_cse_after_loop
= 1;
4946 /* Warn about options that are not supported on this machine. */
4947 #ifndef INSN_SCHEDULING
4948 if (flag_schedule_insns
|| flag_schedule_insns_after_reload
)
4949 warning ("instruction scheduling not supported on this target machine");
4952 if (flag_delayed_branch
)
4953 warning ("this target machine does not have delayed branches");
4956 /* Some operating systems do not allow profiling without a frame
4958 if (!TARGET_ALLOWS_PROFILING_WITHOUT_FRAME_POINTER
4960 && flag_omit_frame_pointer
)
4962 error ("profiling does not work without a frame pointer");
4963 flag_omit_frame_pointer
= 0;
4966 user_label_prefix
= USER_LABEL_PREFIX
;
4967 if (flag_leading_underscore
!= -1)
4969 /* If the default prefix is more complicated than "" or "_",
4970 issue a warning and ignore this option. */
4971 if (user_label_prefix
[0] == 0 ||
4972 (user_label_prefix
[0] == '_' && user_label_prefix
[1] == 0))
4974 user_label_prefix
= flag_leading_underscore
? "_" : "";
4977 warning ("-f%sleading-underscore not supported on this target machine",
4978 flag_leading_underscore
? "" : "no-");
4981 /* If we are in verbose mode, write out the version and maybe all the
4982 option flags in use. */
4985 print_version (stderr
, "");
4987 print_switch_values (stderr
, 0, MAX_LINE
, "", " ", "\n");
4990 compile_file (filename
);
4992 #if !defined(OS2) && !defined(VMS) && (!defined(_WIN32) || defined (__CYGWIN__)) && !defined(__INTERIX)
4995 char *lim
= (char *) sbrk (0);
4997 fnotice (stderr
, "Data size %ld.\n", (long) (lim
- (char *) &environ
));
5002 system ("ps -l 1>&2");
5005 #endif /* not USG */
5008 #endif /* ! OS2 && ! VMS && (! _WIN32 || CYGWIN) && ! __INTERIX */
5011 return (FATAL_EXIT_CODE
);
5013 return (FATAL_EXIT_CODE
);
5014 return (SUCCESS_EXIT_CODE
);
5017 /* Decode -m switches. */
5018 /* Decode the switch -mNAME. */
5021 set_target_switch (name
)
5025 int valid_target_option
= 0;
5027 for (j
= 0; j
< ARRAY_SIZE (target_switches
); j
++)
5028 if (!strcmp (target_switches
[j
].name
, name
))
5030 if (target_switches
[j
].value
< 0)
5031 target_flags
&= ~-target_switches
[j
].value
;
5033 target_flags
|= target_switches
[j
].value
;
5034 valid_target_option
= 1;
5037 #ifdef TARGET_OPTIONS
5038 if (!valid_target_option
)
5039 for (j
= 0; j
< ARRAY_SIZE (target_options
); j
++)
5041 int len
= strlen (target_options
[j
].prefix
);
5042 if (!strncmp (target_options
[j
].prefix
, name
, len
))
5044 *target_options
[j
].variable
= name
+ len
;
5045 valid_target_option
= 1;
5050 if (!valid_target_option
)
5051 error ("Invalid option `%s'", name
);
5054 /* Print version information to FILE.
5055 Each line begins with INDENT (for the case where FILE is the
5056 assembler output file). */
5059 print_version (file
, indent
)
5064 #define __VERSION__ "[?]"
5068 "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
5070 "%s%s%s version %s (%s) compiled by CC.\n"
5072 , indent
, *indent
!= 0 ? " " : "",
5073 language_string
, version_string
, TARGET_NAME
,
5074 indent
, __VERSION__
);
5077 /* Print an option value and return the adjusted position in the line.
5078 ??? We don't handle error returns from fprintf (disk full); presumably
5079 other code will catch a disk full though. */
5082 print_single_switch (file
, pos
, max
, indent
, sep
, term
, type
, name
)
5085 const char *indent
, *sep
, *term
, *type
, *name
;
5087 /* The ultrix fprintf returns 0 on success, so compute the result we want
5088 here since we need it for the following test. */
5089 int len
= strlen (sep
) + strlen (type
) + strlen (name
);
5094 fprintf (file
, "%s", term
);
5099 fprintf (file
, "%s", indent
);
5100 pos
= strlen (indent
);
5102 fprintf (file
, "%s%s%s", sep
, type
, name
);
5107 /* Print active target switches to FILE.
5108 POS is the current cursor position and MAX is the size of a "line".
5109 Each line begins with INDENT and ends with TERM.
5110 Each switch is separated from the next by SEP. */
5113 print_switch_values (file
, pos
, max
, indent
, sep
, term
)
5116 const char *indent
, *sep
, *term
;
5121 /* Print the options as passed. */
5123 pos
= print_single_switch (file
, pos
, max
, indent
, *indent
? " " : "", term
,
5124 _("options passed: "), "");
5126 for (p
= &save_argv
[1]; *p
!= NULL
; p
++)
5130 if (strcmp (*p
, "-o") == 0)
5136 if (strcmp (*p
, "-quiet") == 0)
5138 if (strcmp (*p
, "-version") == 0)
5143 pos
= print_single_switch (file
, pos
, max
, indent
, sep
, term
, *p
, "");
5146 fprintf (file
, "%s", term
);
5148 /* Print the -f and -m options that have been enabled.
5149 We don't handle language specific options but printing argv
5152 pos
= print_single_switch (file
, 0, max
, indent
, *indent
? " " : "", term
,
5153 _("options enabled: "), "");
5155 for (j
= 0; j
< ARRAY_SIZE (f_options
); j
++)
5156 if (*f_options
[j
].variable
== f_options
[j
].on_value
)
5157 pos
= print_single_switch (file
, pos
, max
, indent
, sep
, term
,
5158 "-f", f_options
[j
].string
);
5160 /* Print target specific options. */
5162 for (j
= 0; j
< ARRAY_SIZE (target_switches
); j
++)
5163 if (target_switches
[j
].name
[0] != '\0'
5164 && target_switches
[j
].value
> 0
5165 && ((target_switches
[j
].value
& target_flags
)
5166 == target_switches
[j
].value
))
5168 pos
= print_single_switch (file
, pos
, max
, indent
, sep
, term
,
5169 "-m", target_switches
[j
].name
);
5172 #ifdef TARGET_OPTIONS
5173 for (j
= 0; j
< ARRAY_SIZE (target_options
); j
++)
5174 if (*target_options
[j
].variable
!= NULL
)
5177 sprintf (prefix
, "-m%s", target_options
[j
].prefix
);
5178 pos
= print_single_switch (file
, pos
, max
, indent
, sep
, term
,
5179 prefix
, *target_options
[j
].variable
);
5183 fprintf (file
, "%s", term
);
5186 /* Record the beginning of a new source file, named FILENAME. */
5189 debug_start_source_file (filename
)
5190 register const char *filename ATTRIBUTE_UNUSED
;
5192 #ifdef DBX_DEBUGGING_INFO
5193 if (write_symbols
== DBX_DEBUG
)
5194 dbxout_start_new_source_file (filename
);
5196 #ifdef DWARF_DEBUGGING_INFO
5197 if (debug_info_level
== DINFO_LEVEL_VERBOSE
5198 && write_symbols
== DWARF_DEBUG
)
5199 dwarfout_start_new_source_file (filename
);
5200 #endif /* DWARF_DEBUGGING_INFO */
5201 #ifdef DWARF2_DEBUGGING_INFO
5202 if (write_symbols
== DWARF2_DEBUG
)
5203 dwarf2out_start_source_file (filename
);
5204 #endif /* DWARF2_DEBUGGING_INFO */
5205 #ifdef SDB_DEBUGGING_INFO
5206 if (write_symbols
== SDB_DEBUG
)
5207 sdbout_start_new_source_file (filename
);
5211 /* Record the resumption of a source file. LINENO is the line number in
5212 the source file we are returning to. */
5215 debug_end_source_file (lineno
)
5216 register unsigned lineno ATTRIBUTE_UNUSED
;
5218 #ifdef DBX_DEBUGGING_INFO
5219 if (write_symbols
== DBX_DEBUG
)
5220 dbxout_resume_previous_source_file ();
5222 #ifdef DWARF_DEBUGGING_INFO
5223 if (debug_info_level
== DINFO_LEVEL_VERBOSE
5224 && write_symbols
== DWARF_DEBUG
)
5225 dwarfout_resume_previous_source_file (lineno
);
5226 #endif /* DWARF_DEBUGGING_INFO */
5227 #ifdef DWARF2_DEBUGGING_INFO
5228 if (write_symbols
== DWARF2_DEBUG
)
5229 dwarf2out_end_source_file ();
5230 #endif /* DWARF2_DEBUGGING_INFO */
5231 #ifdef SDB_DEBUGGING_INFO
5232 if (write_symbols
== SDB_DEBUG
)
5233 sdbout_resume_previous_source_file ();
5237 /* Called from cb_define in c-lex.c. The `buffer' parameter contains
5238 the tail part of the directive line, i.e. the part which is past the
5239 initial whitespace, #, whitespace, directive-name, whitespace part. */
5242 debug_define (lineno
, buffer
)
5243 register unsigned lineno ATTRIBUTE_UNUSED
;
5244 register const char *buffer ATTRIBUTE_UNUSED
;
5246 #ifdef DWARF_DEBUGGING_INFO
5247 if (write_symbols
== DWARF_DEBUG
)
5248 dwarfout_define (lineno
, buffer
);
5249 #endif /* DWARF_DEBUGGING_INFO */
5250 #ifdef DWARF2_DEBUGGING_INFO
5251 if (write_symbols
== DWARF2_DEBUG
)
5252 dwarf2out_define (lineno
, buffer
);
5253 #endif /* DWARF2_DEBUGGING_INFO */
5256 /* Called from cb_undef in c-lex.c. The `buffer' parameter contains
5257 the tail part of the directive line, i.e. the part which is past the
5258 initial whitespace, #, whitespace, directive-name, whitespace part. */
5261 debug_undef (lineno
, buffer
)
5262 register unsigned lineno ATTRIBUTE_UNUSED
;
5263 register const char *buffer ATTRIBUTE_UNUSED
;
5265 #ifdef DWARF_DEBUGGING_INFO
5266 if (write_symbols
== DWARF_DEBUG
)
5267 dwarfout_undef (lineno
, buffer
);
5268 #endif /* DWARF_DEBUGGING_INFO */
5269 #ifdef DWARF2_DEBUGGING_INFO
5270 if (write_symbols
== DWARF2_DEBUG
)
5271 dwarf2out_undef (lineno
, buffer
);
5272 #endif /* DWARF2_DEBUGGING_INFO */
5275 /* Returns nonzero if it is appropriate not to emit any debugging
5276 information for BLOCK, because it doesn't contain any instructions.
5277 This may not be the case for blocks containing nested functions, since
5278 we may actually call such a function even though the BLOCK information
5282 debug_ignore_block (block
)
5283 tree block ATTRIBUTE_UNUSED
;
5285 /* Never delete the BLOCK for the outermost scope
5286 of the function; we can refer to names from
5287 that scope even if the block notes are messed up. */
5288 if (is_body_block (block
))
5291 #ifdef DWARF2_DEBUGGING_INFO
5292 if (write_symbols
== DWARF2_DEBUG
)
5293 return dwarf2out_ignore_block (block
);