* print-rtl.c (xspaces): Remove.
[official-gcc.git] / gcc / toplev.c
blob604caf249764f61eb9ae18011e9bddf5737da495
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)
10 any later version.
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. */
27 #include "config.h"
28 #undef FLOAT /* This is for hpux. They should change hpux. */
29 #undef FFS /* Some systems define this in param.h. */
30 #include "system.h"
31 #include <signal.h>
32 #include <setjmp.h>
34 #ifdef HAVE_SYS_RESOURCE_H
35 # include <sys/resource.h>
36 #endif
38 #ifdef HAVE_SYS_TIMES_H
39 # include <sys/times.h>
40 #endif
42 #include "input.h"
43 #include "tree.h"
44 #include "rtl.h"
45 #include "tm_p.h"
46 #include "flags.h"
47 #include "insn-attr.h"
48 #include "insn-config.h"
49 #include "hard-reg-set.h"
50 #include "recog.h"
51 #include "output.h"
52 #include "except.h"
53 #include "function.h"
54 #include "toplev.h"
55 #include "expr.h"
56 #include "basic-block.h"
57 #include "intl.h"
58 #include "ggc.h"
59 #include "graph.h"
60 #include "loop.h"
61 #include "regs.h"
62 #include "timevar.h"
63 #include "diagnostic.h"
64 #include "ssa.h"
65 #include "params.h"
66 #include "dwarf2asm.h"
68 #ifndef ACCUMULATE_OUTGOING_ARGS
69 #define ACCUMULATE_OUTGOING_ARGS 0
70 #endif
72 #ifdef DWARF_DEBUGGING_INFO
73 #include "dwarfout.h"
74 #endif
76 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
77 #include "dwarf2out.h"
78 #endif
80 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
81 #include "dbxout.h"
82 #endif
84 #ifdef SDB_DEBUGGING_INFO
85 #include "sdbout.h"
86 #endif
88 #ifdef XCOFF_DEBUGGING_INFO
89 #include "xcoffout.h"
90 #endif
92 #ifdef VMS
93 /* The extra parameters substantially improve the I/O performance. */
95 static FILE *
96 vms_fopen (fname, type)
97 char *fname;
98 char *type;
100 /* The <stdio.h> in the gcc-vms-1.42 distribution prototypes fopen with two
101 fixed arguments, which matches ANSI's specification but not VAXCRTL's
102 pre-ANSI implementation. This hack circumvents the mismatch problem. */
103 FILE *(*vmslib_fopen)() = (FILE *(*)()) fopen;
105 if (*type == 'w')
106 return (*vmslib_fopen) (fname, type, "mbc=32",
107 "deq=64", "fop=tef", "shr=nil");
108 else
109 return (*vmslib_fopen) (fname, type, "mbc=32");
112 #define fopen vms_fopen
113 #endif /* VMS */
115 #ifndef DEFAULT_GDB_EXTENSIONS
116 #define DEFAULT_GDB_EXTENSIONS 1
117 #endif
119 /* If more than one debugging type is supported, you must define
120 PREFERRED_DEBUGGING_TYPE to choose a format in a system-dependent way.
122 This is one long line cause VAXC can't handle a \-newline. */
123 #if 1 < (defined (DBX_DEBUGGING_INFO) + defined (SDB_DEBUGGING_INFO) + defined (DWARF_DEBUGGING_INFO) + defined (DWARF2_DEBUGGING_INFO) + defined (XCOFF_DEBUGGING_INFO))
124 #ifndef PREFERRED_DEBUGGING_TYPE
125 You Lose! You must define PREFERRED_DEBUGGING_TYPE!
126 #endif /* no PREFERRED_DEBUGGING_TYPE */
127 #else /* Only one debugging format supported. Define PREFERRED_DEBUGGING_TYPE
128 so the following code needn't care. */
129 #ifdef DBX_DEBUGGING_INFO
130 #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
131 #endif
132 #ifdef SDB_DEBUGGING_INFO
133 #define PREFERRED_DEBUGGING_TYPE SDB_DEBUG
134 #endif
135 #ifdef DWARF_DEBUGGING_INFO
136 #define PREFERRED_DEBUGGING_TYPE DWARF_DEBUG
137 #endif
138 #ifdef DWARF2_DEBUGGING_INFO
139 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
140 #endif
141 #ifdef XCOFF_DEBUGGING_INFO
142 #define PREFERRED_DEBUGGING_TYPE XCOFF_DEBUG
143 #endif
144 #endif /* More than one debugger format enabled. */
146 /* If still not defined, must have been because no debugging formats
147 are supported. */
148 #ifndef PREFERRED_DEBUGGING_TYPE
149 #define PREFERRED_DEBUGGING_TYPE NO_DEBUG
150 #endif
152 #if defined (HAVE_DECL_ENVIRON) && !HAVE_DECL_ENVIRON
153 extern char **environ;
154 #endif
156 /* Carry information from ASM_DECLARE_OBJECT_NAME
157 to ASM_FINISH_DECLARE_OBJECT. */
159 extern int size_directive_output;
160 extern tree last_assemble_variable_decl;
162 static void set_target_switch PARAMS ((const char *));
163 static const char *decl_name PARAMS ((tree, int));
165 static void float_signal PARAMS ((int)) ATTRIBUTE_NORETURN;
166 static void crash_signal PARAMS ((int)) ATTRIBUTE_NORETURN;
167 static void compile_file PARAMS ((const char *));
168 static void display_help PARAMS ((void));
169 static void display_target_options PARAMS ((void));
171 static void decode_d_option PARAMS ((const char *));
172 static int decode_f_option PARAMS ((const char *));
173 static int decode_W_option PARAMS ((const char *));
174 static int decode_g_option PARAMS ((const char *));
175 static unsigned int independent_decode_option PARAMS ((int, char **));
177 static void print_version PARAMS ((FILE *, const char *));
178 static int print_single_switch PARAMS ((FILE *, int, int, const char *,
179 const char *, const char *,
180 const char *, const char *));
181 static void print_switch_values PARAMS ((FILE *, int, int, const char *,
182 const char *, const char *));
184 /* Length of line when printing switch values. */
185 #define MAX_LINE 75
187 /* Name of program invoked, sans directories. */
189 const char *progname;
191 /* Copy of arguments to main. */
192 int save_argc;
193 char **save_argv;
195 /* Name of current original source file (what was input to cpp).
196 This comes from each #-command in the actual input. */
198 const char *input_filename;
200 /* Name of top-level original source file (what was input to cpp).
201 This comes from the #-command at the beginning of the actual input.
202 If there isn't any there, then this is the cc1 input file name. */
204 const char *main_input_filename;
206 /* Current line number in real source file. */
208 int lineno;
210 /* Nonzero if it is unsafe to create any new pseudo registers. */
211 int no_new_pseudos;
213 /* Stack of currently pending input files. */
215 struct file_stack *input_file_stack;
217 /* Incremented on each change to input_file_stack. */
218 int input_file_stack_tick;
220 /* Name to use as base of names for dump output files. */
222 const char *dump_base_name;
224 /* Bit flags that specify the machine subtype we are compiling for.
225 Bits are tested using macros TARGET_... defined in the tm.h file
226 and set by `-m...' switches. Must be defined in rtlanal.c. */
228 extern int target_flags;
230 /* Describes a dump file. */
232 struct dump_file_info
234 /* The unique extension to apply, e.g. ".jump". */
235 const char *const extension;
237 /* The -d<c> character that enables this dump file. */
238 char const debug_switch;
240 /* True if there is a corresponding graph dump file. */
241 char const graph_dump_p;
243 /* True if the user selected this dump. */
244 char enabled;
246 /* True if the files have been initialized (ie truncated). */
247 char initialized;
250 /* Enumerate the extant dump files. */
252 enum dump_file_index
254 DFI_rtl,
255 DFI_sibling,
256 DFI_eh,
257 DFI_jump,
258 DFI_cse,
259 DFI_addressof,
260 DFI_ssa,
261 DFI_dce,
262 DFI_ussa,
263 DFI_gcse,
264 DFI_loop,
265 DFI_cse2,
266 DFI_cfg,
267 DFI_bp,
268 DFI_life,
269 DFI_combine,
270 DFI_ce,
271 DFI_regmove,
272 DFI_sched,
273 DFI_lreg,
274 DFI_greg,
275 DFI_postreload,
276 DFI_flow2,
277 DFI_peephole2,
278 DFI_rnreg,
279 DFI_ce2,
280 DFI_sched2,
281 DFI_bbro,
282 DFI_jump2,
283 DFI_mach,
284 DFI_dbr,
285 DFI_stack,
286 DFI_MAX
289 /* Describes all the dump files. Should be kept in order of the
290 pass and in sync with dump_file_index above.
292 Remaining -d letters:
294 " o q u "
295 " H K OPQ TUVW YZ"
298 struct dump_file_info dump_file[DFI_MAX] =
300 { "rtl", 'r', 0, 0, 0 },
301 { "sibling", 'i', 0, 0, 0 },
302 { "eh", 'h', 0, 0, 0 },
303 { "jump", 'j', 0, 0, 0 },
304 { "cse", 's', 0, 0, 0 },
305 { "addressof", 'F', 0, 0, 0 },
306 { "ssa", 'e', 1, 0, 0 },
307 { "dce", 'X', 1, 0, 0 },
308 { "ussa", 'e', 1, 0, 0 }, /* Yes, duplicate enable switch. */
309 { "gcse", 'G', 1, 0, 0 },
310 { "loop", 'L', 1, 0, 0 },
311 { "cse2", 't', 1, 0, 0 },
312 { "cfg", 'f', 1, 0, 0 },
313 { "bp", 'b', 1, 0, 0 },
314 { "life", 'f', 1, 0, 0 }, /* Yes, duplicate enable switch. */
315 { "combine", 'c', 1, 0, 0 },
316 { "ce", 'C', 1, 0, 0 },
317 { "regmove", 'N', 1, 0, 0 },
318 { "sched", 'S', 1, 0, 0 },
319 { "lreg", 'l', 1, 0, 0 },
320 { "greg", 'g', 1, 0, 0 },
321 { "postreload", 'o', 1, 0, 0 },
322 { "flow2", 'w', 1, 0, 0 },
323 { "peephole2", 'z', 1, 0, 0 },
324 { "rnreg", 'n', 1, 0, 0 },
325 { "ce2", 'E', 1, 0, 0 },
326 { "sched2", 'R', 1, 0, 0 },
327 { "bbro", 'B', 1, 0, 0 },
328 { "jump2", 'J', 1, 0, 0 },
329 { "mach", 'M', 1, 0, 0 },
330 { "dbr", 'd', 0, 0, 0 },
331 { "stack", 'k', 1, 0, 0 },
334 static int open_dump_file PARAMS ((enum dump_file_index, tree));
335 static void close_dump_file PARAMS ((enum dump_file_index,
336 void (*) (FILE *, rtx), rtx));
338 /* Other flags saying which kinds of debugging dump have been requested. */
340 int rtl_dump_and_exit;
341 int flag_print_asm_name;
342 static int flag_print_mem;
343 static int version_flag;
344 static char *filename;
345 enum graph_dump_types graph_dump_format;
347 /* Name for output file of assembly code, specified with -o. */
349 char *asm_file_name;
351 /* Value of the -G xx switch, and whether it was passed or not. */
352 int g_switch_value;
353 int g_switch_set;
355 /* Type(s) of debugging information we are producing (if any).
356 See flags.h for the definitions of the different possible
357 types of debugging information. */
358 enum debug_info_type write_symbols = NO_DEBUG;
360 /* Level of debugging information we are producing. See flags.h
361 for the definitions of the different possible levels. */
362 enum debug_info_level debug_info_level = DINFO_LEVEL_NONE;
364 /* Nonzero means use GNU-only extensions in the generated symbolic
365 debugging information. */
366 /* Currently, this only has an effect when write_symbols is set to
367 DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG. */
368 int use_gnu_debug_info_extensions = 0;
370 /* Nonzero means do optimizations. -O.
371 Particular numeric values stand for particular amounts of optimization;
372 thus, -O2 stores 2 here. However, the optimizations beyond the basic
373 ones are not controlled directly by this variable. Instead, they are
374 controlled by individual `flag_...' variables that are defaulted
375 based on this variable. */
377 int optimize = 0;
379 /* Nonzero means optimize for size. -Os.
380 The only valid values are zero and non-zero. When optimize_size is
381 non-zero, optimize defaults to 2, but certain individual code
382 bloating optimizations are disabled. */
384 int optimize_size = 0;
386 /* Number of error messages and warning messages so far. */
388 int errorcount = 0;
389 int warningcount = 0;
390 int sorrycount = 0;
392 /* Nonzero if we should exit after parsing options. */
393 static int exit_after_options = 0;
395 /* The FUNCTION_DECL for the function currently being compiled,
396 or 0 if between functions. */
397 tree current_function_decl;
399 /* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
400 if none. */
401 tree current_function_func_begin_label;
403 /* Pointer to function to compute the name to use to print a declaration.
404 DECL is the declaration in question.
405 VERBOSITY determines what information will be printed:
406 0: DECL_NAME, demangled as necessary.
407 1: and scope information.
408 2: and any other information that might be interesting, such as function
409 parameter types in C++. */
411 const char *(*decl_printable_name) PARAMS ((tree, int));
413 /* Pointer to function to compute rtl for a language-specific tree code. */
415 typedef rtx (*lang_expand_expr_t)
416 PARAMS ((union tree_node *, rtx, enum machine_mode,
417 enum expand_modifier modifier));
419 lang_expand_expr_t lang_expand_expr = 0;
421 tree (*lang_expand_constant) PARAMS ((tree)) = 0;
423 /* Pointer to function to finish handling an incomplete decl at the
424 end of compilation. */
426 void (*incomplete_decl_finalize_hook) PARAMS ((tree)) = 0;
428 /* Nonzero if doing dwarf2 duplicate elimination. */
430 int flag_eliminate_dwarf2_dups = 0;
432 /* Nonzero if generating code to do profiling. */
434 int profile_flag = 0;
436 /* Nonzero if generating code to do profiling on a line-by-line basis. */
438 int profile_block_flag;
440 /* Nonzero if generating code to profile program flow graph arcs. */
442 int profile_arc_flag = 0;
444 /* Nonzero if generating info for gcov to calculate line test coverage. */
446 int flag_test_coverage = 0;
448 /* Nonzero indicates that branch taken probabilities should be calculated. */
450 int flag_branch_probabilities = 0;
452 /* Nonzero if basic blocks should be reordered. */
454 int flag_reorder_blocks = 0;
456 /* Nonzero if registers should be renamed. */
458 int flag_rename_registers = 0;
460 /* Nonzero for -pedantic switch: warn about anything
461 that standard spec forbids. */
463 int pedantic = 0;
465 /* Temporarily suppress certain warnings.
466 This is set while reading code from a system header file. */
468 int in_system_header = 0;
470 /* Don't print functions as they are compiled. -quiet. */
472 int quiet_flag = 0;
474 /* Print times taken by the various passes. -ftime-report. */
476 int time_report = 0;
478 /* Print memory still in use at end of compilation (which may have little
479 to do with peak memory consumption). -fmem-report. */
481 int mem_report = 0;
483 /* Non-zero means to collect statistics which might be expensive
484 and to print them when we are done. */
485 int flag_detailed_statistics = 0;
488 /* -f flags. */
490 /* Nonzero means `char' should be signed. */
492 int flag_signed_char;
494 /* Nonzero means give an enum type only as many bytes as it needs. */
496 int flag_short_enums;
498 /* Nonzero for -fcaller-saves: allocate values in regs that need to
499 be saved across function calls, if that produces overall better code.
500 Optional now, so people can test it. */
502 #ifdef DEFAULT_CALLER_SAVES
503 int flag_caller_saves = 1;
504 #else
505 int flag_caller_saves = 0;
506 #endif
508 /* Nonzero if structures and unions should be returned in memory.
510 This should only be defined if compatibility with another compiler or
511 with an ABI is needed, because it results in slower code. */
513 #ifndef DEFAULT_PCC_STRUCT_RETURN
514 #define DEFAULT_PCC_STRUCT_RETURN 1
515 #endif
517 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
519 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
521 /* Nonzero for -fforce-mem: load memory value into a register
522 before arithmetic on it. This makes better cse but slower compilation. */
524 int flag_force_mem = 0;
526 /* Nonzero for -fforce-addr: load memory address into a register before
527 reference to memory. This makes better cse but slower compilation. */
529 int flag_force_addr = 0;
531 /* Nonzero for -fdefer-pop: don't pop args after each function call;
532 instead save them up to pop many calls' args with one insns. */
534 int flag_defer_pop = 0;
536 /* Nonzero for -ffloat-store: don't allocate floats and doubles
537 in extended-precision registers. */
539 int flag_float_store = 0;
541 /* Nonzero for -fcse-follow-jumps:
542 have cse follow jumps to do a more extensive job. */
544 int flag_cse_follow_jumps;
546 /* Nonzero for -fcse-skip-blocks:
547 have cse follow a branch around a block. */
548 int flag_cse_skip_blocks;
550 /* Nonzero for -fexpensive-optimizations:
551 perform miscellaneous relatively-expensive optimizations. */
552 int flag_expensive_optimizations;
554 /* Nonzero for -fthread-jumps:
555 have jump optimize output of loop. */
557 int flag_thread_jumps;
559 /* Nonzero enables strength-reduction in loop.c. */
561 int flag_strength_reduce = 0;
563 /* Nonzero enables loop unrolling in unroll.c. Only loops for which the
564 number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
565 UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
566 unrolled. */
568 int flag_unroll_loops;
570 /* Nonzero enables loop unrolling in unroll.c. All loops are unrolled.
571 This is generally not a win. */
573 int flag_unroll_all_loops;
575 /* Nonzero forces all invariant computations in loops to be moved
576 outside the loop. */
578 int flag_move_all_movables = 0;
580 /* Nonzero forces all general induction variables in loops to be
581 strength reduced. */
583 int flag_reduce_all_givs = 0;
585 /* Nonzero to perform full register move optimization passes. This is the
586 default for -O2. */
588 int flag_regmove = 0;
590 /* Nonzero for -fwritable-strings:
591 store string constants in data segment and don't uniquize them. */
593 int flag_writable_strings = 0;
595 /* Nonzero means don't put addresses of constant functions in registers.
596 Used for compiling the Unix kernel, where strange substitutions are
597 done on the assembly output. */
599 int flag_no_function_cse = 0;
601 /* Nonzero for -fomit-frame-pointer:
602 don't make a frame pointer in simple functions that don't require one. */
604 int flag_omit_frame_pointer = 0;
606 /* Nonzero means place each function into its own section on those platforms
607 which support arbitrary section names and unlimited numbers of sections. */
609 int flag_function_sections = 0;
611 /* ... and similar for data. */
613 int flag_data_sections = 0;
615 /* Nonzero to inhibit use of define_optimization peephole opts. */
617 int flag_no_peephole = 0;
619 /* Nonzero allows GCC to violate some IEEE or ANSI rules regarding math
620 operations in the interest of optimization. For example it allows
621 GCC to assume arguments to sqrt are nonnegative numbers, allowing
622 faster code for sqrt to be generated. */
624 int flag_fast_math = 0;
626 /* Nonzero allows GCC to optimize sibling and tail recursive calls. */
628 int flag_optimize_sibling_calls = 0;
630 /* Nonzero means the front end generally wants `errno' maintained by math
631 operations, like built-in SQRT, unless overridden by flag_fast_math. */
633 int flag_errno_math = 1;
635 /* 0 means straightforward implementation of complex divide acceptable.
636 1 means wide ranges of inputs must work for complex divide.
637 2 means C99-like requirements for complex divide (not yet implemented). */
639 int flag_complex_divide_method = 0;
641 /* Nonzero means all references through pointers are volatile. */
643 int flag_volatile;
645 /* Nonzero means treat all global and extern variables as volatile. */
647 int flag_volatile_global;
649 /* Nonzero means treat all static variables as volatile. */
651 int flag_volatile_static;
653 /* Nonzero means just do syntax checking; don't output anything. */
655 int flag_syntax_only = 0;
657 /* Nonzero means perform global cse. */
659 static int flag_gcse;
661 /* Nonzero means to use global dataflow analysis to eliminate
662 useless null pointer tests. */
664 static int flag_delete_null_pointer_checks;
666 /* Nonzero means to rerun cse after loop optimization. This increases
667 compilation time about 20% and picks up a few more common expressions. */
669 static int flag_rerun_cse_after_loop;
671 /* Nonzero means to run loop optimizations twice. */
673 int flag_rerun_loop_opt;
675 /* Nonzero for -finline-functions: ok to inline functions that look like
676 good inline candidates. */
678 int flag_inline_functions;
680 /* Nonzero for -fkeep-inline-functions: even if we make a function
681 go inline everywhere, keep its definition around for debugging
682 purposes. */
684 int flag_keep_inline_functions;
686 /* Nonzero means that functions will not be inlined. */
688 int flag_no_inline;
690 /* Nonzero means that we should emit static const variables
691 regardless of whether or not optimization is turned on. */
693 int flag_keep_static_consts = 1;
695 /* Nonzero means we should be saving declaration info into a .X file. */
697 int flag_gen_aux_info = 0;
699 /* Specified name of aux-info file. */
701 static char *aux_info_file_name;
703 /* Nonzero means make the text shared if supported. */
705 int flag_shared_data;
707 /* Nonzero means schedule into delayed branch slots if supported. */
709 int flag_delayed_branch;
711 /* Nonzero if we are compiling pure (sharable) code.
712 Value is 1 if we are doing reasonable (i.e. simple
713 offset into offset table) pic. Value is 2 if we can
714 only perform register offsets. */
716 int flag_pic;
718 /* Nonzero means generate extra code for exception handling and enable
719 exception handling. */
721 int flag_exceptions;
723 /* Nonzero means generate frame unwind info table when supported. */
725 int flag_unwind_tables = 0;
727 /* Nonzero means don't place uninitialized global data in common storage
728 by default. */
730 int flag_no_common;
732 /* Nonzero means pretend it is OK to examine bits of target floats,
733 even if that isn't true. The resulting code will have incorrect constants,
734 but the same series of instructions that the native compiler would make. */
736 int flag_pretend_float;
738 /* Nonzero means change certain warnings into errors.
739 Usually these are warnings about failure to conform to some standard. */
741 int flag_pedantic_errors = 0;
743 /* flag_schedule_insns means schedule insns within basic blocks (before
744 local_alloc).
745 flag_schedule_insns_after_reload means schedule insns after
746 global_alloc. */
748 int flag_schedule_insns = 0;
749 int flag_schedule_insns_after_reload = 0;
751 /* The following flags have effect only for scheduling before register
752 allocation:
754 flag_schedule_interblock means schedule insns accross basic blocks.
755 flag_schedule_speculative means allow speculative motion of non-load insns.
756 flag_schedule_speculative_load means allow speculative motion of some
757 load insns.
758 flag_schedule_speculative_load_dangerous allows speculative motion of more
759 load insns. */
761 int flag_schedule_interblock = 1;
762 int flag_schedule_speculative = 1;
763 int flag_schedule_speculative_load = 0;
764 int flag_schedule_speculative_load_dangerous = 0;
766 int flag_single_precision_constant;
768 /* flag_branch_on_count_reg means try to replace add-1,compare,branch tupple
769 by a cheaper branch on a count register. */
770 int flag_branch_on_count_reg = 1;
772 /* -finhibit-size-directive inhibits output of .size for ELF.
773 This is used only for compiling crtstuff.c,
774 and it may be extended to other effects
775 needed for crtstuff.c on other systems. */
776 int flag_inhibit_size_directive = 0;
778 /* -fverbose-asm causes extra commentary information to be produced in
779 the generated assembly code (to make it more readable). This option
780 is generally only of use to those who actually need to read the
781 generated assembly code (perhaps while debugging the compiler itself).
782 -fno-verbose-asm, the default, causes the extra information
783 to be omitted and is useful when comparing two assembler files. */
785 int flag_verbose_asm = 0;
787 /* -dA causes debug commentary information to be produced in
788 the generated assembly code (to make it more readable). This option
789 is generally only of use to those who actually need to read the
790 generated assembly code (perhaps while debugging the compiler itself).
791 Currently, this switch is only used by dwarfout.c; however, it is intended
792 to be a catchall for printing debug information in the assembler file. */
794 int flag_debug_asm = 0;
796 /* -dP causes the rtl to be emitted as a comment in assembly. */
798 int flag_dump_rtl_in_asm = 0;
800 /* -fgnu-linker specifies use of the GNU linker for initializations.
801 (Or, more generally, a linker that handles initializations.)
802 -fno-gnu-linker says that collect2 will be used. */
803 #ifdef USE_COLLECT2
804 int flag_gnu_linker = 0;
805 #else
806 int flag_gnu_linker = 1;
807 #endif
809 /* Enable SSA. */
810 int flag_ssa = 0;
812 /* Enable dead code elimination. */
813 int flag_dce = 0;
815 /* Tag all structures with __attribute__(packed). */
816 int flag_pack_struct = 0;
818 /* Emit code to check for stack overflow; also may cause large objects
819 to be allocated dynamically. */
820 int flag_stack_check;
822 /* When non-NULL, indicates that whenever space is allocated on the
823 stack, the resulting stack pointer must not pass this
824 address---that is, for stacks that grow downward, the stack pointer
825 must always be greater than or equal to this address; for stacks
826 that grow upward, the stack pointer must be less than this address.
827 At present, the rtx may be either a REG or a SYMBOL_REF, although
828 the support provided depends on the backend. */
829 rtx stack_limit_rtx;
831 /* -fcheck-memory-usage causes extra code to be generated in order to check
832 memory accesses. This is used by a detector of bad memory accesses such
833 as Checker. */
834 int flag_check_memory_usage = 0;
836 /* -fprefix-function-name causes function name to be prefixed. This
837 can be used with -fcheck-memory-usage to isolate code compiled with
838 -fcheck-memory-usage. */
839 int flag_prefix_function_name = 0;
841 /* 0 if pointer arguments may alias each other. True in C.
842 1 if pointer arguments may not alias each other but may alias
843 global variables.
844 2 if pointer arguments may not alias each other and may not
845 alias global variables. True in Fortran.
846 This defaults to 0 for C. */
847 int flag_argument_noalias = 0;
849 /* Nonzero if we should do (language-dependent) alias analysis.
850 Typically, this analysis will assume that expressions of certain
851 types do not alias expressions of certain other types. Only used
852 if alias analysis (in general) is enabled. */
853 int flag_strict_aliasing = 0;
855 /* Instrument functions with calls at entry and exit, for profiling. */
856 int flag_instrument_function_entry_exit = 0;
858 /* Nonzero means ignore `#ident' directives. 0 means handle them.
859 On SVR4 targets, it also controls whether or not to emit a
860 string identifying the compiler. */
862 int flag_no_ident = 0;
864 /* This will perform a peephole pass before sched2. */
865 int flag_peephole2 = 0;
867 /* This will try to guess branch probabilities. */
868 int flag_guess_branch_prob = 0;
870 /* -fbounded-pointers causes gcc to compile pointers as composite
871 objects occupying three words: the pointer value, the base address
872 of the referent object, and the address immediately beyond the end
873 of the referent object. The base and extent allow us to perform
874 runtime bounds checking. -fbounded-pointers implies -fcheck-bounds. */
875 int flag_bounded_pointers = 0;
877 /* -fcheck-bounds causes gcc to generate array bounds checks.
878 For C, C++: defaults to value of flag_bounded_pointers.
879 For ObjC: defaults to off.
880 For Java: defaults to on.
881 For Fortran: defaults to off.
882 For CHILL: defaults to off. */
883 int flag_bounds_check = 0;
885 /* If one, renumber instruction UIDs to reduce the number of
886 unused UIDs if there are a lot of instructions. If greater than
887 one, unconditionally renumber instruction UIDs. */
888 int flag_renumber_insns = 1;
890 /* Values of the -falign-* flags: how much to align labels in code.
891 0 means `use default', 1 means `don't align'.
892 For each variable, there is an _log variant which is the power
893 of two not less than the variable, for .align output. */
895 int align_loops;
896 int align_loops_log;
897 int align_jumps;
898 int align_jumps_log;
899 int align_labels;
900 int align_labels_log;
901 int align_functions;
902 int align_functions_log;
904 /* Table of supported debugging formats. */
905 static struct
907 const char *arg;
908 /* Since PREFERRED_DEBUGGING_TYPE isn't necessarily a
909 constant expression, we use NO_DEBUG in its place. */
910 enum debug_info_type debug_type;
911 int use_extensions_p;
912 const char *description;
913 } *da,
914 debug_args[] =
916 { "", NO_DEBUG, DEFAULT_GDB_EXTENSIONS,
917 N_("Generate debugging info in default format") },
918 { "gdb", NO_DEBUG, 1, N_("Generate debugging info in default extended format") },
919 #ifdef DBX_DEBUGGING_INFO
920 { "stabs", DBX_DEBUG, 0, N_("Generate STABS format debug info") },
921 { "stabs+", DBX_DEBUG, 1, N_("Generate extended STABS format debug info") },
922 #endif
923 #ifdef DWARF_DEBUGGING_INFO
924 { "dwarf", DWARF_DEBUG, 0, N_("Generate DWARF-1 format debug info") },
925 { "dwarf+", DWARF_DEBUG, 1,
926 N_("Generate extended DWARF-1 format debug info") },
927 #endif
928 #ifdef DWARF2_DEBUGGING_INFO
929 { "dwarf-2", DWARF2_DEBUG, 0, N_("Generate DWARF-2 debug info") },
930 #endif
931 #ifdef XCOFF_DEBUGGING_INFO
932 { "xcoff", XCOFF_DEBUG, 0, N_("Generate XCOFF format debug info") },
933 { "xcoff+", XCOFF_DEBUG, 1, N_("Generate extended XCOFF format debug info") },
934 #endif
935 #ifdef SDB_DEBUGGING_INFO
936 { "coff", SDB_DEBUG, 0, N_("Generate COFF format debug info") },
937 #endif
938 { 0, 0, 0, 0 }
941 typedef struct
943 const char *string;
944 int *variable;
945 int on_value;
946 const char *description;
948 lang_independent_options;
950 int flag_trapv = 0;
952 /* Add or remove a leading underscore from user symbols. */
953 int flag_leading_underscore = -1;
955 /* The user symbol prefix after having resolved same. */
956 const char *user_label_prefix;
958 static const param_info lang_independent_params[] = {
959 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
960 { OPTION, DEFAULT, HELP },
961 #include "params.def"
962 #undef DEFPARAM
963 { NULL, 0, NULL }
966 /* A default for same. */
967 #ifndef USER_LABEL_PREFIX
968 #define USER_LABEL_PREFIX ""
969 #endif
971 /* Table of language-independent -f options.
972 STRING is the option name. VARIABLE is the address of the variable.
973 ON_VALUE is the value to store in VARIABLE
974 if `-fSTRING' is seen as an option.
975 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
977 lang_independent_options f_options[] =
979 {"eliminate-dwarf2-dups", &flag_eliminate_dwarf2_dups, 1,
980 N_("Perform DWARF2 duplicate elimination") },
981 {"float-store", &flag_float_store, 1,
982 N_("Do not store floats in registers") },
983 {"volatile", &flag_volatile, 1,
984 N_("Consider all mem refs through pointers as volatile") },
985 {"volatile-global", &flag_volatile_global, 1,
986 N_("Consider all mem refs to global data to be volatile") },
987 {"volatile-static", &flag_volatile_static, 1,
988 N_("Consider all mem refs to static data to be volatile") },
989 {"defer-pop", &flag_defer_pop, 1,
990 N_("Defer popping functions args from stack until later") },
991 {"omit-frame-pointer", &flag_omit_frame_pointer, 1,
992 N_("When possible do not generate stack frames") },
993 {"optimize-sibling-calls", &flag_optimize_sibling_calls, 1,
994 N_("Optimize sibling and tail recursive calls") },
995 {"cse-follow-jumps", &flag_cse_follow_jumps, 1,
996 N_("When running CSE, follow jumps to their targets") },
997 {"cse-skip-blocks", &flag_cse_skip_blocks, 1,
998 N_("When running CSE, follow conditional jumps") },
999 {"expensive-optimizations", &flag_expensive_optimizations, 1,
1000 N_("Perform a number of minor, expensive optimisations") },
1001 {"thread-jumps", &flag_thread_jumps, 1,
1002 N_("Perform jump threading optimisations") },
1003 {"strength-reduce", &flag_strength_reduce, 1,
1004 N_("Perform strength reduction optimisations") },
1005 {"unroll-loops", &flag_unroll_loops, 1,
1006 N_("Perform loop unrolling when iteration count is known") },
1007 {"unroll-all-loops", &flag_unroll_all_loops, 1,
1008 N_("Perform loop unrolling for all loops") },
1009 {"move-all-movables", &flag_move_all_movables, 1,
1010 N_("Force all loop invariant computations out of loops") },
1011 {"reduce-all-givs", &flag_reduce_all_givs, 1,
1012 N_("Strength reduce all loop general induction variables") },
1013 {"writable-strings", &flag_writable_strings, 1,
1014 N_("Store strings in writable data section") },
1015 {"peephole", &flag_no_peephole, 0,
1016 N_("Enable machine specific peephole optimisations") },
1017 {"force-mem", &flag_force_mem, 1,
1018 N_("Copy memory operands into registers before using") },
1019 {"force-addr", &flag_force_addr, 1,
1020 N_("Copy memory address constants into regs before using") },
1021 {"function-cse", &flag_no_function_cse, 0,
1022 N_("Allow function addresses to be held in registers") },
1023 {"inline-functions", &flag_inline_functions, 1,
1024 N_("Integrate simple functions into their callers") },
1025 {"keep-inline-functions", &flag_keep_inline_functions, 1,
1026 N_("Generate code for funcs even if they are fully inlined") },
1027 {"inline", &flag_no_inline, 0,
1028 N_("Pay attention to the 'inline' keyword") },
1029 {"keep-static-consts", &flag_keep_static_consts, 1,
1030 N_("Emit static const variables even if they are not used") },
1031 {"syntax-only", &flag_syntax_only, 1,
1032 N_("Check for syntax errors, then stop") },
1033 {"shared-data", &flag_shared_data, 1,
1034 N_("Mark data as shared rather than private") },
1035 {"caller-saves", &flag_caller_saves, 1,
1036 N_("Enable saving registers around function calls") },
1037 {"pcc-struct-return", &flag_pcc_struct_return, 1,
1038 N_("Return 'short' aggregates in memory, not registers") },
1039 {"reg-struct-return", &flag_pcc_struct_return, 0,
1040 N_("Return 'short' aggregates in registers") },
1041 {"delayed-branch", &flag_delayed_branch, 1,
1042 N_("Attempt to fill delay slots of branch instructions") },
1043 {"gcse", &flag_gcse, 1,
1044 N_("Perform the global common subexpression elimination") },
1045 {"rerun-cse-after-loop", &flag_rerun_cse_after_loop, 1,
1046 N_("Run CSE pass after loop optimisations") },
1047 {"rerun-loop-opt", &flag_rerun_loop_opt, 1,
1048 N_("Run the loop optimiser twice") },
1049 {"delete-null-pointer-checks", &flag_delete_null_pointer_checks, 1,
1050 N_("Delete useless null pointer checks") },
1051 {"pretend-float", &flag_pretend_float, 1,
1052 N_("Pretend that host and target use the same FP format") },
1053 {"schedule-insns", &flag_schedule_insns, 1,
1054 N_("Reschedule instructions before register allocation") },
1055 {"schedule-insns2", &flag_schedule_insns_after_reload, 1,
1056 N_("Reschedule instructions after register allocation") },
1057 {"sched-interblock",&flag_schedule_interblock, 1,
1058 N_("Enable scheduling across basic blocks") },
1059 {"sched-spec",&flag_schedule_speculative, 1,
1060 N_("Allow speculative motion of non-loads") },
1061 {"sched-spec-load",&flag_schedule_speculative_load, 1,
1062 N_("Allow speculative motion of some loads") },
1063 {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1,
1064 N_("Allow speculative motion of more loads") },
1065 {"branch-count-reg",&flag_branch_on_count_reg, 1,
1066 N_("Replace add,compare,branch with branch on count reg") },
1067 {"pic", &flag_pic, 1,
1068 N_("Generate position independent code, if possible") },
1069 {"PIC", &flag_pic, 2, ""},
1070 {"exceptions", &flag_exceptions, 1,
1071 N_("Enable exception handling") },
1072 {"unwind-tables", &flag_unwind_tables, 1,
1073 N_("Just generate unwind tables for exception handling") },
1074 {"non-call-exceptions", &flag_non_call_exceptions, 1,
1075 N_("Support synchronous non-call exceptions") },
1076 {"profile-arcs", &profile_arc_flag, 1,
1077 N_("Insert arc based program profiling code") },
1078 {"test-coverage", &flag_test_coverage, 1,
1079 N_("Create data files needed by gcov") },
1080 {"branch-probabilities", &flag_branch_probabilities, 1,
1081 N_("Use profiling information for branch probabilities") },
1082 {"reorder-blocks", &flag_reorder_blocks, 1,
1083 N_("Reorder basic blocks to improve code placement") },
1084 {"rename-registers", &flag_rename_registers, 1,
1085 N_("Do the register renaming optimization pass") },
1086 {"fast-math", &flag_fast_math, 1,
1087 N_("Improve FP speed by violating ANSI & IEEE rules") },
1088 {"common", &flag_no_common, 0,
1089 N_("Do not put unitialised globals in the common section") },
1090 {"inhibit-size-directive", &flag_inhibit_size_directive, 1,
1091 N_("Do not generate .size directives") },
1092 {"function-sections", &flag_function_sections, 1,
1093 N_("place each function into its own section") },
1094 {"data-sections", &flag_data_sections, 1,
1095 N_("place data items into their own section") },
1096 {"verbose-asm", &flag_verbose_asm, 1,
1097 N_("Add extra commentry to assembler output") },
1098 {"gnu-linker", &flag_gnu_linker, 1,
1099 N_("Output GNU ld formatted global initialisers") },
1100 {"regmove", &flag_regmove, 1,
1101 N_("Enables a register move optimisation") },
1102 {"optimize-register-move", &flag_regmove, 1,
1103 N_("Do the full regmove optimization pass") },
1104 {"pack-struct", &flag_pack_struct, 1,
1105 N_("Pack structure members together without holes") },
1106 {"stack-check", &flag_stack_check, 1,
1107 N_("Insert stack checking code into the program") },
1108 {"argument-alias", &flag_argument_noalias, 0,
1109 N_("Specify that arguments may alias each other & globals") },
1110 {"argument-noalias", &flag_argument_noalias, 1,
1111 N_("Assume arguments may alias globals but not each other") },
1112 {"argument-noalias-global", &flag_argument_noalias, 2,
1113 N_("Assume arguments do not alias each other or globals") },
1114 {"strict-aliasing", &flag_strict_aliasing, 1,
1115 N_("Assume strict aliasing rules apply") },
1116 {"align-loops", &align_loops, 0,
1117 N_("Align the start of loops") },
1118 {"align-jumps", &align_jumps, 0,
1119 N_("Align labels which are only reached by jumping") },
1120 {"align-labels", &align_labels, 0,
1121 N_("Align all labels") },
1122 {"align-functions", &align_functions, 0,
1123 N_("Align the start of functions") },
1124 {"check-memory-usage", &flag_check_memory_usage, 1,
1125 N_("Generate code to check every memory access") },
1126 {"prefix-function-name", &flag_prefix_function_name, 1,
1127 N_("Add a prefix to all function names") },
1128 {"dump-unnumbered", &flag_dump_unnumbered, 1,
1129 N_("Suppress output of instruction numbers and line number notes in debugging dumps") },
1130 {"instrument-functions", &flag_instrument_function_entry_exit, 1,
1131 N_("Instrument function entry/exit with profiling calls") },
1132 {"ssa", &flag_ssa, 1,
1133 N_("Enable SSA optimizations") },
1134 {"dce", &flag_dce, 1,
1135 N_("Enable dead code elimination") },
1136 {"leading-underscore", &flag_leading_underscore, 1,
1137 N_("External symbols have a leading underscore") },
1138 {"ident", &flag_no_ident, 0,
1139 N_("Process #ident directives") },
1140 { "peephole2", &flag_peephole2, 1,
1141 N_("Enables an rtl peephole pass run before sched2") },
1142 { "guess-branch-probability", &flag_guess_branch_prob, 1,
1143 N_("Enables guessing of branch probabilities") },
1144 {"math-errno", &flag_errno_math, 1,
1145 N_("Set errno after built-in math functions") },
1146 {"bounded-pointers", &flag_bounded_pointers, 1,
1147 N_("Compile pointers as triples: value, base & end") },
1148 {"bounds-check", &flag_bounds_check, 1,
1149 N_("Generate code to check bounds before dereferencing pointers and arrays") },
1150 {"single-precision-constant", &flag_single_precision_constant, 1,
1151 N_("Convert floating point constant to single precision constant") },
1152 {"time-report", &time_report, 1,
1153 N_("Report time taken by each compiler pass at end of run") },
1154 {"mem-report", &mem_report, 1,
1155 N_("Report on permanent memory allocation at end of run") },
1156 { "trapv", &flag_trapv, 1,
1157 N_("Trap for signed overflow in addition / subtraction / multiplication.") },
1160 /* Table of language-specific options. */
1162 static struct lang_opt
1164 const char *option;
1165 const char *description;
1167 documented_lang_options[] =
1169 /* In order not to overload the --help output, the convention
1170 used here is to only describe those options which are not
1171 enabled by default. */
1173 { "-ansi",
1174 N_("Compile just for ISO C89") },
1175 { "-fallow-single-precision",
1176 N_("Do not promote floats to double if using -traditional") },
1177 { "-std= ",
1178 N_("Determine language standard") },
1180 { "-fsigned-bitfields", "" },
1181 { "-funsigned-bitfields",
1182 N_("Make bitfields by unsigned by default") },
1183 { "-fno-signed-bitfields", "" },
1184 { "-fno-unsigned-bitfields","" },
1185 { "-fsigned-char",
1186 N_("Make 'char' be signed by default") },
1187 { "-funsigned-char",
1188 N_("Make 'char' be unsigned by default") },
1189 { "-fno-signed-char", "" },
1190 { "-fno-unsigned-char", "" },
1192 { "-ftraditional", "" },
1193 { "-traditional",
1194 N_("Attempt to support traditional K&R style C") },
1195 { "-fnotraditional", "" },
1196 { "-fno-traditional", "" },
1198 { "-fasm", "" },
1199 { "-fno-asm",
1200 N_("Do not recognise the 'asm' keyword") },
1201 { "-fbuiltin", "" },
1202 { "-fno-builtin",
1203 N_("Do not recognise any built in functions") },
1204 { "-fhosted",
1205 N_("Assume normal C execution environment") },
1206 { "-fno-hosted", "" },
1207 { "-ffreestanding",
1208 N_("Assume that standard libraries & main might not exist") },
1209 { "-fno-freestanding", "" },
1210 { "-fcond-mismatch",
1211 N_("Allow different types as args of ? operator") },
1212 { "-fno-cond-mismatch", "" },
1213 { "-fdollars-in-identifiers",
1214 N_("Allow the use of $ inside identifiers") },
1215 { "-fno-dollars-in-identifiers", "" },
1216 { "-fpreprocessed", "" },
1217 { "-fno-preprocessed", "" },
1218 { "-fshort-double",
1219 N_("Use the same size for double as for float") },
1220 { "-fno-short-double", "" },
1221 { "-fshort-enums",
1222 N_("Use the smallest fitting integer to hold enums") },
1223 { "-fno-short-enums", "" },
1224 { "-fshort-wchar",
1225 N_("Override the underlying type for wchar_t to `unsigned short'") },
1226 { "-fno-short-wchar", "" },
1228 { "-Wall",
1229 N_("Enable most warning messages") },
1230 { "-Wbad-function-cast",
1231 N_("Warn about casting functions to incompatible types") },
1232 { "-Wno-bad-function-cast", "" },
1233 { "-Wno-missing-noreturn", "" },
1234 { "-Wmissing-format-attribute",
1235 N_("Warn about functions which might be candidates for format attributes") },
1236 { "-Wno-missing-format-attribute", "" },
1237 { "-Wcast-qual",
1238 N_("Warn about casts which discard qualifiers") },
1239 { "-Wno-cast-qual", "" },
1240 { "-Wchar-subscripts",
1241 N_("Warn about subscripts whose type is 'char'") },
1242 { "-Wno-char-subscripts", "" },
1243 { "-Wcomment",
1244 N_("Warn if nested comments are detected") },
1245 { "-Wno-comment", "" },
1246 { "-Wcomments",
1247 N_("Warn if nested comments are detected") },
1248 { "-Wno-comments", "" },
1249 { "-Wconversion",
1250 N_("Warn about possibly confusing type conversions") },
1251 { "-Wno-conversion", "" },
1252 { "-Wformat",
1253 N_("Warn about printf/scanf/strftime/strfmon format anomalies") },
1254 { "-Wno-format", "" },
1255 { "-Wformat-y2k", "" },
1256 { "-Wno-format-y2k",
1257 N_("Don't warn about strftime formats yielding 2 digit years") },
1258 { "-Wformat-extra-args", "" },
1259 { "-Wno-format-extra-args",
1260 N_("Don't warn about too many arguments to format functions") },
1261 { "-Wformat-nonliteral",
1262 N_("Warn about non-string-literal format strings") },
1263 { "-Wno-format-nonliteral", "" },
1264 { "-Wformat-security",
1265 N_("Warn about possible security problems with format functions") },
1266 { "-Wno-format-security", "" },
1267 { "-Wimplicit-function-declaration",
1268 N_("Warn about implicit function declarations") },
1269 { "-Wno-implicit-function-declaration", "" },
1270 { "-Werror-implicit-function-declaration", "" },
1271 { "-Wimplicit-int",
1272 N_("Warn when a declaration does not specify a type") },
1273 { "-Wno-implicit-int", "" },
1274 { "-Wimplicit", "" },
1275 { "-Wno-implicit", "" },
1276 { "-Wimport",
1277 N_("Warn about the use of the #import directive") },
1278 { "-Wno-import", "" },
1279 { "-Wlong-long","" },
1280 { "-Wno-long-long",
1281 N_("Do not warn about using 'long long' when -pedantic") },
1282 { "-Wmain",
1283 N_("Warn about suspicious declarations of main") },
1284 { "-Wno-main", "" },
1285 { "-Wmissing-braces",
1286 N_("Warn about possibly missing braces around initialisers") },
1287 { "-Wno-missing-braces", "" },
1288 { "-Wmissing-declarations",
1289 N_("Warn about global funcs without previous declarations") },
1290 { "-Wno-missing-declarations", "" },
1291 { "-Wmissing-prototypes",
1292 N_("Warn about global funcs without prototypes") },
1293 { "-Wno-missing-prototypes", "" },
1294 { "-Wmultichar",
1295 N_("Warn about use of multicharacter literals") },
1296 { "-Wno-multichar", "" },
1297 { "-Wnested-externs",
1298 N_("Warn about externs not at file scope level") },
1299 { "-Wno-nested-externs", "" },
1300 { "-Wparentheses",
1301 N_("Warn about possible missing parentheses") },
1302 { "-Wno-parentheses", "" },
1303 { "-Wsequence-point",
1304 N_("Warn about possible violations of sequence point rules") },
1305 { "-Wno-sequence-point", "" },
1306 { "-Wpointer-arith",
1307 N_("Warn about function pointer arithmetic") },
1308 { "-Wno-pointer-arith", "" },
1309 { "-Wredundant-decls",
1310 N_("Warn about multiple declarations of the same object") },
1311 { "-Wno-redundant-decls", "" },
1312 { "-Wsign-compare",
1313 N_("Warn about signed/unsigned comparisons") },
1314 { "-Wno-sign-compare", "" },
1315 { "-Wfloat-equal",
1316 N_("Warn about testing equality of floating point numbers") },
1317 { "-Wno-float-equal", "" },
1318 { "-Wunknown-pragmas",
1319 N_("Warn about unrecognized pragmas") },
1320 { "-Wno-unknown-pragmas", "" },
1321 { "-Wstrict-prototypes",
1322 N_("Warn about non-prototyped function decls") },
1323 { "-Wno-strict-prototypes", "" },
1324 { "-Wtraditional",
1325 N_("Warn about constructs whose meaning change in ISO C") },
1326 { "-Wno-traditional", "" },
1327 { "-Wtrigraphs",
1328 N_("Warn when trigraphs are encountered") },
1329 { "-Wno-trigraphs", "" },
1330 { "-Wundef", "" },
1331 { "-Wno-undef", "" },
1332 { "-Wwrite-strings",
1333 N_("Mark strings as 'const char *'") },
1334 { "-Wno-write-strings", "" },
1336 #define DEFINE_LANG_NAME(NAME) { NULL, NAME },
1338 #include "options.h"
1342 /* Here is a table, controlled by the tm.h file, listing each -m switch
1343 and which bits in `target_switches' it should set or clear.
1344 If VALUE is positive, it is bits to set.
1345 If VALUE is negative, -VALUE is bits to clear.
1346 (The sign bit is not used so there is no confusion.) */
1348 struct
1350 const char *name;
1351 int value;
1352 const char *description;
1354 target_switches [] = TARGET_SWITCHES;
1356 /* This table is similar, but allows the switch to have a value. */
1358 #ifdef TARGET_OPTIONS
1359 struct
1361 const char *prefix;
1362 const char **variable;
1363 const char *description;
1365 target_options [] = TARGET_OPTIONS;
1366 #endif
1368 /* Options controlling warnings. */
1370 /* Don't print warning messages. -w. */
1372 int inhibit_warnings = 0;
1374 /* Don't suppress warnings from system headers. -Wsystem-headers. */
1376 int warn_system_headers = 0;
1378 /* Print various extra warnings. -W. */
1380 int extra_warnings = 0;
1382 /* Treat warnings as errors. -Werror. */
1384 int warnings_are_errors = 0;
1386 /* Nonzero to warn about unused variables, functions et.al. */
1388 int warn_unused_function;
1389 int warn_unused_label;
1390 int warn_unused_parameter;
1391 int warn_unused_variable;
1392 int warn_unused_value;
1394 void
1395 set_Wunused (setting)
1396 int setting;
1398 warn_unused_function = setting;
1399 warn_unused_label = setting;
1400 /* Unused function parameter warnings are reported when either ``-W
1401 -Wunused'' or ``-Wunused-parameter'' is specified. Differentiate
1402 -Wunused by setting WARN_UNUSED_PARAMETER to -1. */
1403 if (!setting)
1404 warn_unused_parameter = 0;
1405 else if (!warn_unused_parameter)
1406 warn_unused_parameter = -1;
1407 warn_unused_variable = setting;
1408 warn_unused_value = setting;
1411 /* Nonzero to warn about code which is never reached. */
1413 int warn_notreached;
1415 /* Nonzero to warn about variables used before they are initialized. */
1417 int warn_uninitialized;
1419 /* Nonzero means warn about all declarations which shadow others. */
1421 int warn_shadow;
1423 /* Warn if a switch on an enum fails to have a case for every enum value. */
1425 int warn_switch;
1427 /* Nonzero means warn about function definitions that default the return type
1428 or that use a null return and have a return-type other than void. */
1430 int warn_return_type;
1432 /* Nonzero means warn about pointer casts that increase the required
1433 alignment of the target type (and might therefore lead to a crash
1434 due to a misaligned access). */
1436 int warn_cast_align;
1438 /* Nonzero means warn about any identifiers that match in the first N
1439 characters. The value N is in `id_clash_len'. */
1441 int warn_id_clash;
1442 int id_clash_len;
1444 /* Nonzero means warn about any objects definitions whose size is larger
1445 than N bytes. Also want about function definitions whose returned
1446 values are larger than N bytes. The value N is in `larger_than_size'. */
1448 int warn_larger_than;
1449 HOST_WIDE_INT larger_than_size;
1451 /* Nonzero means warn if inline function is too large. */
1453 int warn_inline;
1455 /* Warn if a function returns an aggregate,
1456 since there are often incompatible calling conventions for doing this. */
1458 int warn_aggregate_return;
1460 /* Warn if packed attribute on struct is unnecessary and inefficient. */
1462 int warn_packed;
1464 /* Warn when gcc pads a structure to an alignment boundary. */
1466 int warn_padded;
1468 /* Warn when an optimization pass is disabled. */
1470 int warn_disabled_optimization;
1472 /* Warn about functions which might be candidates for attribute noreturn. */
1474 int warn_missing_noreturn;
1476 /* Likewise for -W. */
1478 lang_independent_options W_options[] =
1480 {"unused-function", &warn_unused_function, 1,
1481 N_("Warn when a function is unused") },
1482 {"unused-label", &warn_unused_label, 1,
1483 N_("Warn when a label is unused") },
1484 {"unused-parameter", &warn_unused_parameter, 1,
1485 N_("Warn when a function parameter is unused") },
1486 {"unused-variable", &warn_unused_variable, 1,
1487 N_("Warn when a variable is unused") },
1488 {"unused-value", &warn_unused_value, 1,
1489 N_("Warn when an expression value is unused") },
1490 {"system-headers", &warn_system_headers, 1,
1491 N_("Do not suppress warnings from system headers") },
1492 {"error", &warnings_are_errors, 1,
1493 N_("Treat all warnings as errors") },
1494 {"shadow", &warn_shadow, 1,
1495 N_("Warn when one local variable shadows another") },
1496 {"switch", &warn_switch, 1,
1497 N_("Warn about enumerated switches missing a specific case") },
1498 {"aggregate-return", &warn_aggregate_return, 1,
1499 N_("Warn about returning structures, unions or arrays") },
1500 {"cast-align", &warn_cast_align, 1,
1501 N_("Warn about pointer casts which increase alignment") },
1502 {"unreachable-code", &warn_notreached, 1,
1503 N_("Warn about code that will never be executed") },
1504 {"uninitialized", &warn_uninitialized, 1,
1505 N_("Warn about unitialized automatic variables") },
1506 {"inline", &warn_inline, 1,
1507 N_("Warn when an inlined function cannot be inlined") },
1508 {"packed", &warn_packed, 1,
1509 N_("Warn when the packed attribute has no effect on struct layout") },
1510 {"padded", &warn_padded, 1,
1511 N_("Warn when padding is required to align struct members") },
1512 {"disabled-optimization", &warn_disabled_optimization, 1,
1513 N_("Warn when an optimization pass is disabled") },
1514 {"missing-noreturn", &warn_missing_noreturn, 1,
1515 N_("Warn about functions which might be candidates for attribute noreturn") }
1518 /* Output files for assembler code (real compiler output)
1519 and debugging dumps. */
1521 FILE *asm_out_file;
1522 FILE *aux_info_file;
1523 FILE *rtl_dump_file = NULL;
1525 /* Decode the string P as an integral parameter.
1526 If the string is indeed an integer return its numeric value else
1527 issue an Invalid Option error for the option PNAME and return DEFVAL.
1528 If PNAME is zero just return DEFVAL, do not call error. */
1531 read_integral_parameter (p, pname, defval)
1532 const char *p;
1533 const char *pname;
1534 const int defval;
1536 const char *endp = p;
1538 while (*endp)
1540 if (*endp >= '0' && *endp <= '9')
1541 endp++;
1542 else
1543 break;
1546 if (*endp != 0)
1548 if (pname != 0)
1549 error ("Invalid option `%s'", pname);
1550 return defval;
1553 return atoi (p);
1557 /* This is the default decl_printable_name function. */
1559 static const char *
1560 decl_name (decl, verbosity)
1561 tree decl;
1562 int verbosity ATTRIBUTE_UNUSED;
1564 return IDENTIFIER_POINTER (DECL_NAME (decl));
1568 /* This calls abort and is used to avoid problems when abort if a macro.
1569 It is used when we need to pass the address of abort. */
1571 void
1572 do_abort ()
1574 abort ();
1577 /* When `malloc.c' is compiled with `rcheck' defined,
1578 it calls this function to report clobberage. */
1580 void
1581 botch (s)
1582 const char *s ATTRIBUTE_UNUSED;
1584 abort ();
1587 /* Return the logarithm of X, base 2, considering X unsigned,
1588 if X is a power of 2. Otherwise, returns -1.
1590 This should be used via the `exact_log2' macro. */
1593 exact_log2_wide (x)
1594 register unsigned HOST_WIDE_INT x;
1596 register int log = 0;
1597 /* Test for 0 or a power of 2. */
1598 if (x == 0 || x != (x & -x))
1599 return -1;
1600 while ((x >>= 1) != 0)
1601 log++;
1602 return log;
1605 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1606 If X is 0, return -1.
1608 This should be used via the floor_log2 macro. */
1611 floor_log2_wide (x)
1612 register unsigned HOST_WIDE_INT x;
1614 register int log = -1;
1615 while (x != 0)
1616 log++,
1617 x >>= 1;
1618 return log;
1621 /* Return the approximate positive square root of a number N. This is for
1622 statistical reports, not code generation. */
1623 double
1624 approx_sqrt (x)
1625 double x;
1627 double s, d;
1629 if (x < 0)
1630 abort ();
1631 if (x == 0)
1632 return 0;
1634 s = x;
1637 d = (s * s - x) / (2 * s);
1638 s -= d;
1640 while (d > .0001);
1641 return s;
1644 static int float_handler_set;
1645 int float_handled;
1646 jmp_buf float_handler;
1648 /* Signals actually come here. */
1650 static void
1651 float_signal (signo)
1652 /* If this is missing, some compilers complain. */
1653 int signo ATTRIBUTE_UNUSED;
1655 if (float_handled == 0)
1656 crash_signal (signo);
1657 #if defined (USG) || defined (hpux)
1658 /* Re-enable the signal catcher. */
1659 signal (SIGFPE, float_signal);
1660 #endif
1661 float_handled = 0;
1662 signal (SIGFPE, float_signal);
1663 longjmp (float_handler, 1);
1666 /* Specify where to longjmp to when a floating arithmetic error happens.
1667 If HANDLER is 0, it means don't handle the errors any more. */
1669 void
1670 set_float_handler (handler)
1671 jmp_buf handler;
1673 float_handled = (handler != 0);
1674 if (handler)
1675 bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler));
1677 if (float_handled && ! float_handler_set)
1679 signal (SIGFPE, float_signal);
1680 float_handler_set = 1;
1684 /* This is a wrapper function for code which might elicit an
1685 arithmetic exception. That code should be passed in as a function
1686 pointer FN, and one argument DATA. DATA is usually a struct which
1687 contains the real input and output for function FN. This function
1688 returns 0 (failure) if longjmp was called (i.e. an exception
1689 occured.) It returns 1 (success) otherwise. */
1692 do_float_handler (fn, data)
1693 void (*fn) PARAMS ((PTR));
1694 PTR data;
1696 jmp_buf buf;
1698 if (setjmp (buf))
1700 /* We got here via longjmp () caused by an exception in function
1701 fn (). */
1702 set_float_handler (NULL);
1703 return 0;
1706 set_float_handler (buf);
1707 (*fn)(data);
1708 set_float_handler (NULL);
1709 return 1;
1712 /* Specify, in HANDLER, where to longjmp to when a floating arithmetic
1713 error happens, pushing the previous specification into OLD_HANDLER.
1714 Return an indication of whether there was a previous handler in effect. */
1717 push_float_handler (handler, old_handler)
1718 jmp_buf handler, old_handler;
1720 int was_handled = float_handled;
1722 float_handled = 1;
1723 if (was_handled)
1724 memcpy ((char *) old_handler, (char *) float_handler,
1725 sizeof (float_handler));
1727 memcpy ((char *) float_handler, (char *) handler, sizeof (float_handler));
1728 return was_handled;
1731 /* Restore the previous specification of whether and where to longjmp to
1732 when a floating arithmetic error happens. */
1734 void
1735 pop_float_handler (handled, handler)
1736 int handled;
1737 jmp_buf handler;
1739 float_handled = handled;
1740 if (handled)
1741 bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler));
1744 /* Handler for fatal signals, such as SIGSEGV. These are transformed
1745 into ICE messages, which is much more user friendly. */
1747 static void
1748 crash_signal (signo)
1749 int signo;
1751 internal_error ("Internal error: %s", strsignal (signo));
1754 /* Strip off a legitimate source ending from the input string NAME of
1755 length LEN. Rather than having to know the names used by all of
1756 our front ends, we strip off an ending of a period followed by
1757 up to five characters. (Java uses ".class".) */
1759 void
1760 strip_off_ending (name, len)
1761 char *name;
1762 int len;
1764 int i;
1765 for (i = 2; i < 6 && len > i; i++)
1767 if (name[len - i] == '.')
1769 name[len - i] = '\0';
1770 break;
1775 /* Given a file name X, return the nondirectory portion. */
1777 char *
1778 file_name_nondirectory (x)
1779 const char *x;
1781 char *tmp = (char *) strrchr (x, '/');
1782 if (DIR_SEPARATOR != '/' && ! tmp)
1783 tmp = (char *) strrchr (x, DIR_SEPARATOR);
1784 if (tmp)
1785 return (char *) (tmp + 1);
1786 else
1787 return (char *) x;
1790 /* Output a quoted string. */
1792 void
1793 output_quoted_string (asm_file, string)
1794 FILE *asm_file;
1795 const char *string;
1797 #ifdef OUTPUT_QUOTED_STRING
1798 OUTPUT_QUOTED_STRING (asm_file, string);
1799 #else
1800 char c;
1802 putc ('\"', asm_file);
1803 while ((c = *string++) != 0)
1805 if (c == '\"' || c == '\\')
1806 putc ('\\', asm_file);
1807 putc (c, asm_file);
1809 putc ('\"', asm_file);
1810 #endif
1813 /* Output a file name in the form wanted by System V. */
1815 void
1816 output_file_directive (asm_file, input_name)
1817 FILE *asm_file;
1818 const char *input_name;
1820 int len = strlen (input_name);
1821 const char *na = input_name + len;
1823 /* NA gets INPUT_NAME sans directory names. */
1824 while (na > input_name)
1826 if (IS_DIR_SEPARATOR (na[-1]))
1827 break;
1828 na--;
1831 #ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
1832 ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file, na);
1833 #else
1834 #ifdef ASM_OUTPUT_SOURCE_FILENAME
1835 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
1836 #else
1837 fprintf (asm_file, "\t.file\t");
1838 output_quoted_string (asm_file, na);
1839 fputc ('\n', asm_file);
1840 #endif
1841 #endif
1844 /* Routine to open a dump file. Return true if the dump file is enabled. */
1846 static int
1847 open_dump_file (index, decl)
1848 enum dump_file_index index;
1849 tree decl;
1851 char *dump_name;
1852 const char *open_arg;
1853 char seq[16];
1855 if (! dump_file[index].enabled)
1856 return 0;
1858 timevar_push (TV_DUMP);
1859 if (rtl_dump_file != NULL)
1860 fclose (rtl_dump_file);
1862 sprintf (seq, ".%02d.", index);
1864 if (! dump_file[index].initialized)
1866 /* If we've not initialized the files, do so now. */
1867 if (graph_dump_format != no_graph
1868 && dump_file[index].graph_dump_p)
1870 dump_name = concat (seq, dump_file[index].extension, NULL);
1871 clean_graph_dump_file (dump_base_name, dump_name);
1872 free (dump_name);
1874 dump_file[index].initialized = 1;
1875 open_arg = "w";
1877 else
1878 open_arg = "a";
1880 dump_name = concat (dump_base_name, seq,
1881 dump_file[index].extension, NULL);
1883 rtl_dump_file = fopen (dump_name, open_arg);
1884 if (rtl_dump_file == NULL)
1885 fatal_io_error ("can't open %s", dump_name);
1887 free (dump_name);
1889 if (decl)
1890 fprintf (rtl_dump_file, "\n;; Function %s\n\n",
1891 decl_printable_name (decl, 2));
1893 timevar_pop (TV_DUMP);
1894 return 1;
1897 /* Routine to close a dump file. */
1899 static void
1900 close_dump_file (index, func, insns)
1901 enum dump_file_index index;
1902 void (*func) PARAMS ((FILE *, rtx));
1903 rtx insns;
1905 if (! rtl_dump_file)
1906 return;
1908 timevar_push (TV_DUMP);
1909 if (insns
1910 && graph_dump_format != no_graph
1911 && dump_file[index].graph_dump_p)
1913 char seq[16];
1914 char *suffix;
1916 sprintf (seq, ".%02d.", index);
1917 suffix = concat (seq, dump_file[index].extension, NULL);
1918 print_rtl_graph_with_bb (dump_base_name, suffix, insns);
1919 free (suffix);
1922 if (func && insns)
1923 func (rtl_dump_file, insns);
1925 fflush (rtl_dump_file);
1926 fclose (rtl_dump_file);
1928 rtl_dump_file = NULL;
1929 timevar_pop (TV_DUMP);
1932 /* Do any final processing required for the declarations in VEC, of
1933 which there are LEN. We write out inline functions and variables
1934 that have been deferred until this point, but which are required.
1935 Returns non-zero if anything was put out. */
1938 wrapup_global_declarations (vec, len)
1939 tree *vec;
1940 int len;
1942 tree decl;
1943 int i;
1944 int reconsider;
1945 int output_something = 0;
1947 for (i = 0; i < len; i++)
1949 decl = vec[i];
1951 /* We're not deferring this any longer. */
1952 DECL_DEFER_OUTPUT (decl) = 0;
1954 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0
1955 && incomplete_decl_finalize_hook != 0)
1956 (*incomplete_decl_finalize_hook) (decl);
1959 /* Now emit any global variables or functions that we have been
1960 putting off. We need to loop in case one of the things emitted
1961 here references another one which comes earlier in the list. */
1964 reconsider = 0;
1965 for (i = 0; i < len; i++)
1967 decl = vec[i];
1969 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
1970 continue;
1972 /* Don't write out static consts, unless we still need them.
1974 We also keep static consts if not optimizing (for debugging),
1975 unless the user specified -fno-keep-static-consts.
1976 ??? They might be better written into the debug information.
1977 This is possible when using DWARF.
1979 A language processor that wants static constants to be always
1980 written out (even if it is not used) is responsible for
1981 calling rest_of_decl_compilation itself. E.g. the C front-end
1982 calls rest_of_decl_compilation from finish_decl.
1983 One motivation for this is that is conventional in some
1984 environments to write things like:
1985 static const char rcsid[] = "... version string ...";
1986 intending to force the string to be in the executable.
1988 A language processor that would prefer to have unneeded
1989 static constants "optimized away" would just defer writing
1990 them out until here. E.g. C++ does this, because static
1991 constants are often defined in header files.
1993 ??? A tempting alternative (for both C and C++) would be
1994 to force a constant to be written if and only if it is
1995 defined in a main file, as opposed to an include file. */
1997 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
1998 && (! TREE_READONLY (decl)
1999 || TREE_PUBLIC (decl)
2000 || (!optimize
2001 && flag_keep_static_consts
2002 && !DECL_ARTIFICIAL (decl))
2003 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
2005 reconsider = 1;
2006 rest_of_decl_compilation (decl, NULL_PTR, 1, 1);
2009 if (TREE_CODE (decl) == FUNCTION_DECL
2010 && DECL_INITIAL (decl) != 0
2011 && DECL_SAVED_INSNS (decl) != 0
2012 && (flag_keep_inline_functions
2013 || (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
2014 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
2016 reconsider = 1;
2017 output_inline_function (decl);
2021 if (reconsider)
2022 output_something = 1;
2024 while (reconsider);
2026 return output_something;
2029 /* Issue appropriate warnings for the global declarations in VEC (of
2030 which there are LEN). Output debugging information for them. */
2032 void
2033 check_global_declarations (vec, len)
2034 tree *vec;
2035 int len;
2037 tree decl;
2038 int i;
2040 for (i = 0; i < len; i++)
2042 decl = vec[i];
2044 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
2045 && ! TREE_ASM_WRITTEN (decl))
2046 /* Cancel the RTL for this decl so that, if debugging info
2047 output for global variables is still to come,
2048 this one will be omitted. */
2049 SET_DECL_RTL (decl, NULL_RTX);
2051 /* Warn about any function
2052 declared static but not defined.
2053 We don't warn about variables,
2054 because many programs have static variables
2055 that exist only to get some text into the object file. */
2056 if (TREE_CODE (decl) == FUNCTION_DECL
2057 && (warn_unused_function
2058 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2059 && DECL_INITIAL (decl) == 0
2060 && DECL_EXTERNAL (decl)
2061 && ! DECL_ARTIFICIAL (decl)
2062 && ! TREE_PUBLIC (decl))
2064 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2065 pedwarn_with_decl (decl,
2066 "`%s' used but never defined");
2067 else
2068 warning_with_decl (decl,
2069 "`%s' declared `static' but never defined");
2070 /* This symbol is effectively an "extern" declaration now. */
2071 TREE_PUBLIC (decl) = 1;
2072 assemble_external (decl);
2075 /* Warn about static fns or vars defined but not used,
2076 but not about inline functions or static consts
2077 since defining those in header files is normal practice. */
2078 if (((warn_unused_function
2079 && TREE_CODE (decl) == FUNCTION_DECL && ! DECL_INLINE (decl))
2080 || (warn_unused_variable
2081 && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
2082 && ! DECL_IN_SYSTEM_HEADER (decl)
2083 && ! DECL_EXTERNAL (decl)
2084 && ! TREE_PUBLIC (decl)
2085 && ! TREE_USED (decl)
2086 && (TREE_CODE (decl) == FUNCTION_DECL || ! DECL_REGISTER (decl))
2087 /* The TREE_USED bit for file-scope decls
2088 is kept in the identifier, to handle multiple
2089 external decls in different scopes. */
2090 && ! TREE_USED (DECL_NAME (decl)))
2091 warning_with_decl (decl, "`%s' defined but not used");
2093 timevar_push (TV_SYMOUT);
2094 #ifdef SDB_DEBUGGING_INFO
2095 /* The COFF linker can move initialized global vars to the end.
2096 And that can screw up the symbol ordering.
2097 By putting the symbols in that order to begin with,
2098 we avoid a problem. mcsun!unido!fauern!tumuc!pes@uunet.uu.net. */
2099 if (write_symbols == SDB_DEBUG && TREE_CODE (decl) == VAR_DECL
2100 && TREE_PUBLIC (decl) && DECL_INITIAL (decl)
2101 && ! DECL_EXTERNAL (decl)
2102 && DECL_RTL (decl) != 0)
2103 sdbout_symbol (decl, 0);
2105 /* Output COFF information for non-global
2106 file-scope initialized variables. */
2107 if (write_symbols == SDB_DEBUG
2108 && TREE_CODE (decl) == VAR_DECL
2109 && DECL_INITIAL (decl)
2110 && ! DECL_EXTERNAL (decl)
2111 && DECL_RTL (decl) != 0
2112 && GET_CODE (DECL_RTL (decl)) == MEM)
2113 sdbout_toplevel_data (decl);
2114 #endif /* SDB_DEBUGGING_INFO */
2115 #ifdef DWARF_DEBUGGING_INFO
2116 /* Output DWARF 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 == DWARF_DEBUG
2122 && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
2123 dwarfout_file_scope_decl (decl, 1);
2124 #endif
2125 #ifdef DWARF2_DEBUGGING_INFO
2126 /* Output DWARF2 information for file-scope tentative data object
2127 declarations, file-scope (extern) function declarations (which
2128 had no corresponding body) and file-scope tagged type declarations
2129 and definitions which have not yet been forced out. */
2131 if (write_symbols == DWARF2_DEBUG
2132 && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
2133 dwarf2out_decl (decl);
2134 #endif
2135 timevar_pop (TV_SYMOUT);
2139 /* Save the current INPUT_FILENAME and LINENO on the top entry in the
2140 INPUT_FILE_STACK. Push a new entry for FILE and LINE, and set the
2141 INPUT_FILENAME and LINENO accordingly. */
2143 void
2144 push_srcloc (file, line)
2145 const char *file;
2146 int line;
2148 struct file_stack *fs;
2150 if (input_file_stack)
2152 input_file_stack->name = input_filename;
2153 input_file_stack->line = lineno;
2156 fs = (struct file_stack *) xmalloc (sizeof (struct file_stack));
2157 fs->name = input_filename = file;
2158 fs->line = lineno = line;
2159 fs->indent_level = 0;
2160 fs->next = input_file_stack;
2161 input_file_stack = fs;
2162 input_file_stack_tick++;
2165 /* Pop the top entry off the stack of presently open source files.
2166 Restore the INPUT_FILENAME and LINENO from the new topmost entry on
2167 the stack. */
2169 void
2170 pop_srcloc ()
2172 struct file_stack *fs;
2174 fs = input_file_stack;
2175 input_file_stack = fs->next;
2176 free (fs);
2177 input_file_stack_tick++;
2178 /* The initial source file is never popped. */
2179 if (!input_file_stack)
2180 abort ();
2181 input_filename = input_file_stack->name;
2182 lineno = input_file_stack->line;
2185 /* Compile an entire file of output from cpp, named NAME.
2186 Write a file of assembly output and various debugging dumps. */
2188 static void
2189 compile_file (name)
2190 const char *name;
2192 tree globals;
2194 int name_specified = name != 0;
2196 if (dump_base_name == 0)
2197 dump_base_name = name ? name : "gccdump";
2199 if (! quiet_flag)
2200 time_report = 1;
2202 /* Start timing total execution time. */
2204 init_timevar ();
2205 timevar_start (TV_TOTAL);
2207 /* Initialize data in various passes. */
2209 init_obstacks ();
2210 name = init_parse (name);
2211 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
2212 || debug_info_level == DINFO_LEVEL_VERBOSE
2213 || flag_test_coverage
2214 || warn_notreached);
2215 init_regs ();
2216 init_alias_once ();
2217 init_decl_processing ();
2218 init_eh ();
2219 init_optabs ();
2220 init_stmt ();
2221 init_loop ();
2222 init_reload ();
2223 init_function_once ();
2224 init_stor_layout_once ();
2225 init_varasm_once ();
2226 init_EXPR_INSN_LIST_cache ();
2228 /* The following initialization functions need to generate rtl, so
2229 provide a dummy function context for them. */
2230 init_dummy_function_start ();
2231 init_expmed ();
2232 init_expr_once ();
2233 if (flag_caller_saves)
2234 init_caller_save ();
2235 expand_dummy_function_end ();
2237 /* If auxiliary info generation is desired, open the output file.
2238 This goes in the same directory as the source file--unlike
2239 all the other output files. */
2240 if (flag_gen_aux_info)
2242 aux_info_file = fopen (aux_info_file_name, "w");
2243 if (aux_info_file == 0)
2244 fatal_io_error ("can't open %s", aux_info_file_name);
2247 /* Open assembler code output file. Do this even if -fsyntax-only is on,
2248 because then the driver will have provided the name of a temporary
2249 file or bit bucket for us. */
2251 if (! name_specified && asm_file_name == 0)
2252 asm_out_file = stdout;
2253 else
2255 if (asm_file_name == 0)
2257 int len = strlen (dump_base_name);
2258 char *dumpname = (char *) xmalloc (len + 6);
2259 memcpy (dumpname, dump_base_name, len + 1);
2260 strip_off_ending (dumpname, len);
2261 strcat (dumpname, ".s");
2262 asm_file_name = dumpname;
2264 if (!strcmp (asm_file_name, "-"))
2265 asm_out_file = stdout;
2266 else
2267 asm_out_file = fopen (asm_file_name, "w");
2268 if (asm_out_file == 0)
2269 fatal_io_error ("can't open %s for writing", asm_file_name);
2272 #ifdef IO_BUFFER_SIZE
2273 setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
2274 _IOFBF, IO_BUFFER_SIZE);
2275 #endif
2277 if (name != 0)
2278 name = ggc_strdup (name);
2280 input_filename = name;
2282 /* Put an entry on the input file stack for the main input file. */
2283 push_srcloc (input_filename, 0);
2285 /* Perform language-specific initialization.
2286 This may set main_input_filename. */
2287 if (lang_hooks.init)
2288 (*lang_hooks.init) ();
2290 /* If the input doesn't start with a #line, use the input name
2291 as the official input file name. */
2292 if (main_input_filename == 0)
2293 main_input_filename = name;
2295 if (flag_syntax_only)
2297 write_symbols = NO_DEBUG;
2298 profile_flag = 0;
2299 profile_block_flag = 0;
2301 else
2303 ASM_FILE_START (asm_out_file);
2305 #ifdef ASM_COMMENT_START
2306 if (flag_verbose_asm)
2308 /* Print the list of options in effect. */
2309 print_version (asm_out_file, ASM_COMMENT_START);
2310 print_switch_values (asm_out_file, 0, MAX_LINE,
2311 ASM_COMMENT_START, " ", "\n");
2312 /* Add a blank line here so it appears in assembler output but not
2313 screen output. */
2314 fprintf (asm_out_file, "\n");
2316 #endif
2317 } /* ! flag_syntax_only */
2319 #ifndef ASM_OUTPUT_SECTION_NAME
2320 if (flag_function_sections)
2322 warning ("-ffunction-sections not supported for this target.");
2323 flag_function_sections = 0;
2325 if (flag_data_sections)
2327 warning ("-fdata-sections not supported for this target.");
2328 flag_data_sections = 0;
2330 #endif
2332 if (flag_function_sections
2333 && (profile_flag || profile_block_flag))
2335 warning ("-ffunction-sections disabled; it makes profiling impossible.");
2336 flag_function_sections = 0;
2339 #ifndef OBJECT_FORMAT_ELF
2340 if (flag_function_sections && write_symbols != NO_DEBUG)
2341 warning ("-ffunction-sections may affect debugging on some targets.");
2342 #endif
2344 /* If dbx symbol table desired, initialize writing it
2345 and output the predefined types. */
2346 timevar_push (TV_SYMOUT);
2347 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2348 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2349 dbxout_init (asm_out_file, main_input_filename, getdecls ());
2350 #endif
2351 #ifdef SDB_DEBUGGING_INFO
2352 if (write_symbols == SDB_DEBUG)
2353 sdbout_init (asm_out_file, main_input_filename, getdecls ());
2354 #endif
2355 #ifdef DWARF_DEBUGGING_INFO
2356 if (write_symbols == DWARF_DEBUG)
2357 dwarfout_init (asm_out_file, main_input_filename);
2358 #endif
2359 #ifdef DWARF2_UNWIND_INFO
2360 if (dwarf2out_do_frame ())
2361 dwarf2out_frame_init ();
2362 #endif
2363 #ifdef DWARF2_DEBUGGING_INFO
2364 if (write_symbols == DWARF2_DEBUG)
2365 dwarf2out_init (asm_out_file, main_input_filename);
2366 #endif
2367 timevar_pop (TV_SYMOUT);
2369 /* Initialize yet another pass. */
2371 init_final (main_input_filename);
2372 init_branch_prob (dump_base_name);
2374 timevar_push (TV_PARSE);
2376 /* Call the parser, which parses the entire file
2377 (calling rest_of_compilation for each function). */
2379 if (yyparse () != 0)
2381 if (errorcount == 0)
2382 fnotice (stderr, "Errors detected in input file (your bison.simple is out of date)\n");
2384 /* In case there were missing closebraces,
2385 get us back to the global binding level. */
2386 while (! global_bindings_p ())
2387 poplevel (0, 0, 0);
2390 /* Compilation is now finished except for writing
2391 what's left of the symbol table output. */
2393 timevar_pop (TV_PARSE);
2395 if (flag_syntax_only)
2396 goto finish_syntax;
2398 globals = getdecls ();
2400 /* Really define vars that have had only a tentative definition.
2401 Really output inline functions that must actually be callable
2402 and have not been output so far. */
2405 int len = list_length (globals);
2406 tree *vec = (tree *) xmalloc (sizeof (tree) * len);
2407 int i;
2408 tree decl;
2410 /* Process the decls in reverse order--earliest first.
2411 Put them into VEC from back to front, then take out from front. */
2413 for (i = 0, decl = globals; i < len; i++, decl = TREE_CHAIN (decl))
2414 vec[len - i - 1] = decl;
2416 wrapup_global_declarations (vec, len);
2418 /* This must occur after the loop to output deferred functions. Else
2419 the profiler initializer would not be emitted if all the functions
2420 in this compilation unit were deferred.
2422 output_func_start_profiler can not cause any additional functions or
2423 data to need to be output, so it need not be in the deferred function
2424 loop above. */
2425 output_func_start_profiler ();
2427 check_global_declarations (vec, len);
2429 /* Clean up. */
2430 free (vec);
2433 /* Write out any pending weak symbol declarations. */
2435 weak_finish ();
2437 /* Do dbx symbols. */
2438 timevar_push (TV_SYMOUT);
2439 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2440 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2441 dbxout_finish (asm_out_file, main_input_filename);
2442 #endif
2444 #ifdef DWARF_DEBUGGING_INFO
2445 if (write_symbols == DWARF_DEBUG)
2446 dwarfout_finish ();
2447 #endif
2449 #ifdef DWARF2_UNWIND_INFO
2450 if (dwarf2out_do_frame ())
2451 dwarf2out_frame_finish ();
2452 #endif
2454 #ifdef DWARF2_DEBUGGING_INFO
2455 if (write_symbols == DWARF2_DEBUG)
2456 dwarf2out_finish ();
2457 #endif
2458 timevar_pop (TV_SYMOUT);
2460 /* Output some stuff at end of file if nec. */
2462 dw2_output_indirect_constants ();
2464 end_final (dump_base_name);
2466 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
2468 timevar_push (TV_DUMP);
2469 open_dump_file (DFI_bp, NULL);
2471 end_branch_prob ();
2473 close_dump_file (DFI_bp, NULL, NULL_RTX);
2474 timevar_pop (TV_DUMP);
2477 #ifdef ASM_FILE_END
2478 ASM_FILE_END (asm_out_file);
2479 #endif
2481 /* Attach a special .ident directive to the end of the file to identify
2482 the version of GCC which compiled this code. The format of the .ident
2483 string is patterned after the ones produced by native SVR4 compilers. */
2484 #ifdef IDENT_ASM_OP
2485 if (!flag_no_ident)
2486 fprintf (asm_out_file, "%s\"GCC: (GNU) %s\"\n",
2487 IDENT_ASM_OP, version_string);
2488 #endif
2490 /* Language-specific end of compilation actions. */
2491 finish_syntax:
2492 if (lang_hooks.finish)
2493 (*lang_hooks.finish) ();
2495 /* Close the dump files. */
2497 if (flag_gen_aux_info)
2499 fclose (aux_info_file);
2500 if (errorcount)
2501 unlink (aux_info_file_name);
2504 if (optimize > 0 && open_dump_file (DFI_combine, NULL))
2506 timevar_push (TV_DUMP);
2507 dump_combine_total_stats (rtl_dump_file);
2508 close_dump_file (DFI_combine, NULL, NULL_RTX);
2509 timevar_pop (TV_DUMP);
2512 /* Close non-debugging input and output files. Take special care to note
2513 whether fclose returns an error, since the pages might still be on the
2514 buffer chain while the file is open. */
2516 finish_parse ();
2518 if (ferror (asm_out_file) != 0)
2519 fatal_io_error ("error writing to %s", asm_file_name);
2520 if (fclose (asm_out_file) != 0)
2521 fatal_io_error ("error closing %s", asm_file_name);
2523 /* Do whatever is necessary to finish printing the graphs. */
2524 if (graph_dump_format != no_graph)
2526 int i;
2528 for (i = 0; i < (int) DFI_MAX; ++i)
2529 if (dump_file[i].initialized && dump_file[i].graph_dump_p)
2531 char seq[16];
2532 char *suffix;
2534 sprintf (seq, ".%02d.", i);
2535 suffix = concat (seq, dump_file[i].extension, NULL);
2536 finish_graph_dump_file (dump_base_name, suffix);
2537 free (suffix);
2541 if (mem_report)
2543 ggc_print_statistics ();
2544 stringpool_statistics ();
2547 /* Free up memory for the benefit of leak detectors. */
2548 free_reg_info ();
2550 /* Stop timing total execution time. */
2551 timevar_stop (TV_TOTAL);
2553 /* Print the times. */
2555 timevar_print (stderr);
2558 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
2559 and TYPE_DECL nodes.
2561 This does nothing for local (non-static) variables, unless the
2562 variable is a register variable with an ASMSPEC. In that case, or
2563 if the variable is not an automatice, it sets up the RTL and
2564 outputs any assembler code (label definition, storage allocation
2565 and initialization).
2567 DECL is the declaration. If ASMSPEC is nonzero, it specifies
2568 the assembler symbol name to be used. TOP_LEVEL is nonzero
2569 if this declaration is not within a function. */
2571 void
2572 rest_of_decl_compilation (decl, asmspec, top_level, at_end)
2573 tree decl;
2574 const char *asmspec;
2575 int top_level;
2576 int at_end;
2578 /* Declarations of variables, and of functions defined elsewhere. */
2580 /* The most obvious approach, to put an #ifndef around where
2581 this macro is used, doesn't work since it's inside a macro call. */
2582 #ifndef ASM_FINISH_DECLARE_OBJECT
2583 #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP, END)
2584 #endif
2586 /* Forward declarations for nested functions are not "external",
2587 but we need to treat them as if they were. */
2588 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
2589 || TREE_CODE (decl) == FUNCTION_DECL)
2591 timevar_push (TV_VARCONST);
2592 if (asmspec)
2593 make_decl_rtl (decl, asmspec);
2594 /* Initialized extern variable exists to be replaced
2595 with its value, or represents something that will be
2596 output in another file. */
2597 if (! (TREE_CODE (decl) == VAR_DECL
2598 && DECL_EXTERNAL (decl) && TREE_READONLY (decl)
2599 && DECL_INITIAL (decl) != 0
2600 && DECL_INITIAL (decl) != error_mark_node))
2601 /* Don't output anything
2602 when a tentative file-scope definition is seen.
2603 But at end of compilation, do output code for them. */
2604 if (! (! at_end && top_level
2605 && (DECL_INITIAL (decl) == 0
2606 || DECL_INITIAL (decl) == error_mark_node)))
2607 assemble_variable (decl, top_level, at_end, 0);
2608 if (decl == last_assemble_variable_decl)
2610 ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
2611 top_level, at_end);
2613 timevar_pop (TV_VARCONST);
2615 else if (DECL_REGISTER (decl) && asmspec != 0)
2617 if (decode_reg_name (asmspec) >= 0)
2619 SET_DECL_RTL (decl, NULL_RTX);
2620 make_decl_rtl (decl, asmspec);
2622 else
2624 error ("invalid register name `%s' for register variable", asmspec);
2625 DECL_REGISTER (decl) = 0;
2626 if (!top_level)
2627 expand_decl (decl);
2630 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2631 else if ((write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2632 && TREE_CODE (decl) == TYPE_DECL)
2634 timevar_push (TV_SYMOUT);
2635 dbxout_symbol (decl, 0);
2636 timevar_pop (TV_SYMOUT);
2638 #endif
2639 #ifdef SDB_DEBUGGING_INFO
2640 else if (write_symbols == SDB_DEBUG && top_level
2641 && TREE_CODE (decl) == TYPE_DECL)
2643 timevar_push (TV_SYMOUT);
2644 sdbout_symbol (decl, 0);
2645 timevar_pop (TV_SYMOUT);
2647 #endif
2650 /* Called after finishing a record, union or enumeral type. */
2652 void
2653 rest_of_type_compilation (type, toplev)
2654 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO) || defined (SDB_DEBUGGING_INFO)
2655 tree type;
2656 int toplev;
2657 #else
2658 tree type ATTRIBUTE_UNUSED;
2659 int toplev ATTRIBUTE_UNUSED;
2660 #endif
2662 timevar_push (TV_SYMOUT);
2663 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2664 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2665 dbxout_symbol (TYPE_STUB_DECL (type), !toplev);
2666 #endif
2667 #ifdef SDB_DEBUGGING_INFO
2668 if (write_symbols == SDB_DEBUG)
2669 sdbout_symbol (TYPE_STUB_DECL (type), !toplev);
2670 #endif
2671 #ifdef DWARF2_DEBUGGING_INFO
2672 if (write_symbols == DWARF2_DEBUG && toplev)
2673 dwarf2out_decl (TYPE_STUB_DECL (type));
2674 #endif
2675 timevar_pop (TV_SYMOUT);
2678 /* DECL is an inline function, whose body is present, but which is not
2679 being output at this point. (We're putting that off until we need
2680 to do it.) If there are any actions that need to take place,
2681 including the emission of debugging information for the function,
2682 this is where they should go. This function may be called by
2683 language-dependent code for front-ends that do not even generate
2684 RTL for functions that don't need to be put out. */
2686 void
2687 note_deferral_of_defined_inline_function (decl)
2688 tree decl ATTRIBUTE_UNUSED;
2690 #ifdef DWARF_DEBUGGING_INFO
2691 /* Generate the DWARF info for the "abstract" instance of a function
2692 which we may later generate inlined and/or out-of-line instances
2693 of. */
2694 if (write_symbols == DWARF_DEBUG
2695 && (DECL_INLINE (decl) || DECL_ABSTRACT (decl))
2696 && ! DECL_ABSTRACT_ORIGIN (decl))
2698 /* The front-end may not have set CURRENT_FUNCTION_DECL, but the
2699 DWARF code expects it to be set in this case. Intuitively,
2700 DECL is the function we just finished defining, so setting
2701 CURRENT_FUNCTION_DECL is sensible. */
2702 tree saved_cfd = current_function_decl;
2703 int was_abstract = DECL_ABSTRACT (decl);
2704 current_function_decl = decl;
2706 /* Let the DWARF code do its work. */
2707 set_decl_abstract_flags (decl, 1);
2708 dwarfout_file_scope_decl (decl, 0);
2709 if (! was_abstract)
2710 set_decl_abstract_flags (decl, 0);
2712 /* Reset CURRENT_FUNCTION_DECL. */
2713 current_function_decl = saved_cfd;
2715 #endif
2718 /* FNDECL is an inline function which is about to be emitted out of line.
2719 Do any preparation, such as emitting abstract debug info for the inline
2720 before it gets mangled by optimization. */
2722 void
2723 note_outlining_of_inline_function (fndecl)
2724 tree fndecl ATTRIBUTE_UNUSED;
2726 #ifdef DWARF2_DEBUGGING_INFO
2727 /* The DWARF 2 backend tries to reduce debugging bloat by not emitting
2728 the abstract description of inline functions until something tries to
2729 reference them. Force it out now, before optimizations mangle the
2730 block tree. */
2731 if (write_symbols == DWARF2_DEBUG)
2732 dwarf2out_abstract_function (fndecl);
2733 #endif
2736 /* This is called from finish_function (within yyparse)
2737 after each top-level definition is parsed.
2738 It is supposed to compile that function or variable
2739 and output the assembler code for it.
2740 After we return, the tree storage is freed. */
2742 void
2743 rest_of_compilation (decl)
2744 tree decl;
2746 register rtx insns;
2747 int tem;
2748 int failure = 0;
2749 int rebuild_label_notes_after_reload;
2750 int register_life_up_to_date;
2752 timevar_push (TV_REST_OF_COMPILATION);
2754 /* Now that we're out of the frontend, we shouldn't have any more
2755 CONCATs anywhere. */
2756 generating_concat_p = 0;
2758 /* When processing delayed functions, prepare_function_start() won't
2759 have been run to re-initialize it. */
2760 cse_not_expected = ! optimize;
2762 /* First, make sure that NOTE_BLOCK is set correctly for each
2763 NOTE_INSN_BLOCK_BEG/NOTE_INSN_BLOCK_END note. */
2764 if (!cfun->x_whole_function_mode_p)
2765 identify_blocks ();
2767 /* Then remove any notes we don't need. That will make iterating
2768 over the instruction sequence faster, and allow the garbage
2769 collector to reclaim the memory used by the notes. */
2770 remove_unnecessary_notes ();
2772 /* In function-at-a-time mode, we do not attempt to keep the BLOCK
2773 tree in sensible shape. So, we just recalculate it here. */
2774 if (cfun->x_whole_function_mode_p)
2775 reorder_blocks ();
2777 init_flow ();
2779 /* If we are reconsidering an inline function
2780 at the end of compilation, skip the stuff for making it inline. */
2782 if (DECL_SAVED_INSNS (decl) == 0)
2784 int inlinable = 0;
2785 tree parent;
2786 const char *lose;
2788 /* If this is nested inside an inlined external function, pretend
2789 it was only declared. Since we cannot inline such functions,
2790 generating code for this one is not only not necessary but will
2791 confuse some debugging output writers. */
2792 for (parent = DECL_CONTEXT (current_function_decl);
2793 parent != NULL_TREE;
2794 parent = get_containing_scope (parent))
2795 if (TREE_CODE (parent) == FUNCTION_DECL
2796 && DECL_INLINE (parent) && DECL_EXTERNAL (parent))
2798 DECL_INITIAL (decl) = 0;
2799 goto exit_rest_of_compilation;
2802 /* If requested, consider whether to make this function inline. */
2803 if ((DECL_INLINE (decl) && !flag_no_inline)
2804 || flag_inline_functions)
2806 timevar_push (TV_INTEGRATION);
2807 lose = function_cannot_inline_p (decl);
2808 timevar_pop (TV_INTEGRATION);
2809 if (lose || ! optimize)
2811 if (warn_inline && DECL_INLINE (decl))
2812 warning_with_decl (decl, lose);
2813 DECL_ABSTRACT_ORIGIN (decl) = 0;
2814 /* Don't really compile an extern inline function.
2815 If we can't make it inline, pretend
2816 it was only declared. */
2817 if (DECL_EXTERNAL (decl))
2819 DECL_INITIAL (decl) = 0;
2820 goto exit_rest_of_compilation;
2823 else
2824 /* ??? Note that this has the effect of making it look
2825 like "inline" was specified for a function if we choose
2826 to inline it. This isn't quite right, but it's
2827 probably not worth the trouble to fix. */
2828 inlinable = DECL_INLINE (decl) = 1;
2831 insns = get_insns ();
2833 /* Dump the rtl code if we are dumping rtl. */
2835 if (open_dump_file (DFI_rtl, decl))
2837 if (DECL_SAVED_INSNS (decl))
2838 fprintf (rtl_dump_file, ";; (integrable)\n\n");
2839 close_dump_file (DFI_rtl, print_rtl, insns);
2842 /* Convert from NOTE_INSN_EH_REGION style notes, and do other
2843 sorts of eh initialization. Delay this until after the
2844 initial rtl dump so that we can see the original nesting. */
2845 convert_from_eh_region_ranges ();
2847 /* If function is inline, and we don't yet know whether to
2848 compile it by itself, defer decision till end of compilation.
2849 finish_compilation will call rest_of_compilation again
2850 for those functions that need to be output. Also defer those
2851 functions that we are supposed to defer. */
2853 if (inlinable
2854 || (DECL_INLINE (decl)
2855 && ((! TREE_PUBLIC (decl) && ! TREE_ADDRESSABLE (decl)
2856 && ! flag_keep_inline_functions)
2857 || DECL_EXTERNAL (decl))))
2858 DECL_DEFER_OUTPUT (decl) = 1;
2860 if (DECL_INLINE (decl))
2861 /* DWARF wants seperate debugging info for abstract and
2862 concrete instances of all inline functions, including those
2863 declared inline but not inlined, and those inlined even
2864 though they weren't declared inline. Conveniently, that's
2865 what DECL_INLINE means at this point. */
2866 note_deferral_of_defined_inline_function (decl);
2868 if (DECL_DEFER_OUTPUT (decl))
2870 /* If -Wreturn-type, we have to do a bit of compilation. We just
2871 want to call jump_optimize to figure out whether or not we can
2872 fall off the end of the function; we do the minimum amount of
2873 work necessary to make that safe. And, we set optimize to zero
2874 to keep jump_optimize from working too hard. */
2875 if (warn_return_type)
2877 int saved_optimize = optimize;
2879 optimize = 0;
2880 find_exception_handler_labels ();
2881 jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
2882 !JUMP_AFTER_REGSCAN);
2883 optimize = saved_optimize;
2886 current_function_nothrow = nothrow_function_p ();
2887 if (current_function_nothrow)
2888 /* Now we know that this can't throw; set the flag for the benefit
2889 of other functions later in this translation unit. */
2890 TREE_NOTHROW (current_function_decl) = 1;
2892 timevar_push (TV_INTEGRATION);
2893 save_for_inline (decl);
2894 timevar_pop (TV_INTEGRATION);
2895 DECL_SAVED_INSNS (decl)->inlinable = inlinable;
2896 goto exit_rest_of_compilation;
2899 /* If specified extern inline but we aren't inlining it, we are
2900 done. This goes for anything that gets here with DECL_EXTERNAL
2901 set, not just things with DECL_INLINE. */
2902 if (DECL_EXTERNAL (decl))
2903 goto exit_rest_of_compilation;
2906 ggc_collect ();
2908 /* Initialize some variables used by the optimizers. */
2909 init_function_for_compilation ();
2911 if (! DECL_DEFER_OUTPUT (decl))
2912 TREE_ASM_WRITTEN (decl) = 1;
2914 /* Now that integrate will no longer see our rtl, we need not
2915 distinguish between the return value of this function and the
2916 return value of called functions. Also, we can remove all SETs
2917 of subregs of hard registers; they are only here because of
2918 integrate.*/
2919 rtx_equal_function_value_matters = 0;
2920 purge_hard_subreg_sets (get_insns ());
2922 /* Don't return yet if -Wreturn-type; we need to do jump_optimize. */
2923 if ((rtl_dump_and_exit || flag_syntax_only) && !warn_return_type)
2924 goto exit_rest_of_compilation;
2926 /* We may have potential sibling or tail recursion sites. Select one
2927 (of possibly multiple) methods of performing the call. */
2928 if (flag_optimize_sibling_calls)
2930 timevar_push (TV_JUMP);
2931 open_dump_file (DFI_sibling, decl);
2933 optimize_sibling_and_tail_recursive_calls ();
2935 close_dump_file (DFI_sibling, print_rtl, get_insns ());
2936 timevar_pop (TV_JUMP);
2939 /* Complete generation of exception handling code. */
2940 find_exception_handler_labels ();
2941 if (doing_eh (0))
2943 timevar_push (TV_JUMP);
2944 open_dump_file (DFI_eh, decl);
2946 finish_eh_generation ();
2948 close_dump_file (DFI_eh, print_rtl, get_insns ());
2949 timevar_pop (TV_JUMP);
2952 #ifdef FINALIZE_PIC
2953 /* If we are doing position-independent code generation, now
2954 is the time to output special prologues and epilogues.
2955 We do not want to do this earlier, because it just clutters
2956 up inline functions with meaningless insns. */
2957 if (flag_pic)
2958 FINALIZE_PIC;
2959 #endif
2961 insns = get_insns ();
2963 /* Copy any shared structure that should not be shared. */
2964 unshare_all_rtl (current_function_decl, insns);
2966 #ifdef SETJMP_VIA_SAVE_AREA
2967 /* This must be performed before virutal register instantiation. */
2968 if (current_function_calls_alloca)
2969 optimize_save_area_alloca (insns);
2970 #endif
2972 /* Instantiate all virtual registers. */
2973 instantiate_virtual_regs (current_function_decl, insns);
2975 open_dump_file (DFI_jump, decl);
2977 /* Always do one jump optimization pass to ensure that JUMP_LABEL fields
2978 are initialized and to compute whether control can drop off the end
2979 of the function. */
2981 timevar_push (TV_JUMP);
2982 /* Turn NOTE_INSN_EXPECTED_VALUE into REG_BR_PROB. Do this
2983 before jump optimization switches branch directions. */
2984 expected_value_to_br_prob ();
2986 reg_scan (insns, max_reg_num (), 0);
2987 jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
2988 JUMP_AFTER_REGSCAN);
2990 timevar_pop (TV_JUMP);
2992 /* Now is when we stop if -fsyntax-only and -Wreturn-type. */
2993 if (rtl_dump_and_exit || flag_syntax_only || DECL_DEFER_OUTPUT (decl))
2995 close_dump_file (DFI_jump, print_rtl, insns);
2996 goto exit_rest_of_compilation;
2999 timevar_push (TV_JUMP);
3001 if (optimize > 0)
3003 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3004 cleanup_cfg ();
3006 /* ??? Run if-conversion before delete_null_pointer_checks,
3007 since the later does not preserve the CFG. This should
3008 be changed -- no since converting if's that are going to
3009 be deleted. */
3010 timevar_push (TV_IFCVT);
3011 if_convert (0);
3012 timevar_pop (TV_IFCVT);
3014 /* Try to identify useless null pointer tests and delete them. */
3015 if (flag_delete_null_pointer_checks)
3016 delete_null_pointer_checks (insns);
3019 /* Jump optimization, and the removal of NULL pointer checks, may
3020 have reduced the number of instructions substantially. CSE, and
3021 future passes, allocate arrays whose dimensions involve the
3022 maximum instruction UID, so if we can reduce the maximum UID
3023 we'll save big on memory. */
3024 renumber_insns (rtl_dump_file);
3025 timevar_pop (TV_JUMP);
3027 close_dump_file (DFI_jump, print_rtl, insns);
3029 ggc_collect ();
3031 /* Perform common subexpression elimination.
3032 Nonzero value from `cse_main' means that jumps were simplified
3033 and some code may now be unreachable, so do
3034 jump optimization again. */
3036 if (optimize > 0)
3038 open_dump_file (DFI_cse, decl);
3039 timevar_push (TV_CSE);
3041 reg_scan (insns, max_reg_num (), 1);
3043 if (flag_thread_jumps)
3045 timevar_push (TV_JUMP);
3046 thread_jumps (insns, max_reg_num (), 1);
3047 timevar_pop (TV_JUMP);
3050 tem = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
3052 /* If we are not running the second CSE pass, then we are no longer
3053 expecting CSE to be run. */
3054 cse_not_expected = !flag_rerun_cse_after_loop;
3056 if (tem || optimize > 1)
3058 timevar_push (TV_JUMP);
3059 jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
3060 !JUMP_AFTER_REGSCAN);
3061 timevar_pop (TV_JUMP);
3064 /* Run this after jump optmizations remove all the unreachable code
3065 so that unreachable code will not keep values live. */
3066 delete_trivially_dead_insns (insns, max_reg_num ());
3068 /* Try to identify useless null pointer tests and delete them. */
3069 if (flag_delete_null_pointer_checks)
3071 timevar_push (TV_JUMP);
3072 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3074 cleanup_cfg ();
3076 delete_null_pointer_checks (insns);
3077 timevar_pop (TV_JUMP);
3080 /* The second pass of jump optimization is likely to have
3081 removed a bunch more instructions. */
3082 renumber_insns (rtl_dump_file);
3084 timevar_pop (TV_CSE);
3085 close_dump_file (DFI_cse, print_rtl, insns);
3088 open_dump_file (DFI_addressof, decl);
3090 purge_addressof (insns);
3091 reg_scan (insns, max_reg_num (), 1);
3093 close_dump_file (DFI_addressof, print_rtl, insns);
3095 ggc_collect ();
3097 if (optimize > 0 && flag_ssa)
3099 /* Convert to SSA form. */
3101 timevar_push (TV_TO_SSA);
3102 open_dump_file (DFI_ssa, decl);
3104 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3105 cleanup_cfg ();
3106 convert_to_ssa ();
3108 close_dump_file (DFI_ssa, print_rtl_with_bb, insns);
3109 timevar_pop (TV_TO_SSA);
3111 /* The SSA implementation uses basic block numbers in its phi
3112 nodes. Thus, changing the control-flow graph or the basic
3113 blocks, e.g., calling find_basic_blocks () or cleanup_cfg (),
3114 may cause problems. */
3116 if (flag_dce)
3118 /* Remove dead code. */
3120 timevar_push (TV_DEAD_CODE_ELIM);
3121 open_dump_file (DFI_dce, decl);
3123 insns = get_insns ();
3124 eliminate_dead_code();
3126 close_dump_file (DFI_dce, print_rtl_with_bb, insns);
3127 timevar_pop (TV_DEAD_CODE_ELIM);
3130 /* Convert from SSA form. */
3132 timevar_push (TV_FROM_SSA);
3133 open_dump_file (DFI_ussa, decl);
3135 convert_from_ssa ();
3136 /* New registers have been created. Rescan their usage. */
3137 reg_scan (insns, max_reg_num (), 1);
3138 /* Life analysis used in SSA adds log_links but these
3139 shouldn't be there until the flow stage, so clear
3140 them away. */
3141 clear_log_links (insns);
3143 close_dump_file (DFI_ussa, print_rtl_with_bb, insns);
3144 timevar_pop (TV_FROM_SSA);
3146 ggc_collect ();
3149 /* Perform global cse. */
3151 if (optimize > 0 && flag_gcse)
3153 timevar_push (TV_GCSE);
3154 open_dump_file (DFI_gcse, decl);
3156 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3157 cleanup_cfg ();
3158 tem = gcse_main (insns, rtl_dump_file);
3160 /* If gcse altered any jumps, rerun jump optimizations to clean
3161 things up. */
3162 if (tem)
3164 timevar_push (TV_JUMP);
3165 jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
3166 !JUMP_AFTER_REGSCAN);
3167 timevar_pop (TV_JUMP);
3170 close_dump_file (DFI_gcse, print_rtl, insns);
3171 timevar_pop (TV_GCSE);
3173 ggc_collect ();
3176 /* Move constant computations out of loops. */
3178 if (optimize > 0)
3180 timevar_push (TV_LOOP);
3181 open_dump_file (DFI_loop, decl);
3183 if (flag_rerun_loop_opt)
3185 /* We only want to perform unrolling once. */
3187 loop_optimize (insns, rtl_dump_file, 0);
3189 /* The first call to loop_optimize makes some instructions
3190 trivially dead. We delete those instructions now in the
3191 hope that doing so will make the heuristics in loop work
3192 better and possibly speed up compilation. */
3193 delete_trivially_dead_insns (insns, max_reg_num ());
3195 /* The regscan pass is currently necessary as the alias
3196 analysis code depends on this information. */
3197 reg_scan (insns, max_reg_num (), 1);
3199 loop_optimize (insns, rtl_dump_file,
3200 (flag_unroll_loops ? LOOP_UNROLL : 0) | LOOP_BCT);
3202 close_dump_file (DFI_loop, print_rtl, insns);
3203 timevar_pop (TV_LOOP);
3205 ggc_collect ();
3208 if (optimize > 0)
3210 timevar_push (TV_CSE2);
3211 open_dump_file (DFI_cse2, decl);
3213 if (flag_rerun_cse_after_loop)
3215 /* Running another jump optimization pass before the second
3216 cse pass sometimes simplifies the RTL enough to allow
3217 the second CSE pass to do a better job. Jump_optimize can change
3218 max_reg_num so we must rerun reg_scan afterwards.
3219 ??? Rework to not call reg_scan so often. */
3220 timevar_push (TV_JUMP);
3222 reg_scan (insns, max_reg_num (), 0);
3223 jump_optimize (insns, !JUMP_CROSS_JUMP,
3224 !JUMP_NOOP_MOVES, JUMP_AFTER_REGSCAN);
3226 timevar_push (TV_IFCVT);
3228 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3229 cleanup_cfg ();
3230 if_convert (0);
3232 timevar_pop(TV_IFCVT);
3234 timevar_pop (TV_JUMP);
3236 reg_scan (insns, max_reg_num (), 0);
3237 tem = cse_main (insns, max_reg_num (), 1, rtl_dump_file);
3239 if (tem)
3241 timevar_push (TV_JUMP);
3242 jump_optimize (insns, !JUMP_CROSS_JUMP,
3243 !JUMP_NOOP_MOVES, !JUMP_AFTER_REGSCAN);
3244 timevar_pop (TV_JUMP);
3248 if (flag_thread_jumps)
3250 /* This pass of jump threading straightens out code
3251 that was kinked by loop optimization. */
3252 timevar_push (TV_JUMP);
3253 reg_scan (insns, max_reg_num (), 0);
3254 thread_jumps (insns, max_reg_num (), 0);
3255 timevar_pop (TV_JUMP);
3258 close_dump_file (DFI_cse2, print_rtl, insns);
3259 timevar_pop (TV_CSE2);
3261 ggc_collect ();
3264 cse_not_expected = 1;
3266 regclass_init ();
3268 /* Do control and data flow analysis; wrote some of the results to
3269 the dump file. */
3271 timevar_push (TV_FLOW);
3272 open_dump_file (DFI_cfg, decl);
3274 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3275 cleanup_cfg ();
3276 check_function_return_warnings ();
3278 close_dump_file (DFI_cfg, print_rtl_with_bb, insns);
3280 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
3282 timevar_push (TV_BRANCH_PROB);
3283 open_dump_file (DFI_bp, decl);
3285 branch_prob ();
3287 close_dump_file (DFI_bp, print_rtl_with_bb, insns);
3288 timevar_pop (TV_BRANCH_PROB);
3291 open_dump_file (DFI_life, decl);
3292 if (optimize)
3294 struct loops loops;
3296 /* Discover and record the loop depth at the head of each basic
3297 block. The loop infrastructure does the real job for us. */
3298 flow_loops_find (&loops, LOOP_TREE);
3300 /* Estimate using heuristics if no profiling info is available. */
3301 if (flag_guess_branch_prob)
3302 estimate_probability (&loops);
3304 if (rtl_dump_file)
3305 flow_loops_dump (&loops, rtl_dump_file, NULL, 0);
3307 flow_loops_free (&loops);
3309 life_analysis (insns, rtl_dump_file, PROP_FINAL);
3310 mark_constant_function ();
3311 timevar_pop (TV_FLOW);
3313 register_life_up_to_date = 1;
3314 no_new_pseudos = 1;
3316 if (warn_uninitialized || extra_warnings)
3318 uninitialized_vars_warning (DECL_INITIAL (decl));
3319 if (extra_warnings)
3320 setjmp_args_warning ();
3323 close_dump_file (DFI_life, print_rtl_with_bb, insns);
3325 ggc_collect ();
3327 /* If -opt, try combining insns through substitution. */
3329 if (optimize > 0)
3331 int rebuild_jump_labels_after_combine = 0;
3333 timevar_push (TV_COMBINE);
3334 open_dump_file (DFI_combine, decl);
3336 rebuild_jump_labels_after_combine
3337 = combine_instructions (insns, max_reg_num ());
3339 /* Combining insns may have turned an indirect jump into a
3340 direct jump. Rebuid the JUMP_LABEL fields of jumping
3341 instructions. */
3342 if (rebuild_jump_labels_after_combine)
3344 timevar_push (TV_JUMP);
3345 rebuild_jump_labels (insns);
3346 timevar_pop (TV_JUMP);
3348 timevar_push (TV_FLOW);
3349 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3350 cleanup_cfg ();
3352 /* Blimey. We've got to have the CFG up to date for the call to
3353 if_convert below. However, the random deletion of blocks
3354 without updating life info can wind up with Wierd Stuff in
3355 global_live_at_end. We then run sched1, which updates things
3356 properly, discovers the wierdness and aborts. */
3357 update_life_info (NULL, UPDATE_LIFE_GLOBAL_RM_NOTES,
3358 PROP_DEATH_NOTES | PROP_KILL_DEAD_CODE
3359 | PROP_SCAN_DEAD_CODE);
3361 timevar_pop (TV_FLOW);
3364 close_dump_file (DFI_combine, print_rtl_with_bb, insns);
3365 timevar_pop (TV_COMBINE);
3367 ggc_collect ();
3370 /* Rerun if-conversion, as combine may have simplified things enough to
3371 now meet sequence length restrictions. */
3372 if (optimize > 0)
3374 timevar_push (TV_IFCVT);
3375 open_dump_file (DFI_ce, decl);
3377 no_new_pseudos = 0;
3378 if_convert (1);
3379 no_new_pseudos = 1;
3381 close_dump_file (DFI_ce, print_rtl_with_bb, insns);
3382 timevar_pop (TV_IFCVT);
3385 /* Register allocation pre-pass, to reduce number of moves
3386 necessary for two-address machines. */
3387 if (optimize > 0 && (flag_regmove || flag_expensive_optimizations))
3389 timevar_push (TV_REGMOVE);
3390 open_dump_file (DFI_regmove, decl);
3392 regmove_optimize (insns, max_reg_num (), rtl_dump_file);
3394 close_dump_file (DFI_regmove, print_rtl_with_bb, insns);
3395 timevar_pop (TV_REGMOVE);
3397 ggc_collect ();
3400 /* Any of the several passes since flow1 will have munged register
3401 lifetime data a bit. */
3402 if (optimize > 0)
3403 register_life_up_to_date = 0;
3405 #ifdef OPTIMIZE_MODE_SWITCHING
3406 timevar_push (TV_GCSE);
3408 if (optimize_mode_switching (NULL_PTR))
3410 /* We did work, and so had to regenerate global life information.
3411 Take advantage of this and don't re-recompute register life
3412 information below. */
3413 register_life_up_to_date = 1;
3416 timevar_pop (TV_GCSE);
3417 #endif
3419 #ifdef INSN_SCHEDULING
3421 /* Print function header into sched dump now
3422 because doing the sched analysis makes some of the dump. */
3423 if (optimize > 0 && flag_schedule_insns)
3425 timevar_push (TV_SCHED);
3426 open_dump_file (DFI_sched, decl);
3428 /* Do control and data sched analysis,
3429 and write some of the results to dump file. */
3431 schedule_insns (rtl_dump_file);
3433 close_dump_file (DFI_sched, print_rtl_with_bb, insns);
3434 timevar_pop (TV_SCHED);
3436 ggc_collect ();
3438 /* Register lifetime information was updated as part of verifying
3439 the schedule. */
3440 register_life_up_to_date = 1;
3442 #endif
3444 /* Determine if the current function is a leaf before running reload
3445 since this can impact optimizations done by the prologue and
3446 epilogue thus changing register elimination offsets. */
3447 current_function_is_leaf = leaf_function_p ();
3449 timevar_push (TV_LOCAL_ALLOC);
3450 open_dump_file (DFI_lreg, decl);
3452 /* Allocate pseudo-regs that are used only within 1 basic block.
3454 RUN_JUMP_AFTER_RELOAD records whether or not we need to rerun the
3455 jump optimizer after register allocation and reloading are finished. */
3457 if (! register_life_up_to_date)
3458 recompute_reg_usage (insns, ! optimize_size);
3459 regclass (insns, max_reg_num (), rtl_dump_file);
3460 rebuild_label_notes_after_reload = local_alloc ();
3462 timevar_pop (TV_LOCAL_ALLOC);
3464 if (dump_file[DFI_lreg].enabled)
3466 timevar_push (TV_DUMP);
3468 dump_flow_info (rtl_dump_file);
3469 dump_local_alloc (rtl_dump_file);
3471 close_dump_file (DFI_lreg, print_rtl_with_bb, insns);
3472 timevar_pop (TV_DUMP);
3475 ggc_collect ();
3477 timevar_push (TV_GLOBAL_ALLOC);
3478 open_dump_file (DFI_greg, decl);
3480 /* If optimizing, allocate remaining pseudo-regs. Do the reload
3481 pass fixing up any insns that are invalid. */
3483 if (optimize)
3484 failure = global_alloc (rtl_dump_file);
3485 else
3487 build_insn_chain (insns);
3488 failure = reload (insns, 0);
3491 timevar_pop (TV_GLOBAL_ALLOC);
3493 if (dump_file[DFI_greg].enabled)
3495 timevar_push (TV_DUMP);
3497 dump_global_regs (rtl_dump_file);
3499 close_dump_file (DFI_greg, print_rtl_with_bb, insns);
3500 timevar_pop (TV_DUMP);
3503 if (failure)
3504 goto exit_rest_of_compilation;
3506 ggc_collect ();
3508 open_dump_file (DFI_postreload, decl);
3510 /* Do a very simple CSE pass over just the hard registers. */
3511 if (optimize > 0)
3513 timevar_push (TV_RELOAD_CSE_REGS);
3514 reload_cse_regs (insns);
3515 timevar_pop (TV_RELOAD_CSE_REGS);
3518 /* If optimizing, then go ahead and split insns now since we are about
3519 to recompute flow information anyway. */
3520 if (optimize > 0)
3522 int old_labelnum = max_label_num ();
3524 split_all_insns (0);
3525 rebuild_label_notes_after_reload |= old_labelnum != max_label_num ();
3528 /* Register allocation and reloading may have turned an indirect jump into
3529 a direct jump. If so, we must rebuild the JUMP_LABEL fields of
3530 jumping instructions. */
3531 if (rebuild_label_notes_after_reload)
3533 timevar_push (TV_JUMP);
3535 rebuild_jump_labels (insns);
3537 timevar_pop (TV_JUMP);
3540 close_dump_file (DFI_postreload, print_rtl_with_bb, insns);
3542 /* Re-create the death notes which were deleted during reload. */
3543 timevar_push (TV_FLOW2);
3544 open_dump_file (DFI_flow2, decl);
3546 jump_optimize (insns, !JUMP_CROSS_JUMP,
3547 JUMP_NOOP_MOVES, !JUMP_AFTER_REGSCAN);
3548 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3550 /* On some machines, the prologue and epilogue code, or parts thereof,
3551 can be represented as RTL. Doing so lets us schedule insns between
3552 it and the rest of the code and also allows delayed branch
3553 scheduling to operate in the epilogue. */
3554 thread_prologue_and_epilogue_insns (insns);
3556 if (optimize)
3558 cleanup_cfg ();
3559 life_analysis (insns, rtl_dump_file, PROP_FINAL);
3561 /* This is kind of a heuristic. We need to run combine_stack_adjustments
3562 even for machines with possibly nonzero RETURN_POPS_ARGS
3563 and ACCUMULATE_OUTGOING_ARGS. We expect that only ports having
3564 push instructions will have popping returns. */
3565 #ifndef PUSH_ROUNDING
3566 if (!ACCUMULATE_OUTGOING_ARGS)
3567 #endif
3568 combine_stack_adjustments ();
3570 ggc_collect ();
3573 flow2_completed = 1;
3575 close_dump_file (DFI_flow2, print_rtl_with_bb, insns);
3576 timevar_pop (TV_FLOW2);
3578 #ifdef HAVE_peephole2
3579 if (optimize > 0 && flag_peephole2)
3581 timevar_push (TV_PEEPHOLE2);
3582 open_dump_file (DFI_peephole2, decl);
3584 peephole2_optimize (rtl_dump_file);
3586 close_dump_file (DFI_peephole2, print_rtl_with_bb, insns);
3587 timevar_pop (TV_PEEPHOLE2);
3589 #endif
3591 if (optimize > 0 && flag_rename_registers)
3593 timevar_push (TV_RENAME_REGISTERS);
3594 open_dump_file (DFI_rnreg, decl);
3596 regrename_optimize ();
3598 close_dump_file (DFI_rnreg, print_rtl_with_bb, insns);
3599 timevar_pop (TV_RENAME_REGISTERS);
3602 if (optimize > 0)
3604 timevar_push (TV_IFCVT2);
3605 open_dump_file (DFI_ce2, decl);
3607 if_convert (1);
3609 close_dump_file (DFI_ce2, print_rtl_with_bb, insns);
3610 timevar_pop (TV_IFCVT2);
3613 #ifdef INSN_SCHEDULING
3614 if (optimize > 0 && flag_schedule_insns_after_reload)
3616 timevar_push (TV_SCHED2);
3617 open_dump_file (DFI_sched2, decl);
3619 /* Do control and data sched analysis again,
3620 and write some more of the results to dump file. */
3622 schedule_insns (rtl_dump_file);
3624 close_dump_file (DFI_sched2, print_rtl_with_bb, insns);
3625 timevar_pop (TV_SCHED2);
3627 ggc_collect ();
3629 #endif
3631 #ifdef LEAF_REGISTERS
3632 current_function_uses_only_leaf_regs
3633 = optimize > 0 && only_leaf_regs_used () && leaf_function_p ();
3634 #endif
3636 if (optimize > 0 && flag_reorder_blocks)
3638 timevar_push (TV_REORDER_BLOCKS);
3639 open_dump_file (DFI_bbro, decl);
3641 reorder_basic_blocks ();
3643 close_dump_file (DFI_bbro, print_rtl_with_bb, insns);
3644 timevar_pop (TV_REORDER_BLOCKS);
3647 /* One more attempt to remove jumps to .+1 left by dead-store elimination.
3648 Also do cross-jumping this time and delete no-op move insns. */
3650 if (optimize > 0)
3652 timevar_push (TV_JUMP);
3653 open_dump_file (DFI_jump2, decl);
3655 jump_optimize (insns, JUMP_CROSS_JUMP, JUMP_NOOP_MOVES,
3656 !JUMP_AFTER_REGSCAN);
3658 /* CFG no longer kept up to date. */
3660 close_dump_file (DFI_jump2, print_rtl, insns);
3661 timevar_pop (TV_JUMP);
3664 /* If a machine dependent reorganization is needed, call it. */
3665 #ifdef MACHINE_DEPENDENT_REORG
3666 open_dump_file (DFI_mach, decl);
3668 MACHINE_DEPENDENT_REORG (insns);
3670 close_dump_file (DFI_mach, print_rtl, insns);
3672 ggc_collect ();
3673 #endif
3675 /* If a scheduling pass for delayed branches is to be done,
3676 call the scheduling code. */
3678 #ifdef DELAY_SLOTS
3679 if (optimize > 0 && flag_delayed_branch)
3681 timevar_push (TV_DBR_SCHED);
3682 open_dump_file (DFI_dbr, decl);
3684 dbr_schedule (insns, rtl_dump_file);
3686 close_dump_file (DFI_dbr, print_rtl, insns);
3687 timevar_pop (TV_DBR_SCHED);
3689 ggc_collect ();
3691 #endif
3693 #ifndef STACK_REGS
3694 /* ??? Do this before shorten branches so that we aren't creating
3695 insns too late and fail sanity checks in final. */
3696 convert_to_eh_region_ranges ();
3697 #endif
3699 /* Shorten branches.
3701 Note this must run before reg-stack because of death note (ab)use
3702 in the ia32 backend. */
3703 timevar_push (TV_SHORTEN_BRANCH);
3704 shorten_branches (get_insns ());
3705 timevar_pop (TV_SHORTEN_BRANCH);
3707 #ifdef STACK_REGS
3708 timevar_push (TV_REG_STACK);
3709 open_dump_file (DFI_stack, decl);
3711 reg_to_stack (insns, rtl_dump_file);
3713 close_dump_file (DFI_stack, print_rtl, insns);
3714 timevar_pop (TV_REG_STACK);
3716 ggc_collect ();
3718 convert_to_eh_region_ranges ();
3719 #endif
3721 current_function_nothrow = nothrow_function_p ();
3722 if (current_function_nothrow)
3723 /* Now we know that this can't throw; set the flag for the benefit
3724 of other functions later in this translation unit. */
3725 TREE_NOTHROW (current_function_decl) = 1;
3727 /* Now turn the rtl into assembler code. */
3729 timevar_push (TV_FINAL);
3731 rtx x;
3732 const char *fnname;
3734 /* Get the function's name, as described by its RTL. This may be
3735 different from the DECL_NAME name used in the source file. */
3737 x = DECL_RTL (decl);
3738 if (GET_CODE (x) != MEM)
3739 abort ();
3740 x = XEXP (x, 0);
3741 if (GET_CODE (x) != SYMBOL_REF)
3742 abort ();
3743 fnname = XSTR (x, 0);
3745 assemble_start_function (decl, fnname);
3746 final_start_function (insns, asm_out_file, optimize);
3747 final (insns, asm_out_file, optimize, 0);
3748 final_end_function (insns, asm_out_file, optimize);
3750 #ifdef IA64_UNWIND_INFO
3751 /* ??? The IA-64 ".handlerdata" directive must be issued before
3752 the ".endp" directive that closes the procedure descriptor. */
3753 output_function_exception_table ();
3754 #endif
3756 assemble_end_function (decl, fnname);
3758 #ifndef IA64_UNWIND_INFO
3759 /* Otherwise, it feels unclean to switch sections in the middle. */
3760 output_function_exception_table ();
3761 #endif
3763 if (! quiet_flag)
3764 fflush (asm_out_file);
3766 /* Release all memory allocated by flow. */
3767 free_basic_block_vars (0);
3769 /* Release all memory held by regsets now. */
3770 regset_release_memory ();
3772 timevar_pop (TV_FINAL);
3774 ggc_collect ();
3776 /* Write DBX symbols if requested. */
3778 /* Note that for those inline functions where we don't initially
3779 know for certain that we will be generating an out-of-line copy,
3780 the first invocation of this routine (rest_of_compilation) will
3781 skip over this code by doing a `goto exit_rest_of_compilation;'.
3782 Later on, finish_compilation will call rest_of_compilation again
3783 for those inline functions that need to have out-of-line copies
3784 generated. During that call, we *will* be routed past here. */
3786 timevar_push (TV_SYMOUT);
3787 #ifdef DBX_DEBUGGING_INFO
3788 if (write_symbols == DBX_DEBUG)
3789 dbxout_function (decl);
3790 #endif
3792 #ifdef DWARF_DEBUGGING_INFO
3793 if (write_symbols == DWARF_DEBUG)
3794 dwarfout_file_scope_decl (decl, 0);
3795 #endif
3797 #ifdef DWARF2_DEBUGGING_INFO
3798 if (write_symbols == DWARF2_DEBUG)
3799 dwarf2out_decl (decl);
3800 #endif
3801 timevar_pop (TV_SYMOUT);
3803 exit_rest_of_compilation:
3805 /* In case the function was not output,
3806 don't leave any temporary anonymous types
3807 queued up for sdb output. */
3808 #ifdef SDB_DEBUGGING_INFO
3809 if (write_symbols == SDB_DEBUG)
3810 sdbout_types (NULL_TREE);
3811 #endif
3813 reload_completed = 0;
3814 flow2_completed = 0;
3815 no_new_pseudos = 0;
3817 timevar_push (TV_FINAL);
3819 /* Clear out the insn_length contents now that they are no
3820 longer valid. */
3821 init_insn_lengths ();
3823 /* Clear out the real_constant_chain before some of the rtx's
3824 it runs through become garbage. */
3825 clear_const_double_mem ();
3827 /* Show no temporary slots allocated. */
3828 init_temp_slots ();
3830 free_basic_block_vars (0);
3832 timevar_pop (TV_FINAL);
3834 /* Make sure volatile mem refs aren't considered valid operands for
3835 arithmetic insns. We must call this here if this is a nested inline
3836 function, since the above code leaves us in the init_recog state
3837 (from final.c), and the function context push/pop code does not
3838 save/restore volatile_ok.
3840 ??? Maybe it isn't necessary for expand_start_function to call this
3841 anymore if we do it here? */
3843 init_recog_no_volatile ();
3845 /* We're done with this function. Free up memory if we can. */
3846 free_after_parsing (cfun);
3847 if (! DECL_DEFER_OUTPUT (decl))
3848 free_after_compilation (cfun);
3849 cfun = 0;
3851 ggc_collect ();
3853 timevar_pop (TV_REST_OF_COMPILATION);
3856 static void
3857 display_help ()
3859 int undoc;
3860 unsigned long i;
3861 const char *lang;
3863 printf (_(" -ffixed-<register> Mark <register> as being unavailable to the compiler\n"));
3864 printf (_(" -fcall-used-<register> Mark <register> as being corrupted by function calls\n"));
3865 printf (_(" -fcall-saved-<register> Mark <register> as being preserved across functions\n"));
3866 printf (_(" -finline-limit=<number> Limits the size of inlined functions to <number>\n"));
3867 printf (_(" -fmessage-length=<number> Limits diagnostics messages lengths to <number> characters per line. 0 suppresses line-wrapping\n"));
3868 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"));
3870 for (i = ARRAY_SIZE (f_options); i--;)
3872 const char *description = f_options[i].description;
3874 if (description != NULL && * description != 0)
3875 printf (" -f%-21s %s\n",
3876 f_options[i].string, _(description));
3879 printf (_(" -O[number] Set optimisation level to [number]\n"));
3880 printf (_(" -Os Optimise for space rather than speed\n"));
3881 for (i = sizeof (compiler_params); i--;)
3883 const char *description = compiler_params[i].help;
3884 const int length = 21-strlen(compiler_params[i].option);
3886 if (description != NULL && * description != 0)
3887 printf (" --param %s=<value>%.*s%s\n",
3888 compiler_params[i].option,
3889 length > 0 ? length : 1, " ",
3890 _(description));
3892 printf (_(" -pedantic Issue warnings needed by strict compliance to ISO C\n"));
3893 printf (_(" -pedantic-errors Like -pedantic except that errors are produced\n"));
3894 printf (_(" -w Suppress warnings\n"));
3895 printf (_(" -W Enable extra warnings\n"));
3897 for (i = ARRAY_SIZE (W_options); i--;)
3899 const char *description = W_options[i].description;
3901 if (description != NULL && * description != 0)
3902 printf (" -W%-21s %s\n",
3903 W_options[i].string, _(description));
3906 printf (_(" -Wunused Enable unused warnings\n"));
3907 printf (_(" -Wid-clash-<num> Warn if 2 identifiers have the same first <num> chars\n"));
3908 printf (_(" -Wlarger-than-<number> Warn if an object is larger than <number> bytes\n"));
3909 printf (_(" -p Enable function profiling\n"));
3910 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER)
3911 printf (_(" -a Enable block profiling \n"));
3912 #endif
3913 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER) || defined FUNCTION_BLOCK_PROFILER_EXIT
3914 printf (_(" -ax Enable jump profiling \n"));
3915 #endif
3916 printf (_(" -o <file> Place output into <file> \n"));
3917 printf (_("\
3918 -G <number> Put global and static data smaller than <number>\n\
3919 bytes into a special section (on some targets)\n"));
3921 for (i = ARRAY_SIZE (debug_args); i--;)
3923 if (debug_args[i].description != NULL)
3924 printf (" -g%-21s %s\n",
3925 debug_args[i].arg, _(debug_args[i].description));
3928 printf (_(" -aux-info <file> Emit declaration info into <file>.X\n"));
3929 printf (_(" -quiet Do not display functions compiled or elapsed time\n"));
3930 printf (_(" -version Display the compiler's version\n"));
3931 printf (_(" -d[letters] Enable dumps from specific passes of the compiler\n"));
3932 printf (_(" -dumpbase <file> Base name to be used for dumps from specific passes\n"));
3933 #if defined INSN_SCHEDULING
3934 printf (_(" -fsched-verbose=<number> Set the verbosity level of the scheduler\n"));
3935 #endif
3936 printf (_(" --help Display this information\n"));
3938 undoc = 0;
3939 lang = "language";
3941 /* Display descriptions of language specific options.
3942 If there is no description, note that there is an undocumented option.
3943 If the description is empty, do not display anything. (This allows
3944 options to be deliberately undocumented, for whatever reason).
3945 If the option string is missing, then this is a marker, indicating
3946 that the description string is in fact the name of a language, whose
3947 language specific options are to follow. */
3949 if (ARRAY_SIZE (documented_lang_options) > 1)
3951 printf (_("\nLanguage specific options:\n"));
3953 for (i = 0; i < ARRAY_SIZE (documented_lang_options); i++)
3955 const char *description = documented_lang_options[i].description;
3956 const char *option = documented_lang_options[i].option;
3958 if (description == NULL)
3960 undoc = 1;
3962 if (extra_warnings)
3963 printf (_(" %-23.23s [undocumented]\n"), option);
3965 else if (*description == 0)
3966 continue;
3967 else if (option == NULL)
3969 if (undoc)
3970 printf
3971 (_("\nThere are undocumented %s specific options as well.\n"),
3972 lang);
3973 undoc = 0;
3975 printf (_("\n Options for %s:\n"), description);
3977 lang = description;
3979 else
3980 printf (" %-23.23s %s\n", option, _(description));
3984 if (undoc)
3985 printf (_("\nThere are undocumented %s specific options as well.\n"),
3986 lang);
3988 display_target_options ();
3991 static void
3992 display_target_options ()
3994 int undoc,i;
3996 if (ARRAY_SIZE (target_switches) > 1
3997 #ifdef TARGET_OPTIONS
3998 || ARRAY_SIZE (target_options) > 1
3999 #endif
4002 int doc = 0;
4004 undoc = 0;
4006 printf (_("\nTarget specific options:\n"));
4008 for (i = ARRAY_SIZE (target_switches); i--;)
4010 const char *option = target_switches[i].name;
4011 const char *description = target_switches[i].description;
4013 if (option == NULL || *option == 0)
4014 continue;
4015 else if (description == NULL)
4017 undoc = 1;
4019 if (extra_warnings)
4020 printf (_(" -m%-23.23s [undocumented]\n"), option);
4022 else if (* description != 0)
4023 doc += printf (" -m%-23.23s %s\n", option, _(description));
4026 #ifdef TARGET_OPTIONS
4027 for (i = ARRAY_SIZE (target_options); i--;)
4029 const char *option = target_options[i].prefix;
4030 const char *description = target_options[i].description;
4032 if (option == NULL || *option == 0)
4033 continue;
4034 else if (description == NULL)
4036 undoc = 1;
4038 if (extra_warnings)
4039 printf (_(" -m%-23.23s [undocumented]\n"), option);
4041 else if (* description != 0)
4042 doc += printf (" -m%-23.23s %s\n", option, _(description));
4044 #endif
4045 if (undoc)
4047 if (doc)
4048 printf (_("\nThere are undocumented target specific options as well.\n"));
4049 else
4050 printf (_(" They exist, but they are not documented.\n"));
4055 /* Parse a -d... comand line switch. */
4057 static void
4058 decode_d_option (arg)
4059 const char *arg;
4061 int i, c, matched;
4063 while (*arg)
4064 switch (c = *arg++)
4066 case 'a':
4067 for (i = 0; i < (int) DFI_MAX; ++i)
4068 dump_file[i].enabled = 1;
4069 break;
4070 case 'A':
4071 flag_debug_asm = 1;
4072 break;
4073 case 'm':
4074 flag_print_mem = 1;
4075 break;
4076 case 'p':
4077 flag_print_asm_name = 1;
4078 break;
4079 case 'P':
4080 flag_dump_rtl_in_asm = 1;
4081 flag_print_asm_name = 1;
4082 break;
4083 case 'v':
4084 graph_dump_format = vcg;
4085 break;
4086 case 'x':
4087 rtl_dump_and_exit = 1;
4088 break;
4089 case 'y':
4090 set_yydebug (1);
4091 break;
4092 case 'D': /* These are handled by the preprocessor. */
4093 case 'I':
4094 break;
4096 default:
4097 matched = 0;
4098 for (i = 0; i < (int) DFI_MAX; ++i)
4099 if (c == dump_file[i].debug_switch)
4101 dump_file[i].enabled = 1;
4102 matched = 1;
4105 if (! matched)
4106 warning ("unrecognized gcc debugging option: %c", c);
4107 break;
4111 /* Parse a -f... comand line switch. ARG is the value after the -f.
4112 It is safe to access 'ARG - 2' to generate the full switch name.
4113 Return the number of strings consumed. */
4115 static int
4116 decode_f_option (arg)
4117 const char *arg;
4119 int j;
4120 const char *option_value = NULL;
4122 /* Search for the option in the table of binary f options. */
4123 for (j = ARRAY_SIZE (f_options); j--;)
4125 if (!strcmp (arg, f_options[j].string))
4127 *f_options[j].variable = f_options[j].on_value;
4128 return 1;
4131 if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4132 && ! strcmp (arg + 3, f_options[j].string))
4134 *f_options[j].variable = ! f_options[j].on_value;
4135 return 1;
4139 if ((option_value = skip_leading_substring (arg, "inline-limit-"))
4140 || (option_value = skip_leading_substring (arg, "inline-limit=")))
4142 int val =
4143 read_integral_parameter (option_value, arg - 2,
4144 MAX_INLINE_INSNS);
4145 set_param_value ("max-inline-insns", val);
4147 #ifdef INSN_SCHEDULING
4148 else if ((option_value = skip_leading_substring (arg, "sched-verbose=")))
4149 fix_sched_param ("verbose", option_value);
4150 #endif
4151 else if ((option_value = skip_leading_substring (arg, "fixed-")))
4152 fix_register (option_value, 1, 1);
4153 else if ((option_value = skip_leading_substring (arg, "call-used-")))
4154 fix_register (option_value, 0, 1);
4155 else if ((option_value = skip_leading_substring (arg, "call-saved-")))
4156 fix_register (option_value, 0, 0);
4157 else if ((option_value = skip_leading_substring (arg, "align-loops=")))
4158 align_loops = read_integral_parameter (option_value, arg - 2, align_loops);
4159 else if ((option_value = skip_leading_substring (arg, "align-functions=")))
4160 align_functions
4161 = read_integral_parameter (option_value, arg - 2, align_functions);
4162 else if ((option_value = skip_leading_substring (arg, "align-jumps=")))
4163 align_jumps = read_integral_parameter (option_value, arg - 2, align_jumps);
4164 else if ((option_value = skip_leading_substring (arg, "align-labels=")))
4165 align_labels
4166 = read_integral_parameter (option_value, arg - 2, align_labels);
4167 else if ((option_value
4168 = skip_leading_substring (arg, "stack-limit-register=")))
4170 int reg = decode_reg_name (option_value);
4171 if (reg < 0)
4172 error ("unrecognized register name `%s'", option_value);
4173 else
4174 stack_limit_rtx = gen_rtx_REG (Pmode, reg);
4176 else if ((option_value
4177 = skip_leading_substring (arg, "stack-limit-symbol=")))
4179 const char *nm;
4180 nm = ggc_strdup (option_value);
4181 stack_limit_rtx = gen_rtx_SYMBOL_REF (Pmode, nm);
4183 else if ((option_value
4184 = skip_leading_substring (arg, "message-length=")))
4185 diagnostic_message_length_per_line =
4186 read_integral_parameter (option_value, arg - 2,
4187 diagnostic_message_length_per_line);
4188 else if ((option_value
4189 = skip_leading_substring (arg, "diagnostics-show-location=")))
4191 if (!strcmp (option_value, "once"))
4192 set_message_prefixing_rule (DIAGNOSTICS_SHOW_PREFIX_ONCE);
4193 else if (!strcmp (option_value, "every-line"))
4194 set_message_prefixing_rule (DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE);
4195 else
4196 error ("Unrecognized option `%s'", arg - 2);
4198 else if (!strcmp (arg, "no-stack-limit"))
4199 stack_limit_rtx = NULL_RTX;
4200 else if (!strcmp (arg, "preprocessed"))
4201 /* Recognise this switch but do nothing. This prevents warnings
4202 about an unrecognized switch if cpplib has not been linked in. */
4204 else
4205 return 0;
4207 return 1;
4210 /* Parse a -W... comand line switch. ARG is the value after the -W.
4211 It is safe to access 'ARG - 2' to generate the full switch name.
4212 Return the number of strings consumed. */
4214 static int
4215 decode_W_option (arg)
4216 const char *arg;
4218 const char *option_value = NULL;
4219 int j;
4221 /* Search for the option in the table of binary W options. */
4223 for (j = ARRAY_SIZE (W_options); j--;)
4225 if (!strcmp (arg, W_options[j].string))
4227 *W_options[j].variable = W_options[j].on_value;
4228 return 1;
4231 if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4232 && ! strcmp (arg + 3, W_options[j].string))
4234 *W_options[j].variable = ! W_options[j].on_value;
4235 return 1;
4239 if ((option_value = skip_leading_substring (arg, "id-clash-")))
4241 id_clash_len = read_integral_parameter (option_value, arg - 2, -1);
4243 if (id_clash_len != -1)
4244 warn_id_clash = 1;
4246 else if ((option_value = skip_leading_substring (arg, "larger-than-")))
4248 larger_than_size = read_integral_parameter (option_value, arg - 2, -1);
4250 warn_larger_than = larger_than_size != -1;
4252 else if (!strcmp (arg, "unused"))
4254 set_Wunused (1);
4256 else if (!strcmp (arg, "no-unused"))
4258 set_Wunused (0);
4260 else
4261 return 0;
4263 return 1;
4266 /* Parse a -g... comand line switch. ARG is the value after the -g.
4267 It is safe to access 'ARG - 2' to generate the full switch name.
4268 Return the number of strings consumed. */
4270 static int
4271 decode_g_option (arg)
4272 const char *arg;
4274 unsigned level;
4275 /* A lot of code assumes write_symbols == NO_DEBUG if the
4276 debugging level is 0 (thus -gstabs1 -gstabs0 would lose track
4277 of what debugging type has been selected). This records the
4278 selected type. It is an error to specify more than one
4279 debugging type. */
4280 static enum debug_info_type selected_debug_type = NO_DEBUG;
4281 /* Non-zero if debugging format has been explicitly set.
4282 -g and -ggdb don't explicitly set the debugging format so
4283 -gdwarf -g3 is equivalent to -gdwarf3. */
4284 static int type_explicitly_set_p = 0;
4285 /* Indexed by enum debug_info_type. */
4286 static const char *debug_type_names[] =
4288 "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff"
4291 /* The maximum admissible debug level value. */
4292 static const unsigned max_debug_level = 3;
4294 /* Look up ARG in the table. */
4295 for (da = debug_args; da->arg; da++)
4297 const int da_len = strlen (da->arg);
4299 if (da_len == 0 || ! strncmp (arg, da->arg, da_len))
4301 enum debug_info_type type = da->debug_type;
4302 const char *p = arg + da_len;
4304 if (*p && (*p < '0' || *p > '9'))
4305 continue;
4307 /* A debug flag without a level defaults to level 2.
4308 Note we do not want to call read_integral_parameter
4309 for that case since it will call atoi which
4310 will return zero.
4312 ??? We may want to generalize the interface to
4313 read_integral_parameter to better handle this case
4314 if this case shows up often. */
4315 if (*p)
4316 level = read_integral_parameter (p, 0, max_debug_level + 1);
4317 else
4318 level = 2;
4320 if (da_len > 1 && *p && !strncmp (arg, "dwarf", da_len))
4322 error ("use -gdwarf -g%d for DWARF v1, level %d",
4323 level, level);
4324 if (level == 2)
4325 error ("use -gdwarf-2 for DWARF v2");
4328 if (level > max_debug_level)
4330 warning ("\
4331 ignoring option `%s' due to invalid debug level specification",
4332 arg - 2);
4333 level = debug_info_level;
4336 if (type == NO_DEBUG)
4338 type = PREFERRED_DEBUGGING_TYPE;
4340 if (da_len > 1 && strncmp (arg, "gdb", da_len) == 0)
4342 #if defined (DWARF2_DEBUGGING_INFO) && !defined (LINKER_DOES_NOT_WORK_WITH_DWARF2)
4343 type = DWARF2_DEBUG;
4344 #else
4345 #ifdef DBX_DEBUGGING_INFO
4346 type = DBX_DEBUG;
4347 #endif
4348 #endif
4352 if (type == NO_DEBUG)
4353 warning ("`%s': unknown or unsupported -g option", arg - 2);
4355 /* Does it conflict with an already selected type? */
4356 if (type_explicitly_set_p
4357 /* -g/-ggdb don't conflict with anything. */
4358 && da->debug_type != NO_DEBUG
4359 && type != selected_debug_type)
4360 warning ("`%s' ignored, conflicts with `-g%s'",
4361 arg - 2, debug_type_names[(int) selected_debug_type]);
4362 else
4364 /* If the format has already been set, -g/-ggdb
4365 only change the debug level. */
4366 if (type_explicitly_set_p && da->debug_type == NO_DEBUG)
4367 /* Don't change debugging type. */
4369 else
4371 selected_debug_type = type;
4372 type_explicitly_set_p = da->debug_type != NO_DEBUG;
4375 write_symbols = (level == 0
4376 ? NO_DEBUG
4377 : selected_debug_type);
4378 use_gnu_debug_info_extensions = da->use_extensions_p;
4379 debug_info_level = (enum debug_info_level) level;
4382 break;
4386 if (! da->arg)
4387 return 0;
4389 return 1;
4392 /* Decode the first argument in the argv as a language-independent option.
4393 Return the number of strings consumed. */
4395 static unsigned int
4396 independent_decode_option (argc, argv)
4397 int argc;
4398 char **argv;
4400 char *arg = argv[0];
4402 if (arg[0] != '-' || arg[1] == 0)
4404 if (arg[0] == '+')
4405 return 0;
4407 filename = arg;
4409 return 1;
4412 arg++;
4414 if (!strcmp (arg, "-help"))
4416 display_help ();
4417 exit_after_options = 1;
4420 if (!strcmp (arg, "-target-help"))
4422 display_target_options ();
4423 exit_after_options = 1;
4426 if (!strcmp (arg, "-version"))
4428 print_version (stderr, "");
4429 exit_after_options = 1;
4432 /* Handle '--param <name>=<value>'. */
4433 if (strcmp (arg, "-param") == 0)
4435 char *equal;
4437 if (argc == 1)
4439 error ("-param option missing argument");
4440 return 1;
4443 /* Get the '<name>=<value>' parameter. */
4444 arg = argv[1];
4445 /* Look for the `='. */
4446 equal = strchr (arg, '=');
4447 if (!equal)
4448 error ("invalid --param option: %s", arg);
4449 else
4451 int val;
4453 /* Zero out the `=' sign so that we get two separate strings. */
4454 *equal = '\0';
4455 /* Figure out what value is specified. */
4456 val = read_integral_parameter (equal + 1, NULL, INVALID_PARAM_VAL);
4457 if (val != INVALID_PARAM_VAL)
4458 set_param_value (arg, val);
4459 else
4460 error ("invalid parameter value `%s'", equal + 1);
4463 return 2;
4466 if (*arg == 'Y')
4467 arg++;
4469 switch (*arg)
4471 default:
4472 return 0;
4474 case 'O':
4475 /* Already been treated in main (). Do nothing. */
4476 break;
4478 case 'm':
4479 set_target_switch (arg + 1);
4480 break;
4482 case 'f':
4483 return decode_f_option (arg + 1);
4485 case 'g':
4486 return decode_g_option (arg + 1);
4488 case 'd':
4489 if (!strcmp (arg, "dumpbase"))
4491 if (argc == 1)
4492 return 0;
4494 dump_base_name = argv[1];
4495 return 2;
4497 else
4498 decode_d_option (arg + 1);
4499 break;
4501 case 'p':
4502 if (!strcmp (arg, "pedantic"))
4503 pedantic = 1;
4504 else if (!strcmp (arg, "pedantic-errors"))
4505 flag_pedantic_errors = pedantic = 1;
4506 else if (arg[1] == 0)
4507 profile_flag = 1;
4508 else
4509 return 0;
4510 break;
4512 case 'q':
4513 if (!strcmp (arg, "quiet"))
4514 quiet_flag = 1;
4515 else
4516 return 0;
4517 break;
4519 case 'v':
4520 if (!strcmp (arg, "version"))
4521 version_flag = 1;
4522 else
4523 return 0;
4524 break;
4526 case 'w':
4527 if (arg[1] == 0)
4528 inhibit_warnings = 1;
4529 else
4530 return 0;
4531 break;
4533 case 'W':
4534 if (arg[1] == 0)
4536 extra_warnings = 1;
4537 /* We save the value of warn_uninitialized, since if they put
4538 -Wuninitialized on the command line, we need to generate a
4539 warning about not using it without also specifying -O. */
4540 if (warn_uninitialized != 1)
4541 warn_uninitialized = 2;
4543 else
4544 return decode_W_option (arg + 1);
4545 break;
4547 case 'a':
4548 if (arg[1] == 0)
4550 #if !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4551 warning ("`-a' option (basic block profile) not supported");
4552 #else
4553 profile_block_flag = (profile_block_flag < 2) ? 1 : 3;
4554 #endif
4556 else if (!strcmp (arg, "ax"))
4558 #if !defined (FUNCTION_BLOCK_PROFILER_EXIT) || !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4559 warning ("`-ax' option (jump profiling) not supported");
4560 #else
4561 profile_block_flag = (!profile_block_flag
4562 || profile_block_flag == 2) ? 2 : 3;
4563 #endif
4565 else if (!strncmp (arg, "aux-info", 8))
4567 flag_gen_aux_info = 1;
4568 if (arg[8] == '\0')
4570 if (argc == 1)
4571 return 0;
4573 aux_info_file_name = argv[1];
4574 return 2;
4576 else
4577 aux_info_file_name = arg + 8;
4579 else
4580 return 0;
4581 break;
4583 case 'o':
4584 if (arg[1] == 0)
4586 if (argc == 1)
4587 return 0;
4589 asm_file_name = argv[1];
4590 return 2;
4592 return 0;
4594 case 'G':
4596 int g_switch_val;
4597 int return_val;
4599 if (arg[1] == 0)
4601 if (argc == 1)
4602 return 0;
4604 g_switch_val = read_integral_parameter (argv[1], 0, -1);
4605 return_val = 2;
4607 else
4609 g_switch_val = read_integral_parameter (arg + 1, 0, -1);
4610 return_val = 1;
4613 if (g_switch_val == -1)
4614 return_val = 0;
4615 else
4617 g_switch_set = TRUE;
4618 g_switch_value = g_switch_val;
4621 return return_val;
4625 return 1;
4628 /* Entry point of cc1/c++. Decode command args, then call compile_file.
4629 Exit code is 35 if can't open files, 34 if fatal error,
4630 33 if had nonfatal errors, else success. */
4632 extern int main PARAMS ((int, char **));
4635 main (argc, argv)
4636 int argc;
4637 char **argv;
4639 register int i;
4640 char *p;
4642 /* save in case md file wants to emit args as a comment. */
4643 save_argc = argc;
4644 save_argv = argv;
4646 p = argv[0] + strlen (argv[0]);
4647 while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
4648 --p;
4649 progname = p;
4651 xmalloc_set_program_name (progname);
4653 /* LC_CTYPE determines the character set used by the terminal so it has be set
4654 to output messages correctly. */
4656 #ifdef HAVE_LC_MESSAGES
4657 setlocale (LC_CTYPE, "");
4658 setlocale (LC_MESSAGES, "");
4659 #else
4660 setlocale (LC_ALL, "");
4661 #endif
4663 (void) bindtextdomain (PACKAGE, localedir);
4664 (void) textdomain (PACKAGE);
4666 /* Install handler for SIGFPE, which may be received while we do
4667 compile-time floating point arithmetic. */
4668 signal (SIGFPE, float_signal);
4670 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
4671 #ifdef SIGSEGV
4672 signal (SIGSEGV, crash_signal);
4673 #endif
4674 #ifdef SIGILL
4675 signal (SIGILL, crash_signal);
4676 #endif
4677 #ifdef SIGBUS
4678 signal (SIGBUS, crash_signal);
4679 #endif
4680 #ifdef SIGABRT
4681 signal (SIGABRT, crash_signal);
4682 #endif
4683 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
4684 signal (SIGIOT, crash_signal);
4685 #endif
4687 decl_printable_name = decl_name;
4688 lang_expand_expr = (lang_expand_expr_t) do_abort;
4690 /* Initialize whether `char' is signed. */
4691 flag_signed_char = DEFAULT_SIGNED_CHAR;
4692 #ifdef DEFAULT_SHORT_ENUMS
4693 /* Initialize how much space enums occupy, by default. */
4694 flag_short_enums = DEFAULT_SHORT_ENUMS;
4695 #endif
4697 /* Initialize the garbage-collector. */
4698 init_ggc ();
4699 init_stringpool ();
4700 ggc_add_rtx_root (&stack_limit_rtx, 1);
4701 ggc_add_tree_root (&current_function_decl, 1);
4702 ggc_add_tree_root (&current_function_func_begin_label, 1);
4704 /* Initialize the diagnostics reporting machinery. */
4705 initialize_diagnostics ();
4707 /* Register the language-independent parameters. */
4708 add_params (lang_independent_params, LAST_PARAM);
4710 /* Perform language-specific options intialization. */
4711 if (lang_hooks.init_options)
4712 (*lang_hooks.init_options) ();
4714 /* Scan to see what optimization level has been specified. That will
4715 determine the default value of many flags. */
4716 for (i = 1; i < argc; i++)
4718 if (!strcmp (argv[i], "-O"))
4720 optimize = 1;
4721 optimize_size = 0;
4723 else if (argv[i][0] == '-' && argv[i][1] == 'O')
4725 /* Handle -Os, -O2, -O3, -O69, ... */
4726 char *p = &argv[i][2];
4728 if ((p[0] == 's') && (p[1] == 0))
4730 optimize_size = 1;
4732 /* Optimizing for size forces optimize to be 2. */
4733 optimize = 2;
4735 else
4737 const int optimize_val = read_integral_parameter (p, p - 2, -1);
4738 if (optimize_val != -1)
4740 optimize = optimize_val;
4741 optimize_size = 0;
4747 if (optimize >= 1)
4749 flag_defer_pop = 1;
4750 flag_thread_jumps = 1;
4751 #ifdef DELAY_SLOTS
4752 flag_delayed_branch = 1;
4753 #endif
4754 #ifdef CAN_DEBUG_WITHOUT_FP
4755 flag_omit_frame_pointer = 1;
4756 #endif
4757 flag_guess_branch_prob = 1;
4760 if (optimize >= 2)
4762 flag_optimize_sibling_calls = 1;
4763 flag_cse_follow_jumps = 1;
4764 flag_cse_skip_blocks = 1;
4765 flag_gcse = 1;
4766 flag_expensive_optimizations = 1;
4767 flag_strength_reduce = 1;
4768 flag_rerun_cse_after_loop = 1;
4769 flag_rerun_loop_opt = 1;
4770 flag_caller_saves = 1;
4771 flag_force_mem = 1;
4772 flag_peephole2 = 1;
4773 #ifdef INSN_SCHEDULING
4774 flag_schedule_insns = 1;
4775 flag_schedule_insns_after_reload = 1;
4776 #endif
4777 flag_regmove = 1;
4778 flag_strict_aliasing = 1;
4779 flag_delete_null_pointer_checks = 1;
4780 flag_reorder_blocks = 1;
4783 if (optimize >= 3)
4785 flag_inline_functions = 1;
4786 flag_rename_registers = 1;
4789 if (optimize < 2 || optimize_size)
4791 align_loops = 1;
4792 align_jumps = 1;
4793 align_labels = 1;
4794 align_functions = 1;
4797 /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
4798 modify it. */
4799 target_flags = 0;
4800 set_target_switch ("");
4802 /* Unwind tables are always present in an ABI-conformant IA-64
4803 object file, so the default should be ON. */
4804 #ifdef IA64_UNWIND_INFO
4805 flag_unwind_tables = IA64_UNWIND_INFO;
4806 #endif
4808 #ifdef OPTIMIZATION_OPTIONS
4809 /* Allow default optimizations to be specified on a per-machine basis. */
4810 OPTIMIZATION_OPTIONS (optimize, optimize_size);
4811 #endif
4813 /* Initialize register usage now so switches may override. */
4814 init_reg_sets ();
4816 /* Perform normal command line switch decoding. */
4817 for (i = 1; i < argc;)
4819 int lang_processed;
4820 int indep_processed;
4822 /* Give the language a chance to decode the option for itself. */
4823 lang_processed = (*lang_hooks.decode_option) (argc - i, argv + i);
4825 if (lang_processed >= 0)
4826 /* Now see if the option also has a language independent meaning.
4827 Some options are both language specific and language independent,
4828 eg --help. */
4829 indep_processed = independent_decode_option (argc - i, argv + i);
4830 else
4832 lang_processed = -lang_processed;
4833 indep_processed = 0;
4836 if (lang_processed || indep_processed)
4837 i += MAX (lang_processed, indep_processed);
4838 else
4840 const char *option = NULL;
4841 const char *lang = NULL;
4842 unsigned int j;
4844 /* It is possible that the command line switch is not valid for the
4845 current language, but it is valid for another language. In order
4846 to be compatible with previous versions of the compiler (which
4847 did not issue an error message in this case) we check for this
4848 possibility here. If we do find a match, then if extra_warnings
4849 is set we generate a warning message, otherwise we will just
4850 ignore the option. */
4851 for (j = 0; j < ARRAY_SIZE (documented_lang_options); j++)
4853 option = documented_lang_options[j].option;
4855 if (option == NULL)
4856 lang = documented_lang_options[j].description;
4857 else if (! strncmp (argv[i], option, strlen (option)))
4858 break;
4861 if (j != ARRAY_SIZE (documented_lang_options))
4863 if (extra_warnings)
4865 warning ("Ignoring command line option '%s'", argv[i]);
4866 if (lang)
4867 warning
4868 ("(It is valid for %s but not the selected language)",
4869 lang);
4872 else if (argv[i][0] == '-' && argv[i][1] == 'g')
4873 warning ("`%s': unknown or unsupported -g option", &argv[i][2]);
4874 else
4875 error ("Unrecognized option `%s'", argv[i]);
4877 i++;
4881 /* All command line options have been processed. */
4882 if (lang_hooks.post_options)
4883 (*lang_hooks.post_options) ();
4885 if (exit_after_options)
4886 exit (0);
4888 /* Reflect any language-specific diagnostic option setting. */
4889 reshape_diagnostic_buffer ();
4891 /* Checker uses the frame pointer. */
4892 if (flag_check_memory_usage)
4893 flag_omit_frame_pointer = 0;
4895 if (optimize == 0)
4897 /* Inlining does not work if not optimizing,
4898 so force it not to be done. */
4899 flag_no_inline = 1;
4900 warn_inline = 0;
4902 /* The c_decode_option function and decode_option hook set
4903 this to `2' if -Wall is used, so we can avoid giving out
4904 lots of errors for people who don't realize what -Wall does. */
4905 if (warn_uninitialized == 1)
4906 warning ("-Wuninitialized is not supported without -O");
4909 /* We do not currently support sibling-call optimization in the
4910 presence of exceptions. See PR2975 for a test-case that will
4911 fail if we try to combine both of these features. */
4912 if (flag_exceptions)
4913 flag_optimize_sibling_calls = 0;
4915 #ifdef OVERRIDE_OPTIONS
4916 /* Some machines may reject certain combinations of options. */
4917 OVERRIDE_OPTIONS;
4918 #endif
4920 /* Set up the align_*_log variables, defaulting them to 1 if they
4921 were still unset. */
4922 if (align_loops <= 0) align_loops = 1;
4923 align_loops_log = floor_log2 (align_loops * 2 - 1);
4924 if (align_jumps <= 0) align_jumps = 1;
4925 align_jumps_log = floor_log2 (align_jumps * 2 - 1);
4926 if (align_labels <= 0) align_labels = 1;
4927 align_labels_log = floor_log2 (align_labels * 2 - 1);
4928 if (align_functions <= 0) align_functions = 1;
4929 align_functions_log = floor_log2 (align_functions * 2 - 1);
4931 if (profile_block_flag == 3)
4933 warning ("`-ax' and `-a' are conflicting options. `-a' ignored.");
4934 profile_block_flag = 2;
4937 /* Unrolling all loops implies that standard loop unrolling must also
4938 be done. */
4939 if (flag_unroll_all_loops)
4940 flag_unroll_loops = 1;
4941 /* Loop unrolling requires that strength_reduction be on also. Silently
4942 turn on strength reduction here if it isn't already on. Also, the loop
4943 unrolling code assumes that cse will be run after loop, so that must
4944 be turned on also. */
4945 if (flag_unroll_loops)
4947 flag_strength_reduce = 1;
4948 flag_rerun_cse_after_loop = 1;
4951 /* Warn about options that are not supported on this machine. */
4952 #ifndef INSN_SCHEDULING
4953 if (flag_schedule_insns || flag_schedule_insns_after_reload)
4954 warning ("instruction scheduling not supported on this target machine");
4955 #endif
4956 #ifndef DELAY_SLOTS
4957 if (flag_delayed_branch)
4958 warning ("this target machine does not have delayed branches");
4959 #endif
4961 /* Some operating systems do not allow profiling without a frame
4962 pointer. */
4963 if (!TARGET_ALLOWS_PROFILING_WITHOUT_FRAME_POINTER
4964 && profile_flag
4965 && flag_omit_frame_pointer)
4967 error ("profiling does not work without a frame pointer");
4968 flag_omit_frame_pointer = 0;
4971 user_label_prefix = USER_LABEL_PREFIX;
4972 if (flag_leading_underscore != -1)
4974 /* If the default prefix is more complicated than "" or "_",
4975 issue a warning and ignore this option. */
4976 if (user_label_prefix[0] == 0 ||
4977 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
4979 user_label_prefix = flag_leading_underscore ? "_" : "";
4981 else
4982 warning ("-f%sleading-underscore not supported on this target machine",
4983 flag_leading_underscore ? "" : "no-");
4986 /* If we are in verbose mode, write out the version and maybe all the
4987 option flags in use. */
4988 if (version_flag)
4990 print_version (stderr, "");
4991 if (! quiet_flag)
4992 print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
4995 compile_file (filename);
4997 #if !defined(OS2) && !defined(VMS) && (!defined(_WIN32) || defined (__CYGWIN__)) && !defined(__INTERIX)
4998 if (flag_print_mem)
5000 char *lim = (char *) sbrk (0);
5002 fnotice (stderr, "Data size %ld.\n", (long) (lim - (char *) &environ));
5003 fflush (stderr);
5005 #ifndef __MSDOS__
5006 #ifdef USG
5007 system ("ps -l 1>&2");
5008 #else /* not USG */
5009 system ("ps v");
5010 #endif /* not USG */
5011 #endif
5013 #endif /* ! OS2 && ! VMS && (! _WIN32 || CYGWIN) && ! __INTERIX */
5015 if (errorcount)
5016 return (FATAL_EXIT_CODE);
5017 if (sorrycount)
5018 return (FATAL_EXIT_CODE);
5019 return (SUCCESS_EXIT_CODE);
5022 /* Decode -m switches. */
5023 /* Decode the switch -mNAME. */
5025 static void
5026 set_target_switch (name)
5027 const char *name;
5029 register size_t j;
5030 int valid_target_option = 0;
5032 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
5033 if (!strcmp (target_switches[j].name, name))
5035 if (target_switches[j].value < 0)
5036 target_flags &= ~-target_switches[j].value;
5037 else
5038 target_flags |= target_switches[j].value;
5039 valid_target_option = 1;
5042 #ifdef TARGET_OPTIONS
5043 if (!valid_target_option)
5044 for (j = 0; j < ARRAY_SIZE (target_options); j++)
5046 int len = strlen (target_options[j].prefix);
5047 if (!strncmp (target_options[j].prefix, name, len))
5049 *target_options[j].variable = name + len;
5050 valid_target_option = 1;
5053 #endif
5055 if (!valid_target_option)
5056 error ("Invalid option `%s'", name);
5059 /* Print version information to FILE.
5060 Each line begins with INDENT (for the case where FILE is the
5061 assembler output file). */
5063 static void
5064 print_version (file, indent)
5065 FILE *file;
5066 const char *indent;
5068 #ifndef __VERSION__
5069 #define __VERSION__ "[?]"
5070 #endif
5071 fnotice (file,
5072 #ifdef __GNUC__
5073 "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
5074 #else
5075 "%s%s%s version %s (%s) compiled by CC.\n"
5076 #endif
5077 , indent, *indent != 0 ? " " : "",
5078 language_string, version_string, TARGET_NAME,
5079 indent, __VERSION__);
5082 /* Print an option value and return the adjusted position in the line.
5083 ??? We don't handle error returns from fprintf (disk full); presumably
5084 other code will catch a disk full though. */
5086 static int
5087 print_single_switch (file, pos, max, indent, sep, term, type, name)
5088 FILE *file;
5089 int pos, max;
5090 const char *indent, *sep, *term, *type, *name;
5092 /* The ultrix fprintf returns 0 on success, so compute the result we want
5093 here since we need it for the following test. */
5094 int len = strlen (sep) + strlen (type) + strlen (name);
5096 if (pos != 0
5097 && pos + len > max)
5099 fprintf (file, "%s", term);
5100 pos = 0;
5102 if (pos == 0)
5104 fprintf (file, "%s", indent);
5105 pos = strlen (indent);
5107 fprintf (file, "%s%s%s", sep, type, name);
5108 pos += len;
5109 return pos;
5112 /* Print active target switches to FILE.
5113 POS is the current cursor position and MAX is the size of a "line".
5114 Each line begins with INDENT and ends with TERM.
5115 Each switch is separated from the next by SEP. */
5117 static void
5118 print_switch_values (file, pos, max, indent, sep, term)
5119 FILE *file;
5120 int pos, max;
5121 const char *indent, *sep, *term;
5123 size_t j;
5124 char **p;
5126 /* Print the options as passed. */
5128 pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
5129 _("options passed: "), "");
5131 for (p = &save_argv[1]; *p != NULL; p++)
5132 if (**p == '-')
5134 /* Ignore these. */
5135 if (strcmp (*p, "-o") == 0)
5137 if (p[1] != NULL)
5138 p++;
5139 continue;
5141 if (strcmp (*p, "-quiet") == 0)
5142 continue;
5143 if (strcmp (*p, "-version") == 0)
5144 continue;
5145 if ((*p)[1] == 'd')
5146 continue;
5148 pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
5150 if (pos > 0)
5151 fprintf (file, "%s", term);
5153 /* Print the -f and -m options that have been enabled.
5154 We don't handle language specific options but printing argv
5155 should suffice. */
5157 pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
5158 _("options enabled: "), "");
5160 for (j = 0; j < ARRAY_SIZE (f_options); j++)
5161 if (*f_options[j].variable == f_options[j].on_value)
5162 pos = print_single_switch (file, pos, max, indent, sep, term,
5163 "-f", f_options[j].string);
5165 /* Print target specific options. */
5167 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
5168 if (target_switches[j].name[0] != '\0'
5169 && target_switches[j].value > 0
5170 && ((target_switches[j].value & target_flags)
5171 == target_switches[j].value))
5173 pos = print_single_switch (file, pos, max, indent, sep, term,
5174 "-m", target_switches[j].name);
5177 #ifdef TARGET_OPTIONS
5178 for (j = 0; j < ARRAY_SIZE (target_options); j++)
5179 if (*target_options[j].variable != NULL)
5181 char prefix[256];
5182 sprintf (prefix, "-m%s", target_options[j].prefix);
5183 pos = print_single_switch (file, pos, max, indent, sep, term,
5184 prefix, *target_options[j].variable);
5186 #endif
5188 fprintf (file, "%s", term);
5191 /* Record the beginning of a new source file, named FILENAME. */
5193 void
5194 debug_start_source_file (filename)
5195 register const char *filename ATTRIBUTE_UNUSED;
5197 #ifdef DBX_DEBUGGING_INFO
5198 if (write_symbols == DBX_DEBUG)
5199 dbxout_start_new_source_file (filename);
5200 #endif
5201 #ifdef DWARF_DEBUGGING_INFO
5202 if (debug_info_level == DINFO_LEVEL_VERBOSE
5203 && write_symbols == DWARF_DEBUG)
5204 dwarfout_start_new_source_file (filename);
5205 #endif /* DWARF_DEBUGGING_INFO */
5206 #ifdef DWARF2_DEBUGGING_INFO
5207 if (write_symbols == DWARF2_DEBUG)
5208 dwarf2out_start_source_file (filename);
5209 #endif /* DWARF2_DEBUGGING_INFO */
5210 #ifdef SDB_DEBUGGING_INFO
5211 if (write_symbols == SDB_DEBUG)
5212 sdbout_start_new_source_file (filename);
5213 #endif
5216 /* Record the resumption of a source file. LINENO is the line number in
5217 the source file we are returning to. */
5219 void
5220 debug_end_source_file (lineno)
5221 register unsigned lineno ATTRIBUTE_UNUSED;
5223 #ifdef DBX_DEBUGGING_INFO
5224 if (write_symbols == DBX_DEBUG)
5225 dbxout_resume_previous_source_file ();
5226 #endif
5227 #ifdef DWARF_DEBUGGING_INFO
5228 if (debug_info_level == DINFO_LEVEL_VERBOSE
5229 && write_symbols == DWARF_DEBUG)
5230 dwarfout_resume_previous_source_file (lineno);
5231 #endif /* DWARF_DEBUGGING_INFO */
5232 #ifdef DWARF2_DEBUGGING_INFO
5233 if (write_symbols == DWARF2_DEBUG)
5234 dwarf2out_end_source_file ();
5235 #endif /* DWARF2_DEBUGGING_INFO */
5236 #ifdef SDB_DEBUGGING_INFO
5237 if (write_symbols == SDB_DEBUG)
5238 sdbout_resume_previous_source_file ();
5239 #endif
5242 /* Called from cb_define in c-lex.c. The `buffer' parameter contains
5243 the tail part of the directive line, i.e. the part which is past the
5244 initial whitespace, #, whitespace, directive-name, whitespace part. */
5246 void
5247 debug_define (lineno, buffer)
5248 register unsigned lineno ATTRIBUTE_UNUSED;
5249 register const char *buffer ATTRIBUTE_UNUSED;
5251 #ifdef DWARF_DEBUGGING_INFO
5252 if (write_symbols == DWARF_DEBUG)
5253 dwarfout_define (lineno, buffer);
5254 #endif /* DWARF_DEBUGGING_INFO */
5255 #ifdef DWARF2_DEBUGGING_INFO
5256 if (write_symbols == DWARF2_DEBUG)
5257 dwarf2out_define (lineno, buffer);
5258 #endif /* DWARF2_DEBUGGING_INFO */
5261 /* Called from cb_undef in c-lex.c. The `buffer' parameter contains
5262 the tail part of the directive line, i.e. the part which is past the
5263 initial whitespace, #, whitespace, directive-name, whitespace part. */
5265 void
5266 debug_undef (lineno, buffer)
5267 register unsigned lineno ATTRIBUTE_UNUSED;
5268 register const char *buffer ATTRIBUTE_UNUSED;
5270 #ifdef DWARF_DEBUGGING_INFO
5271 if (write_symbols == DWARF_DEBUG)
5272 dwarfout_undef (lineno, buffer);
5273 #endif /* DWARF_DEBUGGING_INFO */
5274 #ifdef DWARF2_DEBUGGING_INFO
5275 if (write_symbols == DWARF2_DEBUG)
5276 dwarf2out_undef (lineno, buffer);
5277 #endif /* DWARF2_DEBUGGING_INFO */
5280 /* Returns nonzero if it is appropriate not to emit any debugging
5281 information for BLOCK, because it doesn't contain any instructions.
5282 This may not be the case for blocks containing nested functions, since
5283 we may actually call such a function even though the BLOCK information
5284 is messed up. */
5287 debug_ignore_block (block)
5288 tree block ATTRIBUTE_UNUSED;
5290 /* Never delete the BLOCK for the outermost scope
5291 of the function; we can refer to names from
5292 that scope even if the block notes are messed up. */
5293 if (is_body_block (block))
5294 return 0;
5296 #ifdef DWARF2_DEBUGGING_INFO
5297 if (write_symbols == DWARF2_DEBUG)
5298 return dwarf2out_ignore_block (block);
5299 #endif
5301 return 1;