Makefile.am (doxygen): Assume script is missing execute perms.
[official-gcc.git] / gcc / toplev.c
blob9bc3806315283584db45883306e85ba1f3da575d
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 "reload.h"
68 #ifdef DWARF_DEBUGGING_INFO
69 #include "dwarfout.h"
70 #endif
72 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
73 #include "dwarf2out.h"
74 #endif
76 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
77 #include "dbxout.h"
78 #endif
80 #ifdef SDB_DEBUGGING_INFO
81 #include "sdbout.h"
82 #endif
84 #ifdef XCOFF_DEBUGGING_INFO
85 #include "xcoffout.h"
86 #endif
88 #ifdef VMS
89 /* The extra parameters substantially improve the I/O performance. */
91 static FILE *
92 vms_fopen (fname, type)
93 char *fname;
94 char *type;
96 /* The <stdio.h> in the gcc-vms-1.42 distribution prototypes fopen with two
97 fixed arguments, which matches ANSI's specification but not VAXCRTL's
98 pre-ANSI implementation. This hack circumvents the mismatch problem. */
99 FILE *(*vmslib_fopen)() = (FILE *(*)()) fopen;
101 if (*type == 'w')
102 return (*vmslib_fopen) (fname, type, "mbc=32",
103 "deq=64", "fop=tef", "shr=nil");
104 else
105 return (*vmslib_fopen) (fname, type, "mbc=32");
108 #define fopen vms_fopen
109 #endif /* VMS */
111 #ifndef DEFAULT_GDB_EXTENSIONS
112 #define DEFAULT_GDB_EXTENSIONS 1
113 #endif
115 /* If more than one debugging type is supported, you must define
116 PREFERRED_DEBUGGING_TYPE to choose a format in a system-dependent way.
118 This is one long line cause VAXC can't handle a \-newline. */
119 #if 1 < (defined (DBX_DEBUGGING_INFO) + defined (SDB_DEBUGGING_INFO) + defined (DWARF_DEBUGGING_INFO) + defined (DWARF2_DEBUGGING_INFO) + defined (XCOFF_DEBUGGING_INFO))
120 #ifndef PREFERRED_DEBUGGING_TYPE
121 You Lose! You must define PREFERRED_DEBUGGING_TYPE!
122 #endif /* no PREFERRED_DEBUGGING_TYPE */
123 #else /* Only one debugging format supported. Define PREFERRED_DEBUGGING_TYPE
124 so the following code needn't care. */
125 #ifdef DBX_DEBUGGING_INFO
126 #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
127 #endif
128 #ifdef SDB_DEBUGGING_INFO
129 #define PREFERRED_DEBUGGING_TYPE SDB_DEBUG
130 #endif
131 #ifdef DWARF_DEBUGGING_INFO
132 #define PREFERRED_DEBUGGING_TYPE DWARF_DEBUG
133 #endif
134 #ifdef DWARF2_DEBUGGING_INFO
135 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
136 #endif
137 #ifdef XCOFF_DEBUGGING_INFO
138 #define PREFERRED_DEBUGGING_TYPE XCOFF_DEBUG
139 #endif
140 #endif /* More than one debugger format enabled. */
142 /* If still not defined, must have been because no debugging formats
143 are supported. */
144 #ifndef PREFERRED_DEBUGGING_TYPE
145 #define PREFERRED_DEBUGGING_TYPE NO_DEBUG
146 #endif
148 #if defined (HAVE_DECL_ENVIRON) && !HAVE_DECL_ENVIRON
149 extern char **environ;
150 #endif
152 /* Carry information from ASM_DECLARE_OBJECT_NAME
153 to ASM_FINISH_DECLARE_OBJECT. */
155 extern int size_directive_output;
156 extern tree last_assemble_variable_decl;
158 static void set_target_switch PARAMS ((const char *));
159 static const char *decl_name PARAMS ((tree, int));
161 static void float_signal PARAMS ((int)) ATTRIBUTE_NORETURN;
162 static void crash_signal PARAMS ((int)) ATTRIBUTE_NORETURN;
163 static void compile_file PARAMS ((const char *));
164 static void display_help PARAMS ((void));
165 static void display_target_options PARAMS ((void));
167 static void decode_d_option PARAMS ((const char *));
168 static int decode_f_option PARAMS ((const char *));
169 static int decode_W_option PARAMS ((const char *));
170 static int decode_g_option PARAMS ((const char *));
171 static unsigned int independent_decode_option PARAMS ((int, char **));
173 static void print_version PARAMS ((FILE *, const char *));
174 static int print_single_switch PARAMS ((FILE *, int, int, const char *,
175 const char *, const char *,
176 const char *, const char *));
177 static void print_switch_values PARAMS ((FILE *, int, int, const char *,
178 const char *, const char *));
180 /* Length of line when printing switch values. */
181 #define MAX_LINE 75
183 /* Name of program invoked, sans directories. */
185 const char *progname;
187 /* Copy of arguments to toplev_main. */
188 int save_argc;
189 char **save_argv;
191 /* Name of current original source file (what was input to cpp).
192 This comes from each #-command in the actual input. */
194 const char *input_filename;
196 /* Name of top-level original source file (what was input to cpp).
197 This comes from the #-command at the beginning of the actual input.
198 If there isn't any there, then this is the cc1 input file name. */
200 const char *main_input_filename;
202 /* Current line number in real source file. */
204 int lineno;
206 /* Nonzero if it is unsafe to create any new pseudo registers. */
207 int no_new_pseudos;
209 /* Stack of currently pending input files. */
211 struct file_stack *input_file_stack;
213 /* Incremented on each change to input_file_stack. */
214 int input_file_stack_tick;
216 /* Name to use as base of names for dump output files. */
218 const char *dump_base_name;
220 /* Bit flags that specify the machine subtype we are compiling for.
221 Bits are tested using macros TARGET_... defined in the tm.h file
222 and set by `-m...' switches. Must be defined in rtlanal.c. */
224 extern int target_flags;
226 /* Describes a dump file. */
228 struct dump_file_info
230 /* The unique extension to apply, e.g. ".jump". */
231 const char *const extension;
233 /* The -d<c> character that enables this dump file. */
234 char const debug_switch;
236 /* True if there is a corresponding graph dump file. */
237 char const graph_dump_p;
239 /* True if the user selected this dump. */
240 char enabled;
242 /* True if the files have been initialized (ie truncated). */
243 char initialized;
246 /* Enumerate the extant dump files. */
248 enum dump_file_index
250 DFI_rtl,
251 DFI_sibling,
252 DFI_eh,
253 DFI_jump,
254 DFI_cse,
255 DFI_addressof,
256 DFI_ssa,
257 DFI_dce,
258 DFI_ussa,
259 DFI_gcse,
260 DFI_loop,
261 DFI_cse2,
262 DFI_cfg,
263 DFI_bp,
264 DFI_life,
265 DFI_combine,
266 DFI_ce,
267 DFI_regmove,
268 DFI_sched,
269 DFI_lreg,
270 DFI_greg,
271 DFI_postreload,
272 DFI_flow2,
273 DFI_peephole2,
274 DFI_rnreg,
275 DFI_ce2,
276 DFI_sched2,
277 DFI_bbro,
278 DFI_jump2,
279 DFI_mach,
280 DFI_dbr,
281 DFI_stack,
282 DFI_MAX
285 /* Describes all the dump files. Should be kept in order of the
286 pass and in sync with dump_file_index above.
288 Remaining -d letters:
290 " o q u "
291 " H K OPQ TUVW YZ"
294 struct dump_file_info dump_file[DFI_MAX] =
296 { "rtl", 'r', 0, 0, 0 },
297 { "sibling", 'i', 0, 0, 0 },
298 { "eh", 'h', 0, 0, 0 },
299 { "jump", 'j', 0, 0, 0 },
300 { "cse", 's', 0, 0, 0 },
301 { "addressof", 'F', 0, 0, 0 },
302 { "ssa", 'e', 1, 0, 0 },
303 { "dce", 'X', 1, 0, 0 },
304 { "ussa", 'e', 1, 0, 0 }, /* Yes, duplicate enable switch. */
305 { "gcse", 'G', 1, 0, 0 },
306 { "loop", 'L', 1, 0, 0 },
307 { "cse2", 't', 1, 0, 0 },
308 { "cfg", 'f', 1, 0, 0 },
309 { "bp", 'b', 1, 0, 0 },
310 { "life", 'f', 1, 0, 0 }, /* Yes, duplicate enable switch. */
311 { "combine", 'c', 1, 0, 0 },
312 { "ce", 'C', 1, 0, 0 },
313 { "regmove", 'N', 1, 0, 0 },
314 { "sched", 'S', 1, 0, 0 },
315 { "lreg", 'l', 1, 0, 0 },
316 { "greg", 'g', 1, 0, 0 },
317 { "postreload", 'o', 1, 0, 0 },
318 { "flow2", 'w', 1, 0, 0 },
319 { "peephole2", 'z', 1, 0, 0 },
320 { "rnreg", 'n', 1, 0, 0 },
321 { "ce2", 'E', 1, 0, 0 },
322 { "sched2", 'R', 1, 0, 0 },
323 { "bbro", 'B', 1, 0, 0 },
324 { "jump2", 'J', 1, 0, 0 },
325 { "mach", 'M', 1, 0, 0 },
326 { "dbr", 'd', 0, 0, 0 },
327 { "stack", 'k', 1, 0, 0 },
330 static int open_dump_file PARAMS ((enum dump_file_index, tree));
331 static void close_dump_file PARAMS ((enum dump_file_index,
332 void (*) (FILE *, rtx), rtx));
334 /* Other flags saying which kinds of debugging dump have been requested. */
336 int rtl_dump_and_exit;
337 int flag_print_asm_name;
338 static int flag_print_mem;
339 static int version_flag;
340 static char *filename;
341 enum graph_dump_types graph_dump_format;
343 /* Name for output file of assembly code, specified with -o. */
345 char *asm_file_name;
347 /* Value of the -G xx switch, and whether it was passed or not. */
348 int g_switch_value;
349 int g_switch_set;
351 /* Type(s) of debugging information we are producing (if any).
352 See flags.h for the definitions of the different possible
353 types of debugging information. */
354 enum debug_info_type write_symbols = NO_DEBUG;
356 /* Level of debugging information we are producing. See flags.h
357 for the definitions of the different possible levels. */
358 enum debug_info_level debug_info_level = DINFO_LEVEL_NONE;
360 /* Nonzero means use GNU-only extensions in the generated symbolic
361 debugging information. */
362 /* Currently, this only has an effect when write_symbols is set to
363 DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG. */
364 int use_gnu_debug_info_extensions = 0;
366 /* Nonzero means do optimizations. -O.
367 Particular numeric values stand for particular amounts of optimization;
368 thus, -O2 stores 2 here. However, the optimizations beyond the basic
369 ones are not controlled directly by this variable. Instead, they are
370 controlled by individual `flag_...' variables that are defaulted
371 based on this variable. */
373 int optimize = 0;
375 /* Nonzero means optimize for size. -Os.
376 The only valid values are zero and non-zero. When optimize_size is
377 non-zero, optimize defaults to 2, but certain individual code
378 bloating optimizations are disabled. */
380 int optimize_size = 0;
382 /* Number of error messages and warning messages so far. */
384 int errorcount = 0;
385 int warningcount = 0;
386 int sorrycount = 0;
388 /* Nonzero if we should exit after parsing options. */
389 static int exit_after_options = 0;
391 /* The FUNCTION_DECL for the function currently being compiled,
392 or 0 if between functions. */
393 tree current_function_decl;
395 /* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
396 if none. */
397 tree current_function_func_begin_label;
399 /* Pointer to function to compute the name to use to print a declaration.
400 DECL is the declaration in question.
401 VERBOSITY determines what information will be printed:
402 0: DECL_NAME, demangled as necessary.
403 1: and scope information.
404 2: and any other information that might be interesting, such as function
405 parameter types in C++. */
407 const char *(*decl_printable_name) PARAMS ((tree, int));
409 /* Pointer to function to compute rtl for a language-specific tree code. */
411 typedef rtx (*lang_expand_expr_t)
412 PARAMS ((union tree_node *, rtx, enum machine_mode,
413 enum expand_modifier modifier));
415 lang_expand_expr_t lang_expand_expr = 0;
417 tree (*lang_expand_constant) PARAMS ((tree)) = 0;
419 /* Pointer to function to finish handling an incomplete decl at the
420 end of compilation. */
422 void (*incomplete_decl_finalize_hook) PARAMS ((tree)) = 0;
424 /* Nonzero if doing dwarf2 duplicate elimination. */
426 int flag_eliminate_dwarf2_dups = 0;
428 /* Nonzero if generating code to do profiling. */
430 int profile_flag = 0;
432 /* Nonzero if generating code to do profiling on a line-by-line basis. */
434 int profile_block_flag;
436 /* Nonzero if generating code to profile program flow graph arcs. */
438 int profile_arc_flag = 0;
440 /* Nonzero if generating info for gcov to calculate line test coverage. */
442 int flag_test_coverage = 0;
444 /* Nonzero indicates that branch taken probabilities should be calculated. */
446 int flag_branch_probabilities = 0;
448 /* Nonzero if basic blocks should be reordered. */
450 int flag_reorder_blocks = 0;
452 /* Nonzero if registers should be renamed. */
454 int flag_rename_registers = 0;
456 /* Nonzero for -pedantic switch: warn about anything
457 that standard spec forbids. */
459 int pedantic = 0;
461 /* Temporarily suppress certain warnings.
462 This is set while reading code from a system header file. */
464 int in_system_header = 0;
466 /* Don't print functions as they are compiled. -quiet. */
468 int quiet_flag = 0;
470 /* Print times taken by the various passes. -ftime-report. */
472 int time_report = 0;
474 /* Print memory still in use at end of compilation (which may have little
475 to do with peak memory consumption). -fmem-report. */
477 int mem_report = 0;
479 /* Non-zero means to collect statistics which might be expensive
480 and to print them when we are done. */
481 int flag_detailed_statistics = 0;
484 /* -f flags. */
486 /* Nonzero means `char' should be signed. */
488 int flag_signed_char;
490 /* Nonzero means give an enum type only as many bytes as it needs. */
492 int flag_short_enums;
494 /* Nonzero for -fcaller-saves: allocate values in regs that need to
495 be saved across function calls, if that produces overall better code.
496 Optional now, so people can test it. */
498 #ifdef DEFAULT_CALLER_SAVES
499 int flag_caller_saves = 1;
500 #else
501 int flag_caller_saves = 0;
502 #endif
504 /* Nonzero if structures and unions should be returned in memory.
506 This should only be defined if compatibility with another compiler or
507 with an ABI is needed, because it results in slower code. */
509 #ifndef DEFAULT_PCC_STRUCT_RETURN
510 #define DEFAULT_PCC_STRUCT_RETURN 1
511 #endif
513 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
515 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
517 /* Nonzero for -fforce-mem: load memory value into a register
518 before arithmetic on it. This makes better cse but slower compilation. */
520 int flag_force_mem = 0;
522 /* Nonzero for -fforce-addr: load memory address into a register before
523 reference to memory. This makes better cse but slower compilation. */
525 int flag_force_addr = 0;
527 /* Nonzero for -fdefer-pop: don't pop args after each function call;
528 instead save them up to pop many calls' args with one insns. */
530 int flag_defer_pop = 0;
532 /* Nonzero for -ffloat-store: don't allocate floats and doubles
533 in extended-precision registers. */
535 int flag_float_store = 0;
537 /* Nonzero for -fcse-follow-jumps:
538 have cse follow jumps to do a more extensive job. */
540 int flag_cse_follow_jumps;
542 /* Nonzero for -fcse-skip-blocks:
543 have cse follow a branch around a block. */
544 int flag_cse_skip_blocks;
546 /* Nonzero for -fexpensive-optimizations:
547 perform miscellaneous relatively-expensive optimizations. */
548 int flag_expensive_optimizations;
550 /* Nonzero for -fthread-jumps:
551 have jump optimize output of loop. */
553 int flag_thread_jumps;
555 /* Nonzero enables strength-reduction in loop.c. */
557 int flag_strength_reduce = 0;
559 /* Nonzero enables loop unrolling in unroll.c. Only loops for which the
560 number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
561 UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
562 unrolled. */
564 int flag_unroll_loops;
566 /* Nonzero enables loop unrolling in unroll.c. All loops are unrolled.
567 This is generally not a win. */
569 int flag_unroll_all_loops;
571 /* Nonzero forces all invariant computations in loops to be moved
572 outside the loop. */
574 int flag_move_all_movables = 0;
576 /* Nonzero forces all general induction variables in loops to be
577 strength reduced. */
579 int flag_reduce_all_givs = 0;
581 /* Nonzero to perform full register move optimization passes. This is the
582 default for -O2. */
584 int flag_regmove = 0;
586 /* Nonzero for -fwritable-strings:
587 store string constants in data segment and don't uniquize them. */
589 int flag_writable_strings = 0;
591 /* Nonzero means don't put addresses of constant functions in registers.
592 Used for compiling the Unix kernel, where strange substitutions are
593 done on the assembly output. */
595 int flag_no_function_cse = 0;
597 /* Nonzero for -fomit-frame-pointer:
598 don't make a frame pointer in simple functions that don't require one. */
600 int flag_omit_frame_pointer = 0;
602 /* Nonzero means place each function into its own section on those platforms
603 which support arbitrary section names and unlimited numbers of sections. */
605 int flag_function_sections = 0;
607 /* ... and similar for data. */
609 int flag_data_sections = 0;
611 /* Nonzero to inhibit use of define_optimization peephole opts. */
613 int flag_no_peephole = 0;
615 /* Nonzero allows GCC to optimize sibling and tail recursive calls. */
617 int flag_optimize_sibling_calls = 0;
619 /* Nonzero means the front end generally wants `errno' maintained by math
620 operations, like built-in SQRT. */
622 int flag_errno_math = 1;
624 /* Nonzero means that unsafe floating-point math optimizations are allowed
625 for the sake of speed. IEEE compliance is not guaranteed, and operations
626 are allowed to assume that their arguments and results are "normal"
627 (e.g., nonnegative for SQRT). */
629 int flag_unsafe_math_optimizations = 0;
631 /* Zero means that floating-point math operations cannot generate a
632 (user-visible) trap. This is the case, for example, in nonstop
633 IEEE 754 arithmetic. */
635 int flag_trapping_math = 1;
637 /* 0 means straightforward implementation of complex divide acceptable.
638 1 means wide ranges of inputs must work for complex divide.
639 2 means C99-like requirements for complex divide (not yet implemented). */
641 int flag_complex_divide_method = 0;
643 /* Nonzero means all references through pointers are volatile. */
645 int flag_volatile;
647 /* Nonzero means treat all global and extern variables as volatile. */
649 int flag_volatile_global;
651 /* Nonzero means treat all static variables as volatile. */
653 int flag_volatile_static;
655 /* Nonzero means just do syntax checking; don't output anything. */
657 int flag_syntax_only = 0;
659 /* Nonzero means perform global cse. */
661 static int flag_gcse;
663 /* Nonzero means to use global dataflow analysis to eliminate
664 useless null pointer tests. */
666 static int flag_delete_null_pointer_checks;
668 /* Nonzero means to do the enhanced load motion during gcse, which trys
669 to hoist loads by not killing them when a store to the same location
670 is seen. */
672 int flag_gcse_lm = 1;
674 /* Nonzero means to perform store motion after gcse, which will try to
675 move stores closer to the exit block. Its not very effective without
676 flag_gcse_lm. */
678 int flag_gcse_sm = 1;
680 /* Nonzero means to rerun cse after loop optimization. This increases
681 compilation time about 20% and picks up a few more common expressions. */
683 static int flag_rerun_cse_after_loop;
685 /* Nonzero means to run loop optimizations twice. */
687 int flag_rerun_loop_opt;
689 /* Nonzero for -finline-functions: ok to inline functions that look like
690 good inline candidates. */
692 int flag_inline_functions;
694 /* Nonzero for -fkeep-inline-functions: even if we make a function
695 go inline everywhere, keep its definition around for debugging
696 purposes. */
698 int flag_keep_inline_functions;
700 /* Nonzero means that functions will not be inlined. */
702 int flag_no_inline;
704 /* Nonzero means that we should emit static const variables
705 regardless of whether or not optimization is turned on. */
707 int flag_keep_static_consts = 1;
709 /* Nonzero means we should be saving declaration info into a .X file. */
711 int flag_gen_aux_info = 0;
713 /* Specified name of aux-info file. */
715 static char *aux_info_file_name;
717 /* Nonzero means make the text shared if supported. */
719 int flag_shared_data;
721 /* Nonzero means schedule into delayed branch slots if supported. */
723 int flag_delayed_branch;
725 /* Nonzero if we are compiling pure (sharable) code.
726 Value is 1 if we are doing reasonable (i.e. simple
727 offset into offset table) pic. Value is 2 if we can
728 only perform register offsets. */
730 int flag_pic;
732 /* Nonzero means generate extra code for exception handling and enable
733 exception handling. */
735 int flag_exceptions;
737 /* Nonzero means generate frame unwind info table when supported. */
739 int flag_unwind_tables = 0;
741 /* Nonzero means don't place uninitialized global data in common storage
742 by default. */
744 int flag_no_common;
746 /* Nonzero means pretend it is OK to examine bits of target floats,
747 even if that isn't true. The resulting code will have incorrect constants,
748 but the same series of instructions that the native compiler would make. */
750 int flag_pretend_float;
752 /* Nonzero means change certain warnings into errors.
753 Usually these are warnings about failure to conform to some standard. */
755 int flag_pedantic_errors = 0;
757 /* flag_schedule_insns means schedule insns within basic blocks (before
758 local_alloc).
759 flag_schedule_insns_after_reload means schedule insns after
760 global_alloc. */
762 int flag_schedule_insns = 0;
763 int flag_schedule_insns_after_reload = 0;
765 /* The following flags have effect only for scheduling before register
766 allocation:
768 flag_schedule_interblock means schedule insns accross basic blocks.
769 flag_schedule_speculative means allow speculative motion of non-load insns.
770 flag_schedule_speculative_load means allow speculative motion of some
771 load insns.
772 flag_schedule_speculative_load_dangerous allows speculative motion of more
773 load insns. */
775 int flag_schedule_interblock = 1;
776 int flag_schedule_speculative = 1;
777 int flag_schedule_speculative_load = 0;
778 int flag_schedule_speculative_load_dangerous = 0;
780 int flag_single_precision_constant;
782 /* flag_branch_on_count_reg means try to replace add-1,compare,branch tupple
783 by a cheaper branch on a count register. */
784 int flag_branch_on_count_reg = 1;
786 /* -finhibit-size-directive inhibits output of .size for ELF.
787 This is used only for compiling crtstuff.c,
788 and it may be extended to other effects
789 needed for crtstuff.c on other systems. */
790 int flag_inhibit_size_directive = 0;
792 /* -fverbose-asm causes extra commentary information to be produced in
793 the generated assembly code (to make it more readable). This option
794 is generally only of use to those who actually need to read the
795 generated assembly code (perhaps while debugging the compiler itself).
796 -fno-verbose-asm, the default, causes the extra information
797 to be omitted and is useful when comparing two assembler files. */
799 int flag_verbose_asm = 0;
801 /* -dA causes debug commentary information to be produced in
802 the generated assembly code (to make it more readable). This option
803 is generally only of use to those who actually need to read the
804 generated assembly code (perhaps while debugging the compiler itself).
805 Currently, this switch is only used by dwarfout.c; however, it is intended
806 to be a catchall for printing debug information in the assembler file. */
808 int flag_debug_asm = 0;
810 /* -dP causes the rtl to be emitted as a comment in assembly. */
812 int flag_dump_rtl_in_asm = 0;
814 /* -fgnu-linker specifies use of the GNU linker for initializations.
815 (Or, more generally, a linker that handles initializations.)
816 -fno-gnu-linker says that collect2 will be used. */
817 #ifdef USE_COLLECT2
818 int flag_gnu_linker = 0;
819 #else
820 int flag_gnu_linker = 1;
821 #endif
823 /* Enable SSA. */
824 int flag_ssa = 0;
826 /* Enable dead code elimination. */
827 int flag_dce = 0;
829 /* Tag all structures with __attribute__(packed). */
830 int flag_pack_struct = 0;
832 /* Emit code to check for stack overflow; also may cause large objects
833 to be allocated dynamically. */
834 int flag_stack_check;
836 /* When non-NULL, indicates that whenever space is allocated on the
837 stack, the resulting stack pointer must not pass this
838 address---that is, for stacks that grow downward, the stack pointer
839 must always be greater than or equal to this address; for stacks
840 that grow upward, the stack pointer must be less than this address.
841 At present, the rtx may be either a REG or a SYMBOL_REF, although
842 the support provided depends on the backend. */
843 rtx stack_limit_rtx;
845 /* -fcheck-memory-usage causes extra code to be generated in order to check
846 memory accesses. This is used by a detector of bad memory accesses such
847 as Checker. */
848 int flag_check_memory_usage = 0;
850 /* -fprefix-function-name causes function name to be prefixed. This
851 can be used with -fcheck-memory-usage to isolate code compiled with
852 -fcheck-memory-usage. */
853 int flag_prefix_function_name = 0;
855 /* 0 if pointer arguments may alias each other. True in C.
856 1 if pointer arguments may not alias each other but may alias
857 global variables.
858 2 if pointer arguments may not alias each other and may not
859 alias global variables. True in Fortran.
860 This defaults to 0 for C. */
861 int flag_argument_noalias = 0;
863 /* Nonzero if we should do (language-dependent) alias analysis.
864 Typically, this analysis will assume that expressions of certain
865 types do not alias expressions of certain other types. Only used
866 if alias analysis (in general) is enabled. */
867 int flag_strict_aliasing = 0;
869 /* Instrument functions with calls at entry and exit, for profiling. */
870 int flag_instrument_function_entry_exit = 0;
872 /* Nonzero means ignore `#ident' directives. 0 means handle them.
873 On SVR4 targets, it also controls whether or not to emit a
874 string identifying the compiler. */
876 int flag_no_ident = 0;
878 /* This will perform a peephole pass before sched2. */
879 int flag_peephole2 = 0;
881 /* This will try to guess branch probabilities. */
882 int flag_guess_branch_prob = 0;
884 /* -fbounded-pointers causes gcc to compile pointers as composite
885 objects occupying three words: the pointer value, the base address
886 of the referent object, and the address immediately beyond the end
887 of the referent object. The base and extent allow us to perform
888 runtime bounds checking. -fbounded-pointers implies -fcheck-bounds. */
889 int flag_bounded_pointers = 0;
891 /* -fcheck-bounds causes gcc to generate array bounds checks.
892 For C, C++: defaults to value of flag_bounded_pointers.
893 For ObjC: defaults to off.
894 For Java: defaults to on.
895 For Fortran: defaults to off.
896 For CHILL: defaults to off. */
897 int flag_bounds_check = 0;
899 /* If one, renumber instruction UIDs to reduce the number of
900 unused UIDs if there are a lot of instructions. If greater than
901 one, unconditionally renumber instruction UIDs. */
902 int flag_renumber_insns = 1;
904 /* Values of the -falign-* flags: how much to align labels in code.
905 0 means `use default', 1 means `don't align'.
906 For each variable, there is an _log variant which is the power
907 of two not less than the variable, for .align output. */
909 int align_loops;
910 int align_loops_log;
911 int align_jumps;
912 int align_jumps_log;
913 int align_labels;
914 int align_labels_log;
915 int align_functions;
916 int align_functions_log;
918 /* Table of supported debugging formats. */
919 static struct
921 const char *arg;
922 /* Since PREFERRED_DEBUGGING_TYPE isn't necessarily a
923 constant expression, we use NO_DEBUG in its place. */
924 enum debug_info_type debug_type;
925 int use_extensions_p;
926 const char *description;
927 } *da,
928 debug_args[] =
930 { "", NO_DEBUG, DEFAULT_GDB_EXTENSIONS,
931 "Generate default debug format output" },
932 { "gdb", NO_DEBUG, 1, "Generate default extended debug format output" },
933 #ifdef DBX_DEBUGGING_INFO
934 { "stabs", DBX_DEBUG, 0, "Generate STABS format debug output" },
935 { "stabs+", DBX_DEBUG, 1, "Generate extended STABS format debug output" },
936 #endif
937 #ifdef DWARF_DEBUGGING_INFO
938 { "dwarf", DWARF_DEBUG, 0, "Generate DWARF-1 format debug output"},
939 { "dwarf+", DWARF_DEBUG, 1,
940 "Generated extended DWARF-1 format debug output" },
941 #endif
942 #ifdef DWARF2_DEBUGGING_INFO
943 { "dwarf-2", DWARF2_DEBUG, 0, "Enable DWARF-2 debug output" },
944 #endif
945 #ifdef XCOFF_DEBUGGING_INFO
946 { "xcoff", XCOFF_DEBUG, 0, "Generate XCOFF format debug output" },
947 { "xcoff+", XCOFF_DEBUG, 1, "Generate extended XCOFF format debug output" },
948 #endif
949 #ifdef SDB_DEBUGGING_INFO
950 { "coff", SDB_DEBUG, 0, "Generate COFF format debug output" },
951 #endif
952 { 0, 0, 0, 0 }
955 typedef struct
957 const char *string;
958 int *variable;
959 int on_value;
960 const char *description;
962 lang_independent_options;
964 int flag_trapv = 0;
966 /* Add or remove a leading underscore from user symbols. */
967 int flag_leading_underscore = -1;
969 /* The user symbol prefix after having resolved same. */
970 const char *user_label_prefix;
972 static const param_info lang_independent_params[] = {
973 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
974 { OPTION, DEFAULT },
975 #include "params.def"
976 #undef DEFPARAM
977 { NULL, 0 }
980 /* A default for same. */
981 #ifndef USER_LABEL_PREFIX
982 #define USER_LABEL_PREFIX ""
983 #endif
985 /* Table of language-independent -f options.
986 STRING is the option name. VARIABLE is the address of the variable.
987 ON_VALUE is the value to store in VARIABLE
988 if `-fSTRING' is seen as an option.
989 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
991 lang_independent_options f_options[] =
993 {"eliminate-dwarf2-dups", &flag_eliminate_dwarf2_dups, 1,
994 "Perform DWARF2 duplicate elimination"},
995 {"float-store", &flag_float_store, 1,
996 "Do not store floats in registers" },
997 {"volatile", &flag_volatile, 1,
998 "Consider all mem refs through pointers as volatile"},
999 {"volatile-global", &flag_volatile_global, 1,
1000 "Consider all mem refs to global data to be volatile" },
1001 {"volatile-static", &flag_volatile_static, 1,
1002 "Consider all mem refs to static data to be volatile" },
1003 {"defer-pop", &flag_defer_pop, 1,
1004 "Defer popping functions args from stack until later" },
1005 {"omit-frame-pointer", &flag_omit_frame_pointer, 1,
1006 "When possible do not generate stack frames"},
1007 {"optimize-sibling-calls", &flag_optimize_sibling_calls, 1,
1008 "Optimize sibling and tail recursive calls" },
1009 {"cse-follow-jumps", &flag_cse_follow_jumps, 1,
1010 "When running CSE, follow jumps to their targets" },
1011 {"cse-skip-blocks", &flag_cse_skip_blocks, 1,
1012 "When running CSE, follow conditional jumps" },
1013 {"expensive-optimizations", &flag_expensive_optimizations, 1,
1014 "Perform a number of minor, expensive optimisations" },
1015 {"thread-jumps", &flag_thread_jumps, 1,
1016 "Perform jump threading optimisations"},
1017 {"strength-reduce", &flag_strength_reduce, 1,
1018 "Perform strength reduction optimisations" },
1019 {"unroll-loops", &flag_unroll_loops, 1,
1020 "Perform loop unrolling when iteration count is known" },
1021 {"unroll-all-loops", &flag_unroll_all_loops, 1,
1022 "Perform loop unrolling for all loops" },
1023 {"move-all-movables", &flag_move_all_movables, 1,
1024 "Force all loop invariant computations out of loops" },
1025 {"reduce-all-givs", &flag_reduce_all_givs, 1,
1026 "Strength reduce all loop general induction variables" },
1027 {"writable-strings", &flag_writable_strings, 1,
1028 "Store strings in writable data section" },
1029 {"peephole", &flag_no_peephole, 0,
1030 "Enable machine specific peephole optimisations" },
1031 {"force-mem", &flag_force_mem, 1,
1032 "Copy memory operands into registers before using" },
1033 {"force-addr", &flag_force_addr, 1,
1034 "Copy memory address constants into regs before using" },
1035 {"function-cse", &flag_no_function_cse, 0,
1036 "Allow function addresses to be held in registers" },
1037 {"inline-functions", &flag_inline_functions, 1,
1038 "Integrate simple functions into their callers" },
1039 {"keep-inline-functions", &flag_keep_inline_functions, 1,
1040 "Generate code for funcs even if they are fully inlined" },
1041 {"inline", &flag_no_inline, 0,
1042 "Pay attention to the 'inline' keyword"},
1043 {"keep-static-consts", &flag_keep_static_consts, 1,
1044 "Emit static const variables even if they are not used" },
1045 {"syntax-only", &flag_syntax_only, 1,
1046 "Check for syntax errors, then stop" },
1047 {"shared-data", &flag_shared_data, 1,
1048 "Mark data as shared rather than private" },
1049 {"caller-saves", &flag_caller_saves, 1,
1050 "Enable saving registers around function calls" },
1051 {"pcc-struct-return", &flag_pcc_struct_return, 1,
1052 "Return 'short' aggregates in memory, not registers" },
1053 {"reg-struct-return", &flag_pcc_struct_return, 0,
1054 "Return 'short' aggregates in registers" },
1055 {"delayed-branch", &flag_delayed_branch, 1,
1056 "Attempt to fill delay slots of branch instructions" },
1057 {"gcse", &flag_gcse, 1,
1058 "Perform the global common subexpression elimination" },
1059 {"gcse-lm", &flag_gcse_lm, 1,
1060 "Perform enhanced load motion during global subexpression elimination" },
1061 {"gcse-sm", &flag_gcse_sm, 1,
1062 "Perform store motion after global subexpression elimination" },
1063 {"rerun-cse-after-loop", &flag_rerun_cse_after_loop, 1,
1064 "Run CSE pass after loop optimisations"},
1065 {"rerun-loop-opt", &flag_rerun_loop_opt, 1,
1066 "Run the loop optimiser twice"},
1067 {"delete-null-pointer-checks", &flag_delete_null_pointer_checks, 1,
1068 "Delete useless null pointer checks" },
1069 {"pretend-float", &flag_pretend_float, 1,
1070 "Pretend that host and target use the same FP format"},
1071 {"schedule-insns", &flag_schedule_insns, 1,
1072 "Reschedule instructions before register allocation"},
1073 {"schedule-insns2", &flag_schedule_insns_after_reload, 1,
1074 "Reschedule instructions after register allocation"},
1075 {"sched-interblock",&flag_schedule_interblock, 1,
1076 "Enable scheduling across basic blocks" },
1077 {"sched-spec",&flag_schedule_speculative, 1,
1078 "Allow speculative motion of non-loads" },
1079 {"sched-spec-load",&flag_schedule_speculative_load, 1,
1080 "Allow speculative motion of some loads" },
1081 {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1,
1082 "Allow speculative motion of more loads" },
1083 {"branch-count-reg",&flag_branch_on_count_reg, 1,
1084 "Replace add,compare,branch with branch on count reg"},
1085 {"pic", &flag_pic, 1,
1086 "Generate position independent code, if possible"},
1087 {"PIC", &flag_pic, 2, ""},
1088 {"exceptions", &flag_exceptions, 1,
1089 "Enable exception handling" },
1090 {"unwind-tables", &flag_unwind_tables, 1,
1091 "Just generate unwind tables for exception handling" },
1092 {"non-call-exceptions", &flag_non_call_exceptions, 1,
1093 "Support synchronous non-call exceptions" },
1094 {"profile-arcs", &profile_arc_flag, 1,
1095 "Insert arc based program profiling code" },
1096 {"test-coverage", &flag_test_coverage, 1,
1097 "Create data files needed by gcov" },
1098 {"branch-probabilities", &flag_branch_probabilities, 1,
1099 "Use profiling information for branch probabilities" },
1100 {"reorder-blocks", &flag_reorder_blocks, 1,
1101 "Reorder basic blocks to improve code placement" },
1102 {"rename-registers", &flag_rename_registers, 1,
1103 "Do the register renaming optimization pass"},
1104 {"common", &flag_no_common, 0,
1105 "Do not put unitialised globals in the common section" },
1106 {"inhibit-size-directive", &flag_inhibit_size_directive, 1,
1107 "Do not generate .size directives" },
1108 {"function-sections", &flag_function_sections, 1,
1109 "place each function into its own section" },
1110 {"data-sections", &flag_data_sections, 1,
1111 "place data items into their own section" },
1112 {"verbose-asm", &flag_verbose_asm, 1,
1113 "Add extra commentry to assembler output"},
1114 {"gnu-linker", &flag_gnu_linker, 1,
1115 "Output GNU ld formatted global initialisers"},
1116 {"regmove", &flag_regmove, 1,
1117 "Enables a register move optimisation"},
1118 {"optimize-register-move", &flag_regmove, 1,
1119 "Do the full regmove optimization pass"},
1120 {"pack-struct", &flag_pack_struct, 1,
1121 "Pack structure members together without holes" },
1122 {"stack-check", &flag_stack_check, 1,
1123 "Insert stack checking code into the program" },
1124 {"argument-alias", &flag_argument_noalias, 0,
1125 "Specify that arguments may alias each other & globals"},
1126 {"argument-noalias", &flag_argument_noalias, 1,
1127 "Assume arguments may alias globals but not each other"},
1128 {"argument-noalias-global", &flag_argument_noalias, 2,
1129 "Assume arguments do not alias each other or globals" },
1130 {"strict-aliasing", &flag_strict_aliasing, 1,
1131 "Assume strict aliasing rules apply" },
1132 {"align-loops", &align_loops, 0,
1133 "Align the start of loops" },
1134 {"align-jumps", &align_jumps, 0,
1135 "Align labels which are only reached by jumping" },
1136 {"align-labels", &align_labels, 0,
1137 "Align all labels" },
1138 {"align-functions", &align_functions, 0,
1139 "Align the start of functions" },
1140 {"check-memory-usage", &flag_check_memory_usage, 1,
1141 "Generate code to check every memory access" },
1142 {"prefix-function-name", &flag_prefix_function_name, 1,
1143 "Add a prefix to all function names" },
1144 {"dump-unnumbered", &flag_dump_unnumbered, 1,
1145 "Suppress output of instruction numbers and line number notes in debugging dumps"},
1146 {"instrument-functions", &flag_instrument_function_entry_exit, 1,
1147 "Instrument function entry/exit with profiling calls"},
1148 {"ssa", &flag_ssa, 1,
1149 "Enable SSA optimizations" },
1150 {"dce", &flag_dce, 1,
1151 "Enable dead code elimination" },
1152 {"leading-underscore", &flag_leading_underscore, 1,
1153 "External symbols have a leading underscore" },
1154 {"ident", &flag_no_ident, 0,
1155 "Process #ident directives"},
1156 { "peephole2", &flag_peephole2, 1,
1157 "Enables an rtl peephole pass run before sched2" },
1158 { "guess-branch-probability", &flag_guess_branch_prob, 1,
1159 "Enables guessing of branch probabilities" },
1160 {"math-errno", &flag_errno_math, 1,
1161 "Set errno after built-in math functions"},
1162 {"trapping-math", &flag_trapping_math, 1,
1163 "Floating-point operations can trap"},
1164 {"unsafe-math-optimizations", &flag_unsafe_math_optimizations, 1,
1165 "Allow math optimizations that may violate IEEE or ANSI standards"},
1166 {"bounded-pointers", &flag_bounded_pointers, 1,
1167 "Compile pointers as triples: value, base & end" },
1168 {"bounds-check", &flag_bounds_check, 1,
1169 "Generate code to check bounds before dereferencing pointers and arrays" },
1170 {"single-precision-constant", &flag_single_precision_constant, 1,
1171 "Convert floating point constant to single precision constant"},
1172 {"time-report", &time_report, 1,
1173 "Report time taken by each compiler pass at end of run"},
1174 {"mem-report", &mem_report, 1,
1175 "Report on permanent memory allocation at end of run"},
1176 { "trapv", &flag_trapv, 1,
1177 "Trap for signed overflow in addition / subtraction / multiplication." },
1180 /* Table of language-specific options. */
1182 static struct lang_opt
1184 const char *option;
1185 const char *description;
1187 documented_lang_options[] =
1189 /* In order not to overload the --help output, the convention
1190 used here is to only describe those options which are not
1191 enabled by default. */
1193 { "-ansi", "Compile just for ISO C89" },
1194 { "-fallow-single-precision",
1195 "Do not promote floats to double if using -traditional" },
1196 { "-std= ", "Determine language standard"},
1198 { "-fsigned-bitfields", "" },
1199 { "-funsigned-bitfields","Make bitfields by unsigned by default" },
1200 { "-fno-signed-bitfields", "" },
1201 { "-fno-unsigned-bitfields","" },
1202 { "-fsigned-char", "Make 'char' be signed by default"},
1203 { "-funsigned-char", "Make 'char' be unsigned by default"},
1204 { "-fno-signed-char", "" },
1205 { "-fno-unsigned-char", "" },
1207 { "-ftraditional", "" },
1208 { "-traditional", "Attempt to support traditional K&R style C"},
1209 { "-fnotraditional", "" },
1210 { "-fno-traditional", "" },
1212 { "-fasm", "" },
1213 { "-fno-asm", "Do not recognise the 'asm' keyword" },
1214 { "-fbuiltin", "" },
1215 { "-fno-builtin", "Do not recognise any built in functions" },
1216 { "-fhosted", "Assume normal C execution environment" },
1217 { "-fno-hosted", "" },
1218 { "-ffreestanding",
1219 "Assume that standard libraries & main might not exist" },
1220 { "-fno-freestanding", "" },
1221 { "-fcond-mismatch", "Allow different types as args of ? operator"},
1222 { "-fno-cond-mismatch", "" },
1223 { "-fdollars-in-identifiers", "Allow the use of $ inside identifiers" },
1224 { "-fno-dollars-in-identifiers", "" },
1225 { "-fpreprocessed", "" },
1226 { "-fno-preprocessed", "" },
1227 { "-fshort-double", "Use the same size for double as for float" },
1228 { "-fno-short-double", "" },
1229 { "-fshort-enums", "Use the smallest fitting integer to hold enums"},
1230 { "-fno-short-enums", "" },
1231 { "-fshort-wchar", "Override the underlying type for wchar_t to `unsigned short'" },
1232 { "-fno-short-wchar", "" },
1234 { "-Wall", "Enable most warning messages" },
1235 { "-Wbad-function-cast",
1236 "Warn about casting functions to incompatible types" },
1237 { "-Wno-bad-function-cast", "" },
1238 { "-Wno-missing-noreturn", "" },
1239 { "-Wmissing-format-attribute",
1240 "Warn about functions which might be candidates for format attributes" },
1241 { "-Wno-missing-format-attribute", "" },
1242 { "-Wcast-qual", "Warn about casts which discard qualifiers"},
1243 { "-Wno-cast-qual", "" },
1244 { "-Wchar-subscripts", "Warn about subscripts whose type is 'char'"},
1245 { "-Wno-char-subscripts", "" },
1246 { "-Wcomment", "Warn if nested comments are detected" },
1247 { "-Wno-comment", "" },
1248 { "-Wcomments", "Warn if nested comments are detected" },
1249 { "-Wno-comments", "" },
1250 { "-Wconversion", "Warn about possibly confusing type conversions" },
1251 { "-Wno-conversion", "" },
1252 { "-Wformat", "Warn about printf/scanf/strftime/strfmon format anomalies" },
1253 { "-Wno-format", "" },
1254 { "-Wformat-y2k", "" },
1255 { "-Wno-format-y2k",
1256 "Don't warn about strftime formats yielding 2 digit years" },
1257 { "-Wformat-extra-args", "" },
1258 { "-Wno-format-extra-args",
1259 "Don't warn about too many arguments to format functions" },
1260 { "-Wformat-nonliteral", "Warn about non-string-literal format strings" },
1261 { "-Wno-format-nonliteral", "" },
1262 { "-Wformat-security",
1263 "Warn about possible security problems with format functions" },
1264 { "-Wno-format-security", "" },
1265 { "-Wimplicit-function-declaration",
1266 "Warn about implicit function declarations" },
1267 { "-Wno-implicit-function-declaration", "" },
1268 { "-Werror-implicit-function-declaration", "" },
1269 { "-Wimplicit-int", "Warn when a declaration does not specify a type" },
1270 { "-Wno-implicit-int", "" },
1271 { "-Wimplicit", "" },
1272 { "-Wno-implicit", "" },
1273 { "-Wimport", "Warn about the use of the #import directive" },
1274 { "-Wno-import", "" },
1275 { "-Wlong-long","" },
1276 { "-Wno-long-long", "Do not warn about using 'long long' when -pedantic" },
1277 { "-Wmain", "Warn about suspicious declarations of main" },
1278 { "-Wno-main", "" },
1279 { "-Wmissing-braces",
1280 "Warn about possibly missing braces around initialisers" },
1281 { "-Wno-missing-braces", "" },
1282 { "-Wmissing-declarations",
1283 "Warn about global funcs without previous declarations"},
1284 { "-Wno-missing-declarations", "" },
1285 { "-Wmissing-prototypes", "Warn about global funcs without prototypes" },
1286 { "-Wno-missing-prototypes", "" },
1287 { "-Wmultichar", "Warn about use of multicharacter literals"},
1288 { "-Wno-multichar", "" },
1289 { "-Wnested-externs", "Warn about externs not at file scope level" },
1290 { "-Wno-nested-externs", "" },
1291 { "-Wparentheses", "Warn about possible missing parentheses" },
1292 { "-Wno-parentheses", "" },
1293 { "-Wsequence-point",
1294 "Warn about possible violations of sequence point rules" },
1295 { "-Wno-sequence-point", "" },
1296 { "-Wpointer-arith", "Warn about function pointer arithmetic" },
1297 { "-Wno-pointer-arith", "" },
1298 { "-Wredundant-decls",
1299 "Warn about multiple declarations of the same object" },
1300 { "-Wno-redundant-decls", "" },
1301 { "-Wsign-compare", "Warn about signed/unsigned comparisons" },
1302 { "-Wno-sign-compare", "" },
1303 { "-Wfloat-equal", "Warn about testing equality of floating point numbers" },
1304 { "-Wno-float-equal", "" },
1305 { "-Wunknown-pragmas", "Warn about unrecognized pragmas" },
1306 { "-Wno-unknown-pragmas", "" },
1307 { "-Wstrict-prototypes", "Warn about non-prototyped function decls" },
1308 { "-Wno-strict-prototypes", "" },
1309 { "-Wtraditional", "Warn about constructs whose meaning change in ISO C"},
1310 { "-Wno-traditional", "" },
1311 { "-Wtrigraphs", "Warn when trigraphs are encountered" },
1312 { "-Wno-trigraphs", "" },
1313 { "-Wundef", "" },
1314 { "-Wno-undef", "" },
1315 { "-Wwrite-strings", "Mark strings as 'const char *'"},
1316 { "-Wno-write-strings", "" },
1318 #define DEFINE_LANG_NAME(NAME) { NULL, NAME },
1320 #include "options.h"
1324 /* Here is a table, controlled by the tm.h file, listing each -m switch
1325 and which bits in `target_switches' it should set or clear.
1326 If VALUE is positive, it is bits to set.
1327 If VALUE is negative, -VALUE is bits to clear.
1328 (The sign bit is not used so there is no confusion.) */
1330 struct
1332 const char *name;
1333 int value;
1334 const char *description;
1336 target_switches [] = TARGET_SWITCHES;
1338 /* This table is similar, but allows the switch to have a value. */
1340 #ifdef TARGET_OPTIONS
1341 struct
1343 const char *prefix;
1344 const char **variable;
1345 const char *description;
1347 target_options [] = TARGET_OPTIONS;
1348 #endif
1350 /* Options controlling warnings. */
1352 /* Don't print warning messages. -w. */
1354 int inhibit_warnings = 0;
1356 /* Don't suppress warnings from system headers. -Wsystem-headers. */
1358 int warn_system_headers = 0;
1360 /* Print various extra warnings. -W. */
1362 int extra_warnings = 0;
1364 /* Treat warnings as errors. -Werror. */
1366 int warnings_are_errors = 0;
1368 /* Nonzero to warn about unused variables, functions et.al. */
1370 int warn_unused_function;
1371 int warn_unused_label;
1372 int warn_unused_parameter;
1373 int warn_unused_variable;
1374 int warn_unused_value;
1376 void
1377 set_Wunused (setting)
1378 int setting;
1380 warn_unused_function = setting;
1381 warn_unused_label = setting;
1382 /* Unused function parameter warnings are reported when either ``-W
1383 -Wunused'' or ``-Wunused-parameter'' is specified. Differentiate
1384 -Wunused by setting WARN_UNUSED_PARAMETER to -1. */
1385 if (!setting)
1386 warn_unused_parameter = 0;
1387 else if (!warn_unused_parameter)
1388 warn_unused_parameter = -1;
1389 warn_unused_variable = setting;
1390 warn_unused_value = setting;
1393 /* Nonzero to warn about code which is never reached. */
1395 int warn_notreached;
1397 /* Nonzero to warn about variables used before they are initialized. */
1399 int warn_uninitialized;
1401 /* Nonzero means warn about all declarations which shadow others. */
1403 int warn_shadow;
1405 /* Warn if a switch on an enum fails to have a case for every enum value. */
1407 int warn_switch;
1409 /* Nonzero means warn about function definitions that default the return type
1410 or that use a null return and have a return-type other than void. */
1412 int warn_return_type;
1414 /* Nonzero means warn about pointer casts that increase the required
1415 alignment of the target type (and might therefore lead to a crash
1416 due to a misaligned access). */
1418 int warn_cast_align;
1420 /* Nonzero means warn about any identifiers that match in the first N
1421 characters. The value N is in `id_clash_len'. */
1423 int warn_id_clash;
1424 int id_clash_len;
1426 /* Nonzero means warn about any objects definitions whose size is larger
1427 than N bytes. Also want about function definitions whose returned
1428 values are larger than N bytes. The value N is in `larger_than_size'. */
1430 int warn_larger_than;
1431 HOST_WIDE_INT larger_than_size;
1433 /* Nonzero means warn if inline function is too large. */
1435 int warn_inline;
1437 /* Warn if a function returns an aggregate,
1438 since there are often incompatible calling conventions for doing this. */
1440 int warn_aggregate_return;
1442 /* Warn if packed attribute on struct is unnecessary and inefficient. */
1444 int warn_packed;
1446 /* Warn when gcc pads a structure to an alignment boundary. */
1448 int warn_padded;
1450 /* Warn when an optimization pass is disabled. */
1452 int warn_disabled_optimization;
1454 /* Warn about functions which might be candidates for attribute noreturn. */
1456 int warn_missing_noreturn;
1458 /* Likewise for -W. */
1460 lang_independent_options W_options[] =
1462 {"unused-function", &warn_unused_function, 1, "Warn when a function is unused" },
1463 {"unused-label", &warn_unused_label, 1, "Warn when a label is unused" },
1464 {"unused-parameter", &warn_unused_parameter, 1, "Warn when a function parameter is unused" },
1465 {"unused-variable", &warn_unused_variable, 1, "Warn when a variable is unused" },
1466 {"unused-value", &warn_unused_value, 1, "Warn when an expression value is unused" },
1467 {"system-headers", &warn_system_headers, 1, "Do not suppress warnings from system headers"},
1468 {"error", &warnings_are_errors, 1, ""},
1469 {"shadow", &warn_shadow, 1, "Warn when one local variable shadows another" },
1470 {"switch", &warn_switch, 1,
1471 "Warn about enumerated switches missing a specific case" },
1472 {"aggregate-return", &warn_aggregate_return, 1,
1473 "Warn about returning structures, unions or arrays" },
1474 {"cast-align", &warn_cast_align, 1,
1475 "Warn about pointer casts which increase alignment" },
1476 {"unreachable-code", &warn_notreached, 1,
1477 "Warn about code that will never be executed" },
1478 {"uninitialized", &warn_uninitialized, 1,
1479 "Warn about unitialized automatic variables"},
1480 {"inline", &warn_inline, 1,
1481 "Warn when an inlined function cannot be inlined"},
1482 {"packed", &warn_packed, 1,
1483 "Warn when the packed attribute has no effect on struct layout"},
1484 {"padded", &warn_padded, 1,
1485 "Warn when padding is required to align struct members"},
1486 {"disabled-optimization", &warn_disabled_optimization, 1,
1487 "Warn when an optimization pass is disabled"},
1488 {"missing-noreturn", &warn_missing_noreturn, 1,
1489 "Warn about functions which might be candidates for attribute noreturn"}
1492 /* The following routines are useful in setting all the flags that
1493 -ffast-math and -fno-fast-math imply. */
1495 void
1496 set_fast_math_flags ()
1498 flag_trapping_math = 0;
1499 flag_unsafe_math_optimizations = 1;
1500 flag_errno_math = 0;
1503 void
1504 set_no_fast_math_flags ()
1506 flag_trapping_math = 1;
1507 flag_unsafe_math_optimizations = 0;
1508 flag_errno_math = 1;
1512 /* Output files for assembler code (real compiler output)
1513 and debugging dumps. */
1515 FILE *asm_out_file;
1516 FILE *aux_info_file;
1517 FILE *rtl_dump_file = NULL;
1519 /* Decode the string P as an integral parameter.
1520 If the string is indeed an integer return its numeric value else
1521 issue an Invalid Option error for the option PNAME and return DEFVAL.
1522 If PNAME is zero just return DEFVAL, do not call error. */
1525 read_integral_parameter (p, pname, defval)
1526 const char *p;
1527 const char *pname;
1528 const int defval;
1530 const char *endp = p;
1532 while (*endp)
1534 if (*endp >= '0' && *endp <= '9')
1535 endp++;
1536 else
1537 break;
1540 if (*endp != 0)
1542 if (pname != 0)
1543 error ("Invalid option `%s'", pname);
1544 return defval;
1547 return atoi (p);
1551 /* This is the default decl_printable_name function. */
1553 static const char *
1554 decl_name (decl, verbosity)
1555 tree decl;
1556 int verbosity ATTRIBUTE_UNUSED;
1558 return IDENTIFIER_POINTER (DECL_NAME (decl));
1562 /* This calls abort and is used to avoid problems when abort if a macro.
1563 It is used when we need to pass the address of abort. */
1565 void
1566 do_abort ()
1568 abort ();
1571 /* When `malloc.c' is compiled with `rcheck' defined,
1572 it calls this function to report clobberage. */
1574 void
1575 botch (s)
1576 const char *s ATTRIBUTE_UNUSED;
1578 abort ();
1581 /* Return the logarithm of X, base 2, considering X unsigned,
1582 if X is a power of 2. Otherwise, returns -1.
1584 This should be used via the `exact_log2' macro. */
1587 exact_log2_wide (x)
1588 register unsigned HOST_WIDE_INT x;
1590 register int log = 0;
1591 /* Test for 0 or a power of 2. */
1592 if (x == 0 || x != (x & -x))
1593 return -1;
1594 while ((x >>= 1) != 0)
1595 log++;
1596 return log;
1599 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1600 If X is 0, return -1.
1602 This should be used via the floor_log2 macro. */
1605 floor_log2_wide (x)
1606 register unsigned HOST_WIDE_INT x;
1608 register int log = -1;
1609 while (x != 0)
1610 log++,
1611 x >>= 1;
1612 return log;
1615 /* Return the approximate positive square root of a number N. This is for
1616 statistical reports, not code generation. */
1617 double
1618 approx_sqrt (x)
1619 double x;
1621 double s, d;
1623 if (x < 0)
1624 abort ();
1625 if (x == 0)
1626 return 0;
1628 s = x;
1631 d = (s * s - x) / (2 * s);
1632 s -= d;
1634 while (d > .0001);
1635 return s;
1638 static int float_handler_set;
1639 int float_handled;
1640 jmp_buf float_handler;
1642 /* Signals actually come here. */
1644 static void
1645 float_signal (signo)
1646 /* If this is missing, some compilers complain. */
1647 int signo ATTRIBUTE_UNUSED;
1649 if (float_handled == 0)
1650 crash_signal (signo);
1651 #if defined (USG) || defined (hpux)
1652 /* Re-enable the signal catcher. */
1653 signal (SIGFPE, float_signal);
1654 #endif
1655 float_handled = 0;
1656 signal (SIGFPE, float_signal);
1657 longjmp (float_handler, 1);
1660 /* Specify where to longjmp to when a floating arithmetic error happens.
1661 If HANDLER is 0, it means don't handle the errors any more. */
1663 void
1664 set_float_handler (handler)
1665 jmp_buf handler;
1667 float_handled = (handler != 0);
1668 if (handler)
1669 memcpy (float_handler, handler, sizeof (float_handler));
1671 if (float_handled && ! float_handler_set)
1673 signal (SIGFPE, float_signal);
1674 float_handler_set = 1;
1678 /* This is a wrapper function for code which might elicit an
1679 arithmetic exception. That code should be passed in as a function
1680 pointer FN, and one argument DATA. DATA is usually a struct which
1681 contains the real input and output for function FN. This function
1682 returns 0 (failure) if longjmp was called (i.e. an exception
1683 occured.) It returns 1 (success) otherwise. */
1686 do_float_handler (fn, data)
1687 void (*fn) PARAMS ((PTR));
1688 PTR data;
1690 jmp_buf buf;
1692 if (setjmp (buf))
1694 /* We got here via longjmp () caused by an exception in function
1695 fn (). */
1696 set_float_handler (NULL);
1697 return 0;
1700 set_float_handler (buf);
1701 (*fn)(data);
1702 set_float_handler (NULL);
1703 return 1;
1706 /* Handler for fatal signals, such as SIGSEGV. These are transformed
1707 into ICE messages, which is much more user friendly. */
1709 static void
1710 crash_signal (signo)
1711 int signo;
1713 internal_error ("Internal error: %s", strsignal (signo));
1716 /* Strip off a legitimate source ending from the input string NAME of
1717 length LEN. Rather than having to know the names used by all of
1718 our front ends, we strip off an ending of a period followed by
1719 up to five characters. (Java uses ".class".) */
1721 void
1722 strip_off_ending (name, len)
1723 char *name;
1724 int len;
1726 int i;
1727 for (i = 2; i < 6 && len > i; i++)
1729 if (name[len - i] == '.')
1731 name[len - i] = '\0';
1732 break;
1737 /* Output a quoted string. */
1739 void
1740 output_quoted_string (asm_file, string)
1741 FILE *asm_file;
1742 const char *string;
1744 #ifdef OUTPUT_QUOTED_STRING
1745 OUTPUT_QUOTED_STRING (asm_file, string);
1746 #else
1747 char c;
1749 putc ('\"', asm_file);
1750 while ((c = *string++) != 0)
1752 if (c == '\"' || c == '\\')
1753 putc ('\\', asm_file);
1754 putc (c, asm_file);
1756 putc ('\"', asm_file);
1757 #endif
1760 /* Output a file name in the form wanted by System V. */
1762 void
1763 output_file_directive (asm_file, input_name)
1764 FILE *asm_file;
1765 const char *input_name;
1767 int len = strlen (input_name);
1768 const char *na = input_name + len;
1770 /* NA gets INPUT_NAME sans directory names. */
1771 while (na > input_name)
1773 if (IS_DIR_SEPARATOR (na[-1]))
1774 break;
1775 na--;
1778 #ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
1779 ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file, na);
1780 #else
1781 #ifdef ASM_OUTPUT_SOURCE_FILENAME
1782 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
1783 #else
1784 fprintf (asm_file, "\t.file\t");
1785 output_quoted_string (asm_file, na);
1786 fputc ('\n', asm_file);
1787 #endif
1788 #endif
1791 /* Routine to open a dump file. Return true if the dump file is enabled. */
1793 static int
1794 open_dump_file (index, decl)
1795 enum dump_file_index index;
1796 tree decl;
1798 char *dump_name;
1799 const char *open_arg;
1800 char seq[16];
1802 if (! dump_file[index].enabled)
1803 return 0;
1805 timevar_push (TV_DUMP);
1806 if (rtl_dump_file != NULL)
1807 fclose (rtl_dump_file);
1809 sprintf (seq, ".%02d.", index);
1811 if (! dump_file[index].initialized)
1813 /* If we've not initialized the files, do so now. */
1814 if (graph_dump_format != no_graph
1815 && dump_file[index].graph_dump_p)
1817 dump_name = concat (seq, dump_file[index].extension, NULL);
1818 clean_graph_dump_file (dump_base_name, dump_name);
1819 free (dump_name);
1821 dump_file[index].initialized = 1;
1822 open_arg = "w";
1824 else
1825 open_arg = "a";
1827 dump_name = concat (dump_base_name, seq,
1828 dump_file[index].extension, NULL);
1830 rtl_dump_file = fopen (dump_name, open_arg);
1831 if (rtl_dump_file == NULL)
1832 fatal_io_error ("can't open %s", dump_name);
1834 free (dump_name);
1836 if (decl)
1837 fprintf (rtl_dump_file, "\n;; Function %s\n\n",
1838 decl_printable_name (decl, 2));
1840 timevar_pop (TV_DUMP);
1841 return 1;
1844 /* Routine to close a dump file. */
1846 static void
1847 close_dump_file (index, func, insns)
1848 enum dump_file_index index;
1849 void (*func) PARAMS ((FILE *, rtx));
1850 rtx insns;
1852 if (! rtl_dump_file)
1853 return;
1855 timevar_push (TV_DUMP);
1856 if (insns
1857 && graph_dump_format != no_graph
1858 && dump_file[index].graph_dump_p)
1860 char seq[16];
1861 char *suffix;
1863 sprintf (seq, ".%02d.", index);
1864 suffix = concat (seq, dump_file[index].extension, NULL);
1865 print_rtl_graph_with_bb (dump_base_name, suffix, insns);
1866 free (suffix);
1869 if (func && insns)
1870 func (rtl_dump_file, insns);
1872 fflush (rtl_dump_file);
1873 fclose (rtl_dump_file);
1875 rtl_dump_file = NULL;
1876 timevar_pop (TV_DUMP);
1879 /* Do any final processing required for the declarations in VEC, of
1880 which there are LEN. We write out inline functions and variables
1881 that have been deferred until this point, but which are required.
1882 Returns non-zero if anything was put out. */
1885 wrapup_global_declarations (vec, len)
1886 tree *vec;
1887 int len;
1889 tree decl;
1890 int i;
1891 int reconsider;
1892 int output_something = 0;
1894 for (i = 0; i < len; i++)
1896 decl = vec[i];
1898 /* We're not deferring this any longer. */
1899 DECL_DEFER_OUTPUT (decl) = 0;
1901 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0
1902 && incomplete_decl_finalize_hook != 0)
1903 (*incomplete_decl_finalize_hook) (decl);
1906 /* Now emit any global variables or functions that we have been
1907 putting off. We need to loop in case one of the things emitted
1908 here references another one which comes earlier in the list. */
1911 reconsider = 0;
1912 for (i = 0; i < len; i++)
1914 decl = vec[i];
1916 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
1917 continue;
1919 /* Don't write out static consts, unless we still need them.
1921 We also keep static consts if not optimizing (for debugging),
1922 unless the user specified -fno-keep-static-consts.
1923 ??? They might be better written into the debug information.
1924 This is possible when using DWARF.
1926 A language processor that wants static constants to be always
1927 written out (even if it is not used) is responsible for
1928 calling rest_of_decl_compilation itself. E.g. the C front-end
1929 calls rest_of_decl_compilation from finish_decl.
1930 One motivation for this is that is conventional in some
1931 environments to write things like:
1932 static const char rcsid[] = "... version string ...";
1933 intending to force the string to be in the executable.
1935 A language processor that would prefer to have unneeded
1936 static constants "optimized away" would just defer writing
1937 them out until here. E.g. C++ does this, because static
1938 constants are often defined in header files.
1940 ??? A tempting alternative (for both C and C++) would be
1941 to force a constant to be written if and only if it is
1942 defined in a main file, as opposed to an include file. */
1944 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
1945 && (((! TREE_READONLY (decl) || TREE_PUBLIC (decl))
1946 && !DECL_COMDAT (decl))
1947 || (!optimize
1948 && flag_keep_static_consts
1949 && !DECL_ARTIFICIAL (decl))
1950 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1952 reconsider = 1;
1953 rest_of_decl_compilation (decl, NULL_PTR, 1, 1);
1956 if (TREE_CODE (decl) == FUNCTION_DECL
1957 && DECL_INITIAL (decl) != 0
1958 && DECL_SAVED_INSNS (decl) != 0
1959 && (flag_keep_inline_functions
1960 || (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1961 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1963 reconsider = 1;
1964 output_inline_function (decl);
1968 if (reconsider)
1969 output_something = 1;
1971 while (reconsider);
1973 return output_something;
1976 /* Issue appropriate warnings for the global declarations in VEC (of
1977 which there are LEN). Output debugging information for them. */
1979 void
1980 check_global_declarations (vec, len)
1981 tree *vec;
1982 int len;
1984 tree decl;
1985 int i;
1987 for (i = 0; i < len; i++)
1989 decl = vec[i];
1991 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
1992 && ! TREE_ASM_WRITTEN (decl))
1993 /* Cancel the RTL for this decl so that, if debugging info
1994 output for global variables is still to come,
1995 this one will be omitted. */
1996 SET_DECL_RTL (decl, NULL_RTX);
1998 /* Warn about any function
1999 declared static but not defined.
2000 We don't warn about variables,
2001 because many programs have static variables
2002 that exist only to get some text into the object file. */
2003 if (TREE_CODE (decl) == FUNCTION_DECL
2004 && (warn_unused_function
2005 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2006 && DECL_INITIAL (decl) == 0
2007 && DECL_EXTERNAL (decl)
2008 && ! DECL_ARTIFICIAL (decl)
2009 && ! TREE_PUBLIC (decl))
2011 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2012 pedwarn_with_decl (decl,
2013 "`%s' used but never defined");
2014 else
2015 warning_with_decl (decl,
2016 "`%s' declared `static' but never defined");
2017 /* This symbol is effectively an "extern" declaration now. */
2018 TREE_PUBLIC (decl) = 1;
2019 assemble_external (decl);
2022 /* Warn about static fns or vars defined but not used,
2023 but not about inline functions or static consts
2024 since defining those in header files is normal practice. */
2025 if (((warn_unused_function
2026 && TREE_CODE (decl) == FUNCTION_DECL && ! DECL_INLINE (decl))
2027 || (warn_unused_variable
2028 && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
2029 && ! DECL_IN_SYSTEM_HEADER (decl)
2030 && ! DECL_EXTERNAL (decl)
2031 && ! TREE_PUBLIC (decl)
2032 && ! TREE_USED (decl)
2033 && (TREE_CODE (decl) == FUNCTION_DECL || ! DECL_REGISTER (decl))
2034 /* The TREE_USED bit for file-scope decls
2035 is kept in the identifier, to handle multiple
2036 external decls in different scopes. */
2037 && ! TREE_USED (DECL_NAME (decl)))
2038 warning_with_decl (decl, "`%s' defined but not used");
2040 timevar_push (TV_SYMOUT);
2041 #ifdef SDB_DEBUGGING_INFO
2042 /* The COFF linker can move initialized global vars to the end.
2043 And that can screw up the symbol ordering.
2044 By putting the symbols in that order to begin with,
2045 we avoid a problem. mcsun!unido!fauern!tumuc!pes@uunet.uu.net. */
2046 if (write_symbols == SDB_DEBUG && TREE_CODE (decl) == VAR_DECL
2047 && TREE_PUBLIC (decl) && DECL_INITIAL (decl)
2048 && ! DECL_EXTERNAL (decl)
2049 && DECL_RTL (decl) != 0)
2050 sdbout_symbol (decl, 0);
2052 /* Output COFF information for non-global
2053 file-scope initialized variables. */
2054 if (write_symbols == SDB_DEBUG
2055 && TREE_CODE (decl) == VAR_DECL
2056 && DECL_INITIAL (decl)
2057 && ! DECL_EXTERNAL (decl)
2058 && DECL_RTL (decl) != 0
2059 && GET_CODE (DECL_RTL (decl)) == MEM)
2060 sdbout_toplevel_data (decl);
2061 #endif /* SDB_DEBUGGING_INFO */
2062 #ifdef DWARF_DEBUGGING_INFO
2063 /* Output DWARF information for file-scope tentative data object
2064 declarations, file-scope (extern) function declarations (which
2065 had no corresponding body) and file-scope tagged type declarations
2066 and definitions which have not yet been forced out. */
2068 if (write_symbols == DWARF_DEBUG
2069 && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
2070 dwarfout_file_scope_decl (decl, 1);
2071 #endif
2072 #ifdef DWARF2_DEBUGGING_INFO
2073 /* Output DWARF2 information for file-scope tentative data object
2074 declarations, file-scope (extern) function declarations (which
2075 had no corresponding body) and file-scope tagged type declarations
2076 and definitions which have not yet been forced out. */
2078 if (write_symbols == DWARF2_DEBUG
2079 && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
2080 dwarf2out_decl (decl);
2081 #endif
2082 timevar_pop (TV_SYMOUT);
2086 /* Save the current INPUT_FILENAME and LINENO on the top entry in the
2087 INPUT_FILE_STACK. Push a new entry for FILE and LINE, and set the
2088 INPUT_FILENAME and LINENO accordingly. */
2090 void
2091 push_srcloc (file, line)
2092 const char *file;
2093 int line;
2095 struct file_stack *fs;
2097 if (input_file_stack)
2099 input_file_stack->name = input_filename;
2100 input_file_stack->line = lineno;
2103 fs = (struct file_stack *) xmalloc (sizeof (struct file_stack));
2104 fs->name = input_filename = file;
2105 fs->line = lineno = line;
2106 fs->indent_level = 0;
2107 fs->next = input_file_stack;
2108 input_file_stack = fs;
2109 input_file_stack_tick++;
2112 /* Pop the top entry off the stack of presently open source files.
2113 Restore the INPUT_FILENAME and LINENO from the new topmost entry on
2114 the stack. */
2116 void
2117 pop_srcloc ()
2119 struct file_stack *fs;
2121 fs = input_file_stack;
2122 input_file_stack = fs->next;
2123 free (fs);
2124 input_file_stack_tick++;
2125 /* The initial source file is never popped. */
2126 if (!input_file_stack)
2127 abort ();
2128 input_filename = input_file_stack->name;
2129 lineno = input_file_stack->line;
2132 /* Compile an entire file of output from cpp, named NAME.
2133 Write a file of assembly output and various debugging dumps. */
2135 static void
2136 compile_file (name)
2137 const char *name;
2139 tree globals;
2141 int name_specified = name != 0;
2143 if (dump_base_name == 0)
2144 dump_base_name = name ? name : "gccdump";
2146 if (! quiet_flag)
2147 time_report = 1;
2149 /* Start timing total execution time. */
2151 init_timevar ();
2152 timevar_start (TV_TOTAL);
2154 /* Initialize data in various passes. */
2156 init_obstacks ();
2157 name = init_parse (name);
2158 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
2159 || debug_info_level == DINFO_LEVEL_VERBOSE
2160 || flag_test_coverage
2161 || warn_notreached);
2162 init_regs ();
2163 init_alias_once ();
2164 init_decl_processing ();
2165 init_eh ();
2166 init_optabs ();
2167 init_stmt ();
2168 init_loop ();
2169 init_reload ();
2170 init_function_once ();
2171 init_stor_layout_once ();
2172 init_varasm_once ();
2173 init_EXPR_INSN_LIST_cache ();
2175 /* The following initialization functions need to generate rtl, so
2176 provide a dummy function context for them. */
2177 init_dummy_function_start ();
2178 init_expmed ();
2179 init_expr_once ();
2180 if (flag_caller_saves)
2181 init_caller_save ();
2182 expand_dummy_function_end ();
2184 /* If auxiliary info generation is desired, open the output file.
2185 This goes in the same directory as the source file--unlike
2186 all the other output files. */
2187 if (flag_gen_aux_info)
2189 aux_info_file = fopen (aux_info_file_name, "w");
2190 if (aux_info_file == 0)
2191 fatal_io_error ("can't open %s", aux_info_file_name);
2194 /* Open assembler code output file. Do this even if -fsyntax-only is on,
2195 because then the driver will have provided the name of a temporary
2196 file or bit bucket for us. */
2198 if (! name_specified && asm_file_name == 0)
2199 asm_out_file = stdout;
2200 else
2202 if (asm_file_name == 0)
2204 int len = strlen (dump_base_name);
2205 char *dumpname = (char *) xmalloc (len + 6);
2206 memcpy (dumpname, dump_base_name, len + 1);
2207 strip_off_ending (dumpname, len);
2208 strcat (dumpname, ".s");
2209 asm_file_name = dumpname;
2211 if (!strcmp (asm_file_name, "-"))
2212 asm_out_file = stdout;
2213 else
2214 asm_out_file = fopen (asm_file_name, "w");
2215 if (asm_out_file == 0)
2216 fatal_io_error ("can't open %s for writing", asm_file_name);
2219 #ifdef IO_BUFFER_SIZE
2220 setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
2221 _IOFBF, IO_BUFFER_SIZE);
2222 #endif
2224 if (name != 0)
2225 name = ggc_strdup (name);
2227 input_filename = name;
2229 /* Put an entry on the input file stack for the main input file. */
2230 push_srcloc (input_filename, 0);
2232 /* Perform language-specific initialization.
2233 This may set main_input_filename. */
2234 if (lang_hooks.init)
2235 (*lang_hooks.init) ();
2237 /* If the input doesn't start with a #line, use the input name
2238 as the official input file name. */
2239 if (main_input_filename == 0)
2240 main_input_filename = name;
2242 if (flag_syntax_only)
2244 write_symbols = NO_DEBUG;
2245 profile_flag = 0;
2246 profile_block_flag = 0;
2248 else
2250 ASM_FILE_START (asm_out_file);
2252 #ifdef ASM_COMMENT_START
2253 if (flag_verbose_asm)
2255 /* Print the list of options in effect. */
2256 print_version (asm_out_file, ASM_COMMENT_START);
2257 print_switch_values (asm_out_file, 0, MAX_LINE,
2258 ASM_COMMENT_START, " ", "\n");
2259 /* Add a blank line here so it appears in assembler output but not
2260 screen output. */
2261 fprintf (asm_out_file, "\n");
2263 #endif
2264 } /* ! flag_syntax_only */
2266 #ifndef ASM_OUTPUT_SECTION_NAME
2267 if (flag_function_sections)
2269 warning ("-ffunction-sections not supported for this target.");
2270 flag_function_sections = 0;
2272 if (flag_data_sections)
2274 warning ("-fdata-sections not supported for this target.");
2275 flag_data_sections = 0;
2277 #endif
2279 if (flag_function_sections
2280 && (profile_flag || profile_block_flag))
2282 warning ("-ffunction-sections disabled; it makes profiling impossible.");
2283 flag_function_sections = 0;
2286 #ifndef OBJECT_FORMAT_ELF
2287 if (flag_function_sections && write_symbols != NO_DEBUG)
2288 warning ("-ffunction-sections may affect debugging on some targets.");
2289 #endif
2291 /* If dbx symbol table desired, initialize writing it
2292 and output the predefined types. */
2293 timevar_push (TV_SYMOUT);
2294 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2295 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2296 dbxout_init (asm_out_file, main_input_filename, getdecls ());
2297 #endif
2298 #ifdef SDB_DEBUGGING_INFO
2299 if (write_symbols == SDB_DEBUG)
2300 sdbout_init (asm_out_file, main_input_filename, getdecls ());
2301 #endif
2302 #ifdef DWARF_DEBUGGING_INFO
2303 if (write_symbols == DWARF_DEBUG)
2304 dwarfout_init (asm_out_file, main_input_filename);
2305 #endif
2306 #ifdef DWARF2_UNWIND_INFO
2307 if (dwarf2out_do_frame ())
2308 dwarf2out_frame_init ();
2309 #endif
2310 #ifdef DWARF2_DEBUGGING_INFO
2311 if (write_symbols == DWARF2_DEBUG)
2312 dwarf2out_init (asm_out_file, main_input_filename);
2313 #endif
2314 timevar_pop (TV_SYMOUT);
2316 /* Initialize yet another pass. */
2318 init_final (main_input_filename);
2319 init_branch_prob (dump_base_name);
2321 timevar_push (TV_PARSE);
2323 /* Call the parser, which parses the entire file
2324 (calling rest_of_compilation for each function). */
2326 if (yyparse () != 0)
2328 if (errorcount == 0)
2329 fnotice (stderr, "Errors detected in input file (your bison.simple is out of date)\n");
2331 /* In case there were missing closebraces,
2332 get us back to the global binding level. */
2333 while (! global_bindings_p ())
2334 poplevel (0, 0, 0);
2337 /* Compilation is now finished except for writing
2338 what's left of the symbol table output. */
2340 timevar_pop (TV_PARSE);
2342 if (flag_syntax_only)
2343 goto finish_syntax;
2345 globals = getdecls ();
2347 /* Really define vars that have had only a tentative definition.
2348 Really output inline functions that must actually be callable
2349 and have not been output so far. */
2352 int len = list_length (globals);
2353 tree *vec = (tree *) xmalloc (sizeof (tree) * len);
2354 int i;
2355 tree decl;
2357 /* Process the decls in reverse order--earliest first.
2358 Put them into VEC from back to front, then take out from front. */
2360 for (i = 0, decl = globals; i < len; i++, decl = TREE_CHAIN (decl))
2361 vec[len - i - 1] = decl;
2363 wrapup_global_declarations (vec, len);
2365 /* This must occur after the loop to output deferred functions. Else
2366 the profiler initializer would not be emitted if all the functions
2367 in this compilation unit were deferred.
2369 output_func_start_profiler can not cause any additional functions or
2370 data to need to be output, so it need not be in the deferred function
2371 loop above. */
2372 output_func_start_profiler ();
2374 check_global_declarations (vec, len);
2376 /* Clean up. */
2377 free (vec);
2380 /* Write out any pending weak symbol declarations. */
2382 weak_finish ();
2384 /* Do dbx symbols. */
2385 timevar_push (TV_SYMOUT);
2386 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2387 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2388 dbxout_finish (asm_out_file, main_input_filename);
2389 #endif
2391 #ifdef DWARF_DEBUGGING_INFO
2392 if (write_symbols == DWARF_DEBUG)
2393 dwarfout_finish ();
2394 #endif
2396 #ifdef DWARF2_UNWIND_INFO
2397 if (dwarf2out_do_frame ())
2398 dwarf2out_frame_finish ();
2399 #endif
2401 #ifdef DWARF2_DEBUGGING_INFO
2402 if (write_symbols == DWARF2_DEBUG)
2403 dwarf2out_finish ();
2404 #endif
2405 timevar_pop (TV_SYMOUT);
2407 /* Output some stuff at end of file if nec. */
2409 end_final (dump_base_name);
2411 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
2413 timevar_push (TV_DUMP);
2414 open_dump_file (DFI_bp, NULL);
2416 end_branch_prob ();
2418 close_dump_file (DFI_bp, NULL, NULL_RTX);
2419 timevar_pop (TV_DUMP);
2422 #ifdef ASM_FILE_END
2423 ASM_FILE_END (asm_out_file);
2424 #endif
2426 /* Attach a special .ident directive to the end of the file to identify
2427 the version of GCC which compiled this code. The format of the .ident
2428 string is patterned after the ones produced by native SVR4 compilers. */
2429 #ifdef IDENT_ASM_OP
2430 if (!flag_no_ident)
2431 fprintf (asm_out_file, "%s\"GCC: (GNU) %s\"\n",
2432 IDENT_ASM_OP, version_string);
2433 #endif
2435 /* Language-specific end of compilation actions. */
2436 finish_syntax:
2437 if (lang_hooks.finish)
2438 (*lang_hooks.finish) ();
2440 /* Close the dump files. */
2442 if (flag_gen_aux_info)
2444 fclose (aux_info_file);
2445 if (errorcount)
2446 unlink (aux_info_file_name);
2449 if (optimize > 0 && open_dump_file (DFI_combine, NULL))
2451 timevar_push (TV_DUMP);
2452 dump_combine_total_stats (rtl_dump_file);
2453 close_dump_file (DFI_combine, NULL, NULL_RTX);
2454 timevar_pop (TV_DUMP);
2457 /* Close non-debugging input and output files. Take special care to note
2458 whether fclose returns an error, since the pages might still be on the
2459 buffer chain while the file is open. */
2461 finish_parse ();
2463 if (ferror (asm_out_file) != 0)
2464 fatal_io_error ("error writing to %s", asm_file_name);
2465 if (fclose (asm_out_file) != 0)
2466 fatal_io_error ("error closing %s", asm_file_name);
2468 /* Do whatever is necessary to finish printing the graphs. */
2469 if (graph_dump_format != no_graph)
2471 int i;
2473 for (i = 0; i < (int) DFI_MAX; ++i)
2474 if (dump_file[i].initialized && dump_file[i].graph_dump_p)
2476 char seq[16];
2477 char *suffix;
2479 sprintf (seq, ".%02d.", i);
2480 suffix = concat (seq, dump_file[i].extension, NULL);
2481 finish_graph_dump_file (dump_base_name, suffix);
2482 free (suffix);
2486 if (mem_report)
2488 ggc_print_statistics ();
2489 stringpool_statistics ();
2492 /* Free up memory for the benefit of leak detectors. */
2493 free_reg_info ();
2495 /* Stop timing total execution time. */
2496 timevar_stop (TV_TOTAL);
2498 /* Print the times. */
2500 timevar_print (stderr);
2503 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
2504 and TYPE_DECL nodes.
2506 This does nothing for local (non-static) variables, unless the
2507 variable is a register variable with an ASMSPEC. In that case, or
2508 if the variable is not an automatice, it sets up the RTL and
2509 outputs any assembler code (label definition, storage allocation
2510 and initialization).
2512 DECL is the declaration. If ASMSPEC is nonzero, it specifies
2513 the assembler symbol name to be used. TOP_LEVEL is nonzero
2514 if this declaration is not within a function. */
2516 void
2517 rest_of_decl_compilation (decl, asmspec, top_level, at_end)
2518 tree decl;
2519 const char *asmspec;
2520 int top_level;
2521 int at_end;
2523 /* Declarations of variables, and of functions defined elsewhere. */
2525 /* The most obvious approach, to put an #ifndef around where
2526 this macro is used, doesn't work since it's inside a macro call. */
2527 #ifndef ASM_FINISH_DECLARE_OBJECT
2528 #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP, END)
2529 #endif
2531 /* Forward declarations for nested functions are not "external",
2532 but we need to treat them as if they were. */
2533 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
2534 || TREE_CODE (decl) == FUNCTION_DECL)
2536 timevar_push (TV_VARCONST);
2537 if (asmspec)
2538 make_decl_rtl (decl, asmspec);
2539 /* Don't output anything
2540 when a tentative file-scope definition is seen.
2541 But at end of compilation, do output code for them. */
2542 if (at_end || !DECL_DEFER_OUTPUT (decl))
2543 assemble_variable (decl, top_level, at_end, 0);
2544 if (decl == last_assemble_variable_decl)
2546 ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
2547 top_level, at_end);
2549 timevar_pop (TV_VARCONST);
2551 else if (DECL_REGISTER (decl) && asmspec != 0)
2553 if (decode_reg_name (asmspec) >= 0)
2555 SET_DECL_RTL (decl, NULL_RTX);
2556 make_decl_rtl (decl, asmspec);
2558 else
2560 error ("invalid register name `%s' for register variable", asmspec);
2561 DECL_REGISTER (decl) = 0;
2562 if (!top_level)
2563 expand_decl (decl);
2566 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2567 else if ((write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2568 && TREE_CODE (decl) == TYPE_DECL)
2570 timevar_push (TV_SYMOUT);
2571 dbxout_symbol (decl, 0);
2572 timevar_pop (TV_SYMOUT);
2574 #endif
2575 #ifdef SDB_DEBUGGING_INFO
2576 else if (write_symbols == SDB_DEBUG && top_level
2577 && TREE_CODE (decl) == TYPE_DECL)
2579 timevar_push (TV_SYMOUT);
2580 sdbout_symbol (decl, 0);
2581 timevar_pop (TV_SYMOUT);
2583 #endif
2586 /* Called after finishing a record, union or enumeral type. */
2588 void
2589 rest_of_type_compilation (type, toplev)
2590 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO) || defined (SDB_DEBUGGING_INFO)
2591 tree type;
2592 int toplev;
2593 #else
2594 tree type ATTRIBUTE_UNUSED;
2595 int toplev ATTRIBUTE_UNUSED;
2596 #endif
2598 timevar_push (TV_SYMOUT);
2599 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2600 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2601 dbxout_symbol (TYPE_STUB_DECL (type), !toplev);
2602 #endif
2603 #ifdef SDB_DEBUGGING_INFO
2604 if (write_symbols == SDB_DEBUG)
2605 sdbout_symbol (TYPE_STUB_DECL (type), !toplev);
2606 #endif
2607 #ifdef DWARF2_DEBUGGING_INFO
2608 if (write_symbols == DWARF2_DEBUG && toplev)
2609 dwarf2out_decl (TYPE_STUB_DECL (type));
2610 #endif
2611 timevar_pop (TV_SYMOUT);
2614 /* DECL is an inline function, whose body is present, but which is not
2615 being output at this point. (We're putting that off until we need
2616 to do it.) If there are any actions that need to take place,
2617 including the emission of debugging information for the function,
2618 this is where they should go. This function may be called by
2619 language-dependent code for front-ends that do not even generate
2620 RTL for functions that don't need to be put out. */
2622 void
2623 note_deferral_of_defined_inline_function (decl)
2624 tree decl ATTRIBUTE_UNUSED;
2626 #ifdef DWARF_DEBUGGING_INFO
2627 /* Generate the DWARF info for the "abstract" instance of a function
2628 which we may later generate inlined and/or out-of-line instances
2629 of. */
2630 if (write_symbols == DWARF_DEBUG
2631 && (DECL_INLINE (decl) || DECL_ABSTRACT (decl))
2632 && ! DECL_ABSTRACT_ORIGIN (decl))
2634 /* The front-end may not have set CURRENT_FUNCTION_DECL, but the
2635 DWARF code expects it to be set in this case. Intuitively,
2636 DECL is the function we just finished defining, so setting
2637 CURRENT_FUNCTION_DECL is sensible. */
2638 tree saved_cfd = current_function_decl;
2639 int was_abstract = DECL_ABSTRACT (decl);
2640 current_function_decl = decl;
2642 /* Let the DWARF code do its work. */
2643 set_decl_abstract_flags (decl, 1);
2644 dwarfout_file_scope_decl (decl, 0);
2645 if (! was_abstract)
2646 set_decl_abstract_flags (decl, 0);
2648 /* Reset CURRENT_FUNCTION_DECL. */
2649 current_function_decl = saved_cfd;
2651 #endif
2654 /* FNDECL is an inline function which is about to be emitted out of line.
2655 Do any preparation, such as emitting abstract debug info for the inline
2656 before it gets mangled by optimization. */
2658 void
2659 note_outlining_of_inline_function (fndecl)
2660 tree fndecl ATTRIBUTE_UNUSED;
2662 #ifdef DWARF2_DEBUGGING_INFO
2663 /* The DWARF 2 backend tries to reduce debugging bloat by not emitting
2664 the abstract description of inline functions until something tries to
2665 reference them. Force it out now, before optimizations mangle the
2666 block tree. */
2667 if (write_symbols == DWARF2_DEBUG)
2668 dwarf2out_abstract_function (fndecl);
2669 #endif
2672 /* This is called from finish_function (within yyparse)
2673 after each top-level definition is parsed.
2674 It is supposed to compile that function or variable
2675 and output the assembler code for it.
2676 After we return, the tree storage is freed. */
2678 void
2679 rest_of_compilation (decl)
2680 tree decl;
2682 register rtx insns;
2683 int tem;
2684 int failure = 0;
2685 int rebuild_label_notes_after_reload;
2686 int register_life_up_to_date;
2688 timevar_push (TV_REST_OF_COMPILATION);
2690 /* Now that we're out of the frontend, we shouldn't have any more
2691 CONCATs anywhere. */
2692 generating_concat_p = 0;
2694 /* When processing delayed functions, prepare_function_start() won't
2695 have been run to re-initialize it. */
2696 cse_not_expected = ! optimize;
2698 /* First, make sure that NOTE_BLOCK is set correctly for each
2699 NOTE_INSN_BLOCK_BEG/NOTE_INSN_BLOCK_END note. */
2700 if (!cfun->x_whole_function_mode_p)
2701 identify_blocks ();
2703 /* Then remove any notes we don't need. That will make iterating
2704 over the instruction sequence faster, and allow the garbage
2705 collector to reclaim the memory used by the notes. */
2706 remove_unnecessary_notes ();
2708 /* In function-at-a-time mode, we do not attempt to keep the BLOCK
2709 tree in sensible shape. So, we just recalculate it here. */
2710 if (cfun->x_whole_function_mode_p)
2711 reorder_blocks ();
2713 init_flow ();
2715 /* If we are reconsidering an inline function
2716 at the end of compilation, skip the stuff for making it inline. */
2718 if (DECL_SAVED_INSNS (decl) == 0)
2720 int inlinable = 0;
2721 tree parent;
2722 const char *lose;
2724 /* If this is nested inside an inlined external function, pretend
2725 it was only declared. Since we cannot inline such functions,
2726 generating code for this one is not only not necessary but will
2727 confuse some debugging output writers. */
2728 for (parent = DECL_CONTEXT (current_function_decl);
2729 parent != NULL_TREE;
2730 parent = get_containing_scope (parent))
2731 if (TREE_CODE (parent) == FUNCTION_DECL
2732 && DECL_INLINE (parent) && DECL_EXTERNAL (parent))
2734 DECL_INITIAL (decl) = 0;
2735 goto exit_rest_of_compilation;
2738 /* If requested, consider whether to make this function inline. */
2739 if ((DECL_INLINE (decl) && !flag_no_inline)
2740 || flag_inline_functions)
2742 timevar_push (TV_INTEGRATION);
2743 lose = function_cannot_inline_p (decl);
2744 timevar_pop (TV_INTEGRATION);
2745 if (lose || ! optimize)
2747 if (warn_inline && DECL_INLINE (decl))
2748 warning_with_decl (decl, lose);
2749 DECL_ABSTRACT_ORIGIN (decl) = 0;
2750 /* Don't really compile an extern inline function.
2751 If we can't make it inline, pretend
2752 it was only declared. */
2753 if (DECL_EXTERNAL (decl))
2755 DECL_INITIAL (decl) = 0;
2756 goto exit_rest_of_compilation;
2759 else
2760 /* ??? Note that this has the effect of making it look
2761 like "inline" was specified for a function if we choose
2762 to inline it. This isn't quite right, but it's
2763 probably not worth the trouble to fix. */
2764 inlinable = DECL_INLINE (decl) = 1;
2767 insns = get_insns ();
2769 /* Dump the rtl code if we are dumping rtl. */
2771 if (open_dump_file (DFI_rtl, decl))
2773 if (DECL_SAVED_INSNS (decl))
2774 fprintf (rtl_dump_file, ";; (integrable)\n\n");
2775 close_dump_file (DFI_rtl, print_rtl, insns);
2778 /* Convert from NOTE_INSN_EH_REGION style notes, and do other
2779 sorts of eh initialization. Delay this until after the
2780 initial rtl dump so that we can see the original nesting. */
2781 convert_from_eh_region_ranges ();
2783 /* If function is inline, and we don't yet know whether to
2784 compile it by itself, defer decision till end of compilation.
2785 finish_compilation will call rest_of_compilation again
2786 for those functions that need to be output. Also defer those
2787 functions that we are supposed to defer. */
2789 if (inlinable
2790 || (DECL_INLINE (decl)
2791 && ((! TREE_PUBLIC (decl) && ! TREE_ADDRESSABLE (decl)
2792 && ! flag_keep_inline_functions)
2793 || DECL_EXTERNAL (decl))))
2794 DECL_DEFER_OUTPUT (decl) = 1;
2796 if (DECL_INLINE (decl))
2797 /* DWARF wants seperate debugging info for abstract and
2798 concrete instances of all inline functions, including those
2799 declared inline but not inlined, and those inlined even
2800 though they weren't declared inline. Conveniently, that's
2801 what DECL_INLINE means at this point. */
2802 note_deferral_of_defined_inline_function (decl);
2804 if (DECL_DEFER_OUTPUT (decl))
2806 /* If -Wreturn-type, we have to do a bit of compilation. We just
2807 want to call jump_optimize to figure out whether or not we can
2808 fall off the end of the function; we do the minimum amount of
2809 work necessary to make that safe. And, we set optimize to zero
2810 to keep jump_optimize from working too hard. */
2811 if (warn_return_type)
2813 int saved_optimize = optimize;
2815 optimize = 0;
2816 find_exception_handler_labels ();
2817 jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
2818 !JUMP_AFTER_REGSCAN);
2819 optimize = saved_optimize;
2822 current_function_nothrow = nothrow_function_p ();
2823 if (current_function_nothrow)
2824 /* Now we know that this can't throw; set the flag for the benefit
2825 of other functions later in this translation unit. */
2826 TREE_NOTHROW (current_function_decl) = 1;
2828 timevar_push (TV_INTEGRATION);
2829 save_for_inline (decl);
2830 timevar_pop (TV_INTEGRATION);
2831 DECL_SAVED_INSNS (decl)->inlinable = inlinable;
2832 goto exit_rest_of_compilation;
2835 /* If specified extern inline but we aren't inlining it, we are
2836 done. This goes for anything that gets here with DECL_EXTERNAL
2837 set, not just things with DECL_INLINE. */
2838 if (DECL_EXTERNAL (decl))
2839 goto exit_rest_of_compilation;
2842 ggc_collect ();
2844 /* Initialize some variables used by the optimizers. */
2845 init_function_for_compilation ();
2847 if (! DECL_DEFER_OUTPUT (decl))
2848 TREE_ASM_WRITTEN (decl) = 1;
2850 /* Now that integrate will no longer see our rtl, we need not
2851 distinguish between the return value of this function and the
2852 return value of called functions. Also, we can remove all SETs
2853 of subregs of hard registers; they are only here because of
2854 integrate.*/
2855 rtx_equal_function_value_matters = 0;
2856 purge_hard_subreg_sets (get_insns ());
2858 /* Don't return yet if -Wreturn-type; we need to do jump_optimize. */
2859 if ((rtl_dump_and_exit || flag_syntax_only) && !warn_return_type)
2860 goto exit_rest_of_compilation;
2862 /* We may have potential sibling or tail recursion sites. Select one
2863 (of possibly multiple) methods of performing the call. */
2864 if (flag_optimize_sibling_calls)
2866 timevar_push (TV_JUMP);
2867 open_dump_file (DFI_sibling, decl);
2869 optimize_sibling_and_tail_recursive_calls ();
2871 close_dump_file (DFI_sibling, print_rtl, get_insns ());
2872 timevar_pop (TV_JUMP);
2875 /* Complete generation of exception handling code. */
2876 find_exception_handler_labels ();
2877 if (doing_eh (0))
2879 timevar_push (TV_JUMP);
2880 open_dump_file (DFI_eh, decl);
2882 finish_eh_generation ();
2884 close_dump_file (DFI_eh, print_rtl, get_insns ());
2885 timevar_pop (TV_JUMP);
2888 #ifdef FINALIZE_PIC
2889 /* If we are doing position-independent code generation, now
2890 is the time to output special prologues and epilogues.
2891 We do not want to do this earlier, because it just clutters
2892 up inline functions with meaningless insns. */
2893 if (flag_pic)
2894 FINALIZE_PIC;
2895 #endif
2897 insns = get_insns ();
2899 /* Copy any shared structure that should not be shared. */
2900 unshare_all_rtl (current_function_decl, insns);
2902 #ifdef SETJMP_VIA_SAVE_AREA
2903 /* This must be performed before virutal register instantiation. */
2904 if (current_function_calls_alloca)
2905 optimize_save_area_alloca (insns);
2906 #endif
2908 /* Instantiate all virtual registers. */
2909 instantiate_virtual_regs (current_function_decl, insns);
2911 open_dump_file (DFI_jump, decl);
2913 /* Always do one jump optimization pass to ensure that JUMP_LABEL fields
2914 are initialized and to compute whether control can drop off the end
2915 of the function. */
2917 timevar_push (TV_JUMP);
2918 /* Turn NOTE_INSN_EXPECTED_VALUE into REG_BR_PROB. Do this
2919 before jump optimization switches branch directions. */
2920 expected_value_to_br_prob ();
2922 reg_scan (insns, max_reg_num (), 0);
2923 jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
2924 JUMP_AFTER_REGSCAN);
2926 timevar_pop (TV_JUMP);
2928 /* Now is when we stop if -fsyntax-only and -Wreturn-type. */
2929 if (rtl_dump_and_exit || flag_syntax_only || DECL_DEFER_OUTPUT (decl))
2931 close_dump_file (DFI_jump, print_rtl, insns);
2932 goto exit_rest_of_compilation;
2935 timevar_push (TV_JUMP);
2937 if (optimize > 0)
2939 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2940 cleanup_cfg ();
2942 /* ??? Run if-conversion before delete_null_pointer_checks,
2943 since the later does not preserve the CFG. This should
2944 be changed -- no since converting if's that are going to
2945 be deleted. */
2946 timevar_push (TV_IFCVT);
2947 if_convert (0);
2948 timevar_pop (TV_IFCVT);
2950 /* Try to identify useless null pointer tests and delete them. */
2951 if (flag_delete_null_pointer_checks)
2952 delete_null_pointer_checks (insns);
2955 /* Jump optimization, and the removal of NULL pointer checks, may
2956 have reduced the number of instructions substantially. CSE, and
2957 future passes, allocate arrays whose dimensions involve the
2958 maximum instruction UID, so if we can reduce the maximum UID
2959 we'll save big on memory. */
2960 renumber_insns (rtl_dump_file);
2961 timevar_pop (TV_JUMP);
2963 close_dump_file (DFI_jump, print_rtl, insns);
2965 ggc_collect ();
2967 /* Perform common subexpression elimination.
2968 Nonzero value from `cse_main' means that jumps were simplified
2969 and some code may now be unreachable, so do
2970 jump optimization again. */
2972 if (optimize > 0)
2974 open_dump_file (DFI_cse, decl);
2975 timevar_push (TV_CSE);
2977 reg_scan (insns, max_reg_num (), 1);
2979 if (flag_thread_jumps)
2981 timevar_push (TV_JUMP);
2982 thread_jumps (insns, max_reg_num (), 1);
2983 timevar_pop (TV_JUMP);
2986 tem = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2988 /* If we are not running more CSE passes, then we are no longer
2989 expecting CSE to be run. But always rerun it in a cheap mode. */
2990 cse_not_expected = !flag_rerun_cse_after_loop && !flag_gcse;
2992 if (tem || optimize > 1)
2994 timevar_push (TV_JUMP);
2995 jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
2996 !JUMP_AFTER_REGSCAN);
2997 timevar_pop (TV_JUMP);
3000 /* Run this after jump optmizations remove all the unreachable code
3001 so that unreachable code will not keep values live. */
3002 delete_trivially_dead_insns (insns, max_reg_num ());
3004 /* Try to identify useless null pointer tests and delete them. */
3005 if (flag_delete_null_pointer_checks)
3007 timevar_push (TV_JUMP);
3008 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3010 cleanup_cfg ();
3012 delete_null_pointer_checks (insns);
3013 timevar_pop (TV_JUMP);
3016 /* The second pass of jump optimization is likely to have
3017 removed a bunch more instructions. */
3018 renumber_insns (rtl_dump_file);
3020 timevar_pop (TV_CSE);
3021 close_dump_file (DFI_cse, print_rtl, insns);
3024 open_dump_file (DFI_addressof, decl);
3026 purge_addressof (insns);
3027 reg_scan (insns, max_reg_num (), 1);
3029 close_dump_file (DFI_addressof, print_rtl, insns);
3031 ggc_collect ();
3033 if (optimize > 0 && flag_ssa)
3035 /* Convert to SSA form. */
3037 timevar_push (TV_TO_SSA);
3038 open_dump_file (DFI_ssa, decl);
3040 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3041 cleanup_cfg ();
3042 convert_to_ssa ();
3044 close_dump_file (DFI_ssa, print_rtl_with_bb, insns);
3045 timevar_pop (TV_TO_SSA);
3047 /* The SSA implementation uses basic block numbers in its phi
3048 nodes. Thus, changing the control-flow graph or the basic
3049 blocks, e.g., calling find_basic_blocks () or cleanup_cfg (),
3050 may cause problems. */
3052 if (flag_dce)
3054 /* Remove dead code. */
3056 timevar_push (TV_DEAD_CODE_ELIM);
3057 open_dump_file (DFI_dce, decl);
3059 insns = get_insns ();
3060 eliminate_dead_code();
3062 close_dump_file (DFI_dce, print_rtl_with_bb, insns);
3063 timevar_pop (TV_DEAD_CODE_ELIM);
3066 /* Convert from SSA form. */
3068 timevar_push (TV_FROM_SSA);
3069 open_dump_file (DFI_ussa, decl);
3071 convert_from_ssa ();
3072 /* New registers have been created. Rescan their usage. */
3073 reg_scan (insns, max_reg_num (), 1);
3074 /* Life analysis used in SSA adds log_links but these
3075 shouldn't be there until the flow stage, so clear
3076 them away. */
3077 clear_log_links (insns);
3079 close_dump_file (DFI_ussa, print_rtl_with_bb, insns);
3080 timevar_pop (TV_FROM_SSA);
3082 ggc_collect ();
3085 /* Perform global cse. */
3087 if (optimize > 0 && flag_gcse)
3089 int save_csb, save_cfj;
3090 int tem2 = 0;
3092 timevar_push (TV_GCSE);
3093 open_dump_file (DFI_gcse, decl);
3095 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3096 cleanup_cfg ();
3097 tem = gcse_main (insns, rtl_dump_file);
3099 save_csb = flag_cse_skip_blocks;
3100 save_cfj = flag_cse_follow_jumps;
3101 flag_cse_skip_blocks = flag_cse_follow_jumps = 0;
3103 /* If -fexpensive-optimizations, re-run CSE to clean up things done
3104 by gcse. */
3105 if (flag_expensive_optimizations)
3107 timevar_push (TV_CSE);
3108 reg_scan (insns, max_reg_num (), 1);
3109 tem2 = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
3110 timevar_pop (TV_CSE);
3111 cse_not_expected = !flag_rerun_cse_after_loop;
3114 /* If gcse or cse altered any jumps, rerun jump optimizations to clean
3115 things up. Then possibly re-run CSE again. */
3116 while (tem || tem2)
3118 tem = tem2 = 0;
3119 timevar_push (TV_JUMP);
3120 jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
3121 !JUMP_AFTER_REGSCAN);
3122 timevar_pop (TV_JUMP);
3124 if (flag_expensive_optimizations)
3126 timevar_push (TV_CSE);
3127 reg_scan (insns, max_reg_num (), 1);
3128 tem2 = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
3129 timevar_pop (TV_CSE);
3133 close_dump_file (DFI_gcse, print_rtl, insns);
3134 timevar_pop (TV_GCSE);
3136 ggc_collect ();
3137 flag_cse_skip_blocks = save_csb;
3138 flag_cse_follow_jumps = save_cfj;
3141 /* Move constant computations out of loops. */
3143 if (optimize > 0)
3145 timevar_push (TV_LOOP);
3146 open_dump_file (DFI_loop, decl);
3148 if (flag_rerun_loop_opt)
3150 /* We only want to perform unrolling once. */
3152 loop_optimize (insns, rtl_dump_file, 0);
3154 /* The first call to loop_optimize makes some instructions
3155 trivially dead. We delete those instructions now in the
3156 hope that doing so will make the heuristics in loop work
3157 better and possibly speed up compilation. */
3158 delete_trivially_dead_insns (insns, max_reg_num ());
3160 /* The regscan pass is currently necessary as the alias
3161 analysis code depends on this information. */
3162 reg_scan (insns, max_reg_num (), 1);
3164 loop_optimize (insns, rtl_dump_file,
3165 (flag_unroll_loops ? LOOP_UNROLL : 0) | LOOP_BCT);
3167 close_dump_file (DFI_loop, print_rtl, insns);
3168 timevar_pop (TV_LOOP);
3170 ggc_collect ();
3173 if (optimize > 0)
3175 timevar_push (TV_CSE2);
3176 open_dump_file (DFI_cse2, decl);
3178 if (flag_rerun_cse_after_loop)
3180 /* Running another jump optimization pass before the second
3181 cse pass sometimes simplifies the RTL enough to allow
3182 the second CSE pass to do a better job. Jump_optimize can change
3183 max_reg_num so we must rerun reg_scan afterwards.
3184 ??? Rework to not call reg_scan so often. */
3185 timevar_push (TV_JUMP);
3187 /* The previous call to loop_optimize makes some instructions
3188 trivially dead. We delete those instructions now in the
3189 hope that doing so will make the heuristics in jump work
3190 better and possibly speed up compilation. */
3191 delete_trivially_dead_insns (insns, max_reg_num ());
3193 reg_scan (insns, max_reg_num (), 0);
3194 jump_optimize (insns, !JUMP_CROSS_JUMP,
3195 !JUMP_NOOP_MOVES, JUMP_AFTER_REGSCAN);
3197 timevar_push (TV_IFCVT);
3199 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3200 cleanup_cfg ();
3201 if_convert (0);
3203 timevar_pop(TV_IFCVT);
3205 timevar_pop (TV_JUMP);
3207 reg_scan (insns, max_reg_num (), 0);
3208 tem = cse_main (insns, max_reg_num (), 1, rtl_dump_file);
3210 if (tem)
3212 timevar_push (TV_JUMP);
3213 jump_optimize (insns, !JUMP_CROSS_JUMP,
3214 !JUMP_NOOP_MOVES, !JUMP_AFTER_REGSCAN);
3215 timevar_pop (TV_JUMP);
3219 if (flag_thread_jumps)
3221 /* This pass of jump threading straightens out code
3222 that was kinked by loop optimization. */
3223 timevar_push (TV_JUMP);
3224 reg_scan (insns, max_reg_num (), 0);
3225 thread_jumps (insns, max_reg_num (), 0);
3226 timevar_pop (TV_JUMP);
3229 close_dump_file (DFI_cse2, print_rtl, insns);
3230 timevar_pop (TV_CSE2);
3232 ggc_collect ();
3235 cse_not_expected = 1;
3237 regclass_init ();
3239 /* Do control and data flow analysis; wrote some of the results to
3240 the dump file. */
3242 timevar_push (TV_FLOW);
3243 open_dump_file (DFI_cfg, decl);
3245 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3246 cleanup_cfg ();
3247 check_function_return_warnings ();
3249 close_dump_file (DFI_cfg, print_rtl_with_bb, insns);
3251 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
3253 timevar_push (TV_BRANCH_PROB);
3254 open_dump_file (DFI_bp, decl);
3256 branch_prob ();
3258 close_dump_file (DFI_bp, print_rtl_with_bb, insns);
3259 timevar_pop (TV_BRANCH_PROB);
3262 open_dump_file (DFI_life, decl);
3263 if (optimize)
3265 struct loops loops;
3267 /* Discover and record the loop depth at the head of each basic
3268 block. The loop infrastructure does the real job for us. */
3269 flow_loops_find (&loops, LOOP_TREE);
3271 /* Estimate using heuristics if no profiling info is available. */
3272 if (flag_guess_branch_prob)
3273 estimate_probability (&loops);
3275 if (rtl_dump_file)
3276 flow_loops_dump (&loops, rtl_dump_file, NULL, 0);
3278 flow_loops_free (&loops);
3280 life_analysis (insns, rtl_dump_file, PROP_FINAL);
3281 mark_constant_function ();
3282 timevar_pop (TV_FLOW);
3284 register_life_up_to_date = 1;
3285 no_new_pseudos = 1;
3287 if (warn_uninitialized || extra_warnings)
3289 uninitialized_vars_warning (DECL_INITIAL (decl));
3290 if (extra_warnings)
3291 setjmp_args_warning ();
3294 close_dump_file (DFI_life, print_rtl_with_bb, insns);
3296 ggc_collect ();
3298 /* If -opt, try combining insns through substitution. */
3300 if (optimize > 0)
3302 int rebuild_jump_labels_after_combine = 0;
3304 timevar_push (TV_COMBINE);
3305 open_dump_file (DFI_combine, decl);
3307 rebuild_jump_labels_after_combine
3308 = combine_instructions (insns, max_reg_num ());
3310 /* Combining insns may have turned an indirect jump into a
3311 direct jump. Rebuid the JUMP_LABEL fields of jumping
3312 instructions. */
3313 if (rebuild_jump_labels_after_combine)
3315 timevar_push (TV_JUMP);
3316 rebuild_jump_labels (insns);
3317 timevar_pop (TV_JUMP);
3319 timevar_push (TV_FLOW);
3320 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3321 cleanup_cfg ();
3323 /* Blimey. We've got to have the CFG up to date for the call to
3324 if_convert below. However, the random deletion of blocks
3325 without updating life info can wind up with Wierd Stuff in
3326 global_live_at_end. We then run sched1, which updates things
3327 properly, discovers the wierdness and aborts. */
3328 update_life_info (NULL, UPDATE_LIFE_GLOBAL_RM_NOTES,
3329 PROP_DEATH_NOTES | PROP_KILL_DEAD_CODE
3330 | PROP_SCAN_DEAD_CODE);
3332 timevar_pop (TV_FLOW);
3335 close_dump_file (DFI_combine, print_rtl_with_bb, insns);
3336 timevar_pop (TV_COMBINE);
3338 ggc_collect ();
3341 /* Rerun if-conversion, as combine may have simplified things enough to
3342 now meet sequence length restrictions. */
3343 if (optimize > 0)
3345 timevar_push (TV_IFCVT);
3346 open_dump_file (DFI_ce, decl);
3348 no_new_pseudos = 0;
3349 if_convert (1);
3350 no_new_pseudos = 1;
3352 close_dump_file (DFI_ce, print_rtl_with_bb, insns);
3353 timevar_pop (TV_IFCVT);
3356 /* Register allocation pre-pass, to reduce number of moves
3357 necessary for two-address machines. */
3358 if (optimize > 0 && (flag_regmove || flag_expensive_optimizations))
3360 timevar_push (TV_REGMOVE);
3361 open_dump_file (DFI_regmove, decl);
3363 regmove_optimize (insns, max_reg_num (), rtl_dump_file);
3365 close_dump_file (DFI_regmove, print_rtl_with_bb, insns);
3366 timevar_pop (TV_REGMOVE);
3368 ggc_collect ();
3371 /* Any of the several passes since flow1 will have munged register
3372 lifetime data a bit. */
3373 if (optimize > 0)
3374 register_life_up_to_date = 0;
3376 #ifdef OPTIMIZE_MODE_SWITCHING
3377 timevar_push (TV_GCSE);
3379 if (optimize_mode_switching (NULL_PTR))
3381 /* We did work, and so had to regenerate global life information.
3382 Take advantage of this and don't re-recompute register life
3383 information below. */
3384 register_life_up_to_date = 1;
3387 timevar_pop (TV_GCSE);
3388 #endif
3390 #ifdef INSN_SCHEDULING
3392 /* Print function header into sched dump now
3393 because doing the sched analysis makes some of the dump. */
3394 if (optimize > 0 && flag_schedule_insns)
3396 timevar_push (TV_SCHED);
3397 open_dump_file (DFI_sched, decl);
3399 /* Do control and data sched analysis,
3400 and write some of the results to dump file. */
3402 schedule_insns (rtl_dump_file);
3404 close_dump_file (DFI_sched, print_rtl_with_bb, insns);
3405 timevar_pop (TV_SCHED);
3407 ggc_collect ();
3409 /* Register lifetime information was updated as part of verifying
3410 the schedule. */
3411 register_life_up_to_date = 1;
3413 #endif
3415 /* Determine if the current function is a leaf before running reload
3416 since this can impact optimizations done by the prologue and
3417 epilogue thus changing register elimination offsets. */
3418 current_function_is_leaf = leaf_function_p ();
3420 timevar_push (TV_LOCAL_ALLOC);
3421 open_dump_file (DFI_lreg, decl);
3423 /* Allocate pseudo-regs that are used only within 1 basic block.
3425 RUN_JUMP_AFTER_RELOAD records whether or not we need to rerun the
3426 jump optimizer after register allocation and reloading are finished. */
3428 if (! register_life_up_to_date)
3429 recompute_reg_usage (insns, ! optimize_size);
3430 regclass (insns, max_reg_num (), rtl_dump_file);
3431 rebuild_label_notes_after_reload = local_alloc ();
3433 timevar_pop (TV_LOCAL_ALLOC);
3435 if (dump_file[DFI_lreg].enabled)
3437 timevar_push (TV_DUMP);
3439 dump_flow_info (rtl_dump_file);
3440 dump_local_alloc (rtl_dump_file);
3442 close_dump_file (DFI_lreg, print_rtl_with_bb, insns);
3443 timevar_pop (TV_DUMP);
3446 ggc_collect ();
3448 timevar_push (TV_GLOBAL_ALLOC);
3449 open_dump_file (DFI_greg, decl);
3451 /* If optimizing, allocate remaining pseudo-regs. Do the reload
3452 pass fixing up any insns that are invalid. */
3454 if (optimize)
3455 failure = global_alloc (rtl_dump_file);
3456 else
3458 build_insn_chain (insns);
3459 failure = reload (insns, 0);
3462 timevar_pop (TV_GLOBAL_ALLOC);
3464 if (dump_file[DFI_greg].enabled)
3466 timevar_push (TV_DUMP);
3468 dump_global_regs (rtl_dump_file);
3470 close_dump_file (DFI_greg, print_rtl_with_bb, insns);
3471 timevar_pop (TV_DUMP);
3474 if (failure)
3475 goto exit_rest_of_compilation;
3477 ggc_collect ();
3479 open_dump_file (DFI_postreload, decl);
3481 /* Do a very simple CSE pass over just the hard registers. */
3482 if (optimize > 0)
3484 timevar_push (TV_RELOAD_CSE_REGS);
3485 reload_cse_regs (insns);
3486 timevar_pop (TV_RELOAD_CSE_REGS);
3489 /* If optimizing, then go ahead and split insns now since we are about
3490 to recompute flow information anyway. Since we can't split insns after
3491 reload, do the splitting unconditionally here to avoid gcc from losing
3492 REG_DEAD notes. */
3493 #ifdef STACK_REGS
3494 if (1)
3495 #else
3496 if (optimize > 0)
3497 #endif
3499 int old_labelnum = max_label_num ();
3501 split_all_insns (0);
3502 rebuild_label_notes_after_reload |= old_labelnum != max_label_num ();
3505 /* Register allocation and reloading may have turned an indirect jump into
3506 a direct jump. If so, we must rebuild the JUMP_LABEL fields of
3507 jumping instructions. */
3508 if (rebuild_label_notes_after_reload)
3510 timevar_push (TV_JUMP);
3512 rebuild_jump_labels (insns);
3514 timevar_pop (TV_JUMP);
3517 close_dump_file (DFI_postreload, print_rtl_with_bb, insns);
3519 /* Re-create the death notes which were deleted during reload. */
3520 timevar_push (TV_FLOW2);
3521 open_dump_file (DFI_flow2, decl);
3523 jump_optimize (insns, !JUMP_CROSS_JUMP,
3524 JUMP_NOOP_MOVES, !JUMP_AFTER_REGSCAN);
3525 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3527 /* On some machines, the prologue and epilogue code, or parts thereof,
3528 can be represented as RTL. Doing so lets us schedule insns between
3529 it and the rest of the code and also allows delayed branch
3530 scheduling to operate in the epilogue. */
3531 thread_prologue_and_epilogue_insns (insns);
3533 if (optimize)
3535 cleanup_cfg ();
3536 life_analysis (insns, rtl_dump_file, PROP_FINAL);
3538 /* This is kind of a heuristic. We need to run combine_stack_adjustments
3539 even for machines with possibly nonzero RETURN_POPS_ARGS
3540 and ACCUMULATE_OUTGOING_ARGS. We expect that only ports having
3541 push instructions will have popping returns. */
3542 #ifndef PUSH_ROUNDING
3543 if (!ACCUMULATE_OUTGOING_ARGS)
3544 #endif
3545 combine_stack_adjustments ();
3547 ggc_collect ();
3550 flow2_completed = 1;
3552 close_dump_file (DFI_flow2, print_rtl_with_bb, insns);
3553 timevar_pop (TV_FLOW2);
3555 #ifdef HAVE_peephole2
3556 if (optimize > 0 && flag_peephole2)
3558 timevar_push (TV_PEEPHOLE2);
3559 open_dump_file (DFI_peephole2, decl);
3561 peephole2_optimize (rtl_dump_file);
3563 close_dump_file (DFI_peephole2, print_rtl_with_bb, insns);
3564 timevar_pop (TV_PEEPHOLE2);
3566 #endif
3568 if (optimize > 0 && flag_rename_registers)
3570 timevar_push (TV_RENAME_REGISTERS);
3571 open_dump_file (DFI_rnreg, decl);
3573 regrename_optimize ();
3575 close_dump_file (DFI_rnreg, print_rtl_with_bb, insns);
3576 timevar_pop (TV_RENAME_REGISTERS);
3579 if (optimize > 0)
3581 timevar_push (TV_IFCVT2);
3582 open_dump_file (DFI_ce2, decl);
3584 if_convert (1);
3586 close_dump_file (DFI_ce2, print_rtl_with_bb, insns);
3587 timevar_pop (TV_IFCVT2);
3590 #ifdef INSN_SCHEDULING
3591 if (optimize > 0 && flag_schedule_insns_after_reload)
3593 timevar_push (TV_SCHED2);
3594 open_dump_file (DFI_sched2, decl);
3596 /* Do control and data sched analysis again,
3597 and write some more of the results to dump file. */
3599 schedule_insns (rtl_dump_file);
3601 close_dump_file (DFI_sched2, print_rtl_with_bb, insns);
3602 timevar_pop (TV_SCHED2);
3604 ggc_collect ();
3606 #endif
3608 #ifdef LEAF_REGISTERS
3609 current_function_uses_only_leaf_regs
3610 = optimize > 0 && only_leaf_regs_used () && leaf_function_p ();
3611 #endif
3613 if (optimize > 0 && flag_reorder_blocks)
3615 timevar_push (TV_REORDER_BLOCKS);
3616 open_dump_file (DFI_bbro, decl);
3618 reorder_basic_blocks ();
3620 close_dump_file (DFI_bbro, print_rtl_with_bb, insns);
3621 timevar_pop (TV_REORDER_BLOCKS);
3624 /* One more attempt to remove jumps to .+1 left by dead-store elimination.
3625 Also do cross-jumping this time and delete no-op move insns. */
3627 if (optimize > 0)
3629 timevar_push (TV_JUMP);
3630 open_dump_file (DFI_jump2, decl);
3632 jump_optimize (insns, JUMP_CROSS_JUMP, JUMP_NOOP_MOVES,
3633 !JUMP_AFTER_REGSCAN);
3635 /* CFG no longer kept up to date. */
3637 close_dump_file (DFI_jump2, print_rtl, insns);
3638 timevar_pop (TV_JUMP);
3641 /* If a machine dependent reorganization is needed, call it. */
3642 #ifdef MACHINE_DEPENDENT_REORG
3643 open_dump_file (DFI_mach, decl);
3645 MACHINE_DEPENDENT_REORG (insns);
3647 close_dump_file (DFI_mach, print_rtl, insns);
3649 ggc_collect ();
3650 #endif
3652 /* If a scheduling pass for delayed branches is to be done,
3653 call the scheduling code. */
3655 #ifdef DELAY_SLOTS
3656 if (optimize > 0 && flag_delayed_branch)
3658 timevar_push (TV_DBR_SCHED);
3659 open_dump_file (DFI_dbr, decl);
3661 dbr_schedule (insns, rtl_dump_file);
3663 close_dump_file (DFI_dbr, print_rtl, insns);
3664 timevar_pop (TV_DBR_SCHED);
3666 ggc_collect ();
3668 #endif
3670 #ifndef STACK_REGS
3671 /* ??? Do this before shorten branches so that we aren't creating
3672 insns too late and fail sanity checks in final. */
3673 convert_to_eh_region_ranges ();
3674 #endif
3676 /* Shorten branches.
3678 Note this must run before reg-stack because of death note (ab)use
3679 in the ia32 backend. */
3680 timevar_push (TV_SHORTEN_BRANCH);
3681 shorten_branches (get_insns ());
3682 timevar_pop (TV_SHORTEN_BRANCH);
3684 #ifdef STACK_REGS
3685 timevar_push (TV_REG_STACK);
3686 open_dump_file (DFI_stack, decl);
3688 reg_to_stack (insns, rtl_dump_file);
3690 close_dump_file (DFI_stack, print_rtl, insns);
3691 timevar_pop (TV_REG_STACK);
3693 ggc_collect ();
3695 convert_to_eh_region_ranges ();
3696 #endif
3698 current_function_nothrow = nothrow_function_p ();
3699 if (current_function_nothrow)
3700 /* Now we know that this can't throw; set the flag for the benefit
3701 of other functions later in this translation unit. */
3702 TREE_NOTHROW (current_function_decl) = 1;
3704 /* Now turn the rtl into assembler code. */
3706 timevar_push (TV_FINAL);
3708 rtx x;
3709 const char *fnname;
3711 /* Get the function's name, as described by its RTL. This may be
3712 different from the DECL_NAME name used in the source file. */
3714 x = DECL_RTL (decl);
3715 if (GET_CODE (x) != MEM)
3716 abort ();
3717 x = XEXP (x, 0);
3718 if (GET_CODE (x) != SYMBOL_REF)
3719 abort ();
3720 fnname = XSTR (x, 0);
3722 assemble_start_function (decl, fnname);
3723 final_start_function (insns, asm_out_file, optimize);
3724 final (insns, asm_out_file, optimize, 0);
3725 final_end_function (insns, asm_out_file, optimize);
3726 assemble_end_function (decl, fnname);
3728 output_function_exception_table ();
3730 if (! quiet_flag)
3731 fflush (asm_out_file);
3733 /* Release all memory allocated by flow. */
3734 free_basic_block_vars (0);
3736 /* Release all memory held by regsets now. */
3737 regset_release_memory ();
3739 timevar_pop (TV_FINAL);
3741 ggc_collect ();
3743 /* Write DBX symbols if requested. */
3745 /* Note that for those inline functions where we don't initially
3746 know for certain that we will be generating an out-of-line copy,
3747 the first invocation of this routine (rest_of_compilation) will
3748 skip over this code by doing a `goto exit_rest_of_compilation;'.
3749 Later on, finish_compilation will call rest_of_compilation again
3750 for those inline functions that need to have out-of-line copies
3751 generated. During that call, we *will* be routed past here. */
3753 timevar_push (TV_SYMOUT);
3754 #ifdef DBX_DEBUGGING_INFO
3755 if (write_symbols == DBX_DEBUG)
3756 dbxout_function (decl);
3757 #endif
3759 #ifdef DWARF_DEBUGGING_INFO
3760 if (write_symbols == DWARF_DEBUG)
3761 dwarfout_file_scope_decl (decl, 0);
3762 #endif
3764 #ifdef DWARF2_DEBUGGING_INFO
3765 if (write_symbols == DWARF2_DEBUG)
3766 dwarf2out_decl (decl);
3767 #endif
3768 timevar_pop (TV_SYMOUT);
3770 exit_rest_of_compilation:
3772 /* In case the function was not output,
3773 don't leave any temporary anonymous types
3774 queued up for sdb output. */
3775 #ifdef SDB_DEBUGGING_INFO
3776 if (write_symbols == SDB_DEBUG)
3777 sdbout_types (NULL_TREE);
3778 #endif
3780 reload_completed = 0;
3781 flow2_completed = 0;
3782 no_new_pseudos = 0;
3784 timevar_push (TV_FINAL);
3786 /* Clear out the insn_length contents now that they are no
3787 longer valid. */
3788 init_insn_lengths ();
3790 /* Clear out the real_constant_chain before some of the rtx's
3791 it runs through become garbage. */
3792 clear_const_double_mem ();
3794 /* Show no temporary slots allocated. */
3795 init_temp_slots ();
3797 free_basic_block_vars (0);
3799 timevar_pop (TV_FINAL);
3801 /* Make sure volatile mem refs aren't considered valid operands for
3802 arithmetic insns. We must call this here if this is a nested inline
3803 function, since the above code leaves us in the init_recog state
3804 (from final.c), and the function context push/pop code does not
3805 save/restore volatile_ok.
3807 ??? Maybe it isn't necessary for expand_start_function to call this
3808 anymore if we do it here? */
3810 init_recog_no_volatile ();
3812 /* We're done with this function. Free up memory if we can. */
3813 free_after_parsing (cfun);
3814 if (! DECL_DEFER_OUTPUT (decl))
3815 free_after_compilation (cfun);
3816 cfun = 0;
3818 ggc_collect ();
3820 timevar_pop (TV_REST_OF_COMPILATION);
3823 static void
3824 display_help ()
3826 int undoc;
3827 unsigned long i;
3828 const char *lang;
3830 printf (_(" -ffixed-<register> Mark <register> as being unavailable to the compiler\n"));
3831 printf (_(" -fcall-used-<register> Mark <register> as being corrupted by function calls\n"));
3832 printf (_(" -fcall-saved-<register> Mark <register> as being preserved across functions\n"));
3833 printf (_(" -finline-limit=<number> Limits the size of inlined functions to <number>\n"));
3834 printf (_(" -fmessage-length=<number> Limits diagnostics messages lengths to <number> characters per line. 0 suppresses line-wrapping\n"));
3835 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"));
3837 for (i = ARRAY_SIZE (f_options); i--;)
3839 const char *description = f_options[i].description;
3841 if (description != NULL && * description != 0)
3842 printf (" -f%-21s %s\n",
3843 f_options[i].string, description);
3846 printf (_(" -O[number] Set optimisation level to [number]\n"));
3847 printf (_(" -Os Optimise for space rather than speed\n"));
3848 printf (_(" --param <name>=<value> Set constant controlling optimization\n"));
3849 printf (_(" -pedantic Issue warnings needed by strict compliance to ISO C\n"));
3850 printf (_(" -pedantic-errors Like -pedantic except that errors are produced\n"));
3851 printf (_(" -w Suppress warnings\n"));
3852 printf (_(" -W Enable extra warnings\n"));
3854 for (i = ARRAY_SIZE (W_options); i--;)
3856 const char *description = W_options[i].description;
3858 if (description != NULL && * description != 0)
3859 printf (" -W%-21s %s\n",
3860 W_options[i].string, description);
3863 printf (_(" -Wunused Enable unused warnings\n"));
3864 printf (_(" -Wid-clash-<num> Warn if 2 identifiers have the same first <num> chars\n"));
3865 printf (_(" -Wlarger-than-<number> Warn if an object is larger than <number> bytes\n"));
3866 printf (_(" -p Enable function profiling\n"));
3867 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER)
3868 printf (_(" -a Enable block profiling \n"));
3869 #endif
3870 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER) || defined FUNCTION_BLOCK_PROFILER_EXIT
3871 printf (_(" -ax Enable jump profiling \n"));
3872 #endif
3873 printf (_(" -o <file> Place output into <file> \n"));
3874 printf (_("\
3875 -G <number> Put global and static data smaller than <number>\n\
3876 bytes into a special section (on some targets)\n"));
3878 for (i = ARRAY_SIZE (debug_args); i--;)
3880 if (debug_args[i].description != NULL)
3881 printf (" -g%-21s %s\n",
3882 debug_args[i].arg, debug_args[i].description);
3885 printf (_(" -aux-info <file> Emit declaration info into <file>.X\n"));
3886 printf (_(" -quiet Do not display functions compiled or elapsed time\n"));
3887 printf (_(" -version Display the compiler's version\n"));
3888 printf (_(" -d[letters] Enable dumps from specific passes of the compiler\n"));
3889 printf (_(" -dumpbase <file> Base name to be used for dumps from specific passes\n"));
3890 #if defined INSN_SCHEDULING
3891 printf (_(" -fsched-verbose=<number> Set the verbosity level of the scheduler\n"));
3892 #endif
3893 printf (_(" --help Display this information\n"));
3895 undoc = 0;
3896 lang = "language";
3898 /* Display descriptions of language specific options.
3899 If there is no description, note that there is an undocumented option.
3900 If the description is empty, do not display anything. (This allows
3901 options to be deliberately undocumented, for whatever reason).
3902 If the option string is missing, then this is a marker, indicating
3903 that the description string is in fact the name of a language, whose
3904 language specific options are to follow. */
3906 if (ARRAY_SIZE (documented_lang_options) > 1)
3908 printf (_("\nLanguage specific options:\n"));
3910 for (i = 0; i < ARRAY_SIZE (documented_lang_options); i++)
3912 const char *description = documented_lang_options[i].description;
3913 const char *option = documented_lang_options[i].option;
3915 if (description == NULL)
3917 undoc = 1;
3919 if (extra_warnings)
3920 printf (_(" %-23.23s [undocumented]\n"), option);
3922 else if (*description == 0)
3923 continue;
3924 else if (option == NULL)
3926 if (undoc)
3927 printf
3928 (_("\nThere are undocumented %s specific options as well.\n"),
3929 lang);
3930 undoc = 0;
3932 printf (_("\n Options for %s:\n"), description);
3934 lang = description;
3936 else
3937 printf (" %-23.23s %s\n", option, description);
3941 if (undoc)
3942 printf (_("\nThere are undocumented %s specific options as well.\n"),
3943 lang);
3945 display_target_options ();
3948 static void
3949 display_target_options ()
3951 int undoc,i;
3953 if (ARRAY_SIZE (target_switches) > 1
3954 #ifdef TARGET_OPTIONS
3955 || ARRAY_SIZE (target_options) > 1
3956 #endif
3959 int doc = 0;
3961 undoc = 0;
3963 printf (_("\nTarget specific options:\n"));
3965 for (i = ARRAY_SIZE (target_switches); i--;)
3967 const char *option = target_switches[i].name;
3968 const char *description = target_switches[i].description;
3970 if (option == NULL || *option == 0)
3971 continue;
3972 else if (description == NULL)
3974 undoc = 1;
3976 if (extra_warnings)
3977 printf (_(" -m%-23.23s [undocumented]\n"), option);
3979 else if (* description != 0)
3980 doc += printf (" -m%-23.23s %s\n", option, description);
3983 #ifdef TARGET_OPTIONS
3984 for (i = ARRAY_SIZE (target_options); i--;)
3986 const char *option = target_options[i].prefix;
3987 const char *description = target_options[i].description;
3989 if (option == NULL || *option == 0)
3990 continue;
3991 else if (description == NULL)
3993 undoc = 1;
3995 if (extra_warnings)
3996 printf (_(" -m%-23.23s [undocumented]\n"), option);
3998 else if (* description != 0)
3999 doc += printf (" -m%-23.23s %s\n", option, description);
4001 #endif
4002 if (undoc)
4004 if (doc)
4005 printf (_("\nThere are undocumented target specific options as well.\n"));
4006 else
4007 printf (_(" They exist, but they are not documented.\n"));
4012 /* Parse a -d... comand line switch. */
4014 static void
4015 decode_d_option (arg)
4016 const char *arg;
4018 int i, c, matched;
4020 while (*arg)
4021 switch (c = *arg++)
4023 case 'a':
4024 for (i = 0; i < (int) DFI_MAX; ++i)
4025 dump_file[i].enabled = 1;
4026 break;
4027 case 'A':
4028 flag_debug_asm = 1;
4029 break;
4030 case 'm':
4031 flag_print_mem = 1;
4032 break;
4033 case 'p':
4034 flag_print_asm_name = 1;
4035 break;
4036 case 'P':
4037 flag_dump_rtl_in_asm = 1;
4038 flag_print_asm_name = 1;
4039 break;
4040 case 'v':
4041 graph_dump_format = vcg;
4042 break;
4043 case 'x':
4044 rtl_dump_and_exit = 1;
4045 break;
4046 case 'y':
4047 set_yydebug (1);
4048 break;
4049 case 'D': /* These are handled by the preprocessor. */
4050 case 'I':
4051 break;
4053 default:
4054 matched = 0;
4055 for (i = 0; i < (int) DFI_MAX; ++i)
4056 if (c == dump_file[i].debug_switch)
4058 dump_file[i].enabled = 1;
4059 matched = 1;
4062 if (! matched)
4063 warning ("unrecognized gcc debugging option: %c", c);
4064 break;
4068 /* Parse a -f... comand line switch. ARG is the value after the -f.
4069 It is safe to access 'ARG - 2' to generate the full switch name.
4070 Return the number of strings consumed. */
4072 static int
4073 decode_f_option (arg)
4074 const char *arg;
4076 int j;
4077 const char *option_value = NULL;
4079 /* Search for the option in the table of binary f options. */
4080 for (j = ARRAY_SIZE (f_options); j--;)
4082 if (!strcmp (arg, f_options[j].string))
4084 *f_options[j].variable = f_options[j].on_value;
4085 return 1;
4088 if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4089 && ! strcmp (arg + 3, f_options[j].string))
4091 *f_options[j].variable = ! f_options[j].on_value;
4092 return 1;
4096 if (!strcmp (arg, "fast-math"))
4097 set_fast_math_flags();
4098 else if (!strcmp (arg, "no-fast-math"))
4099 set_no_fast_math_flags();
4100 else if ((option_value = skip_leading_substring (arg, "inline-limit-"))
4101 || (option_value = skip_leading_substring (arg, "inline-limit=")))
4103 int val =
4104 read_integral_parameter (option_value, arg - 2,
4105 MAX_INLINE_INSNS);
4106 set_param_value ("max-inline-insns", val);
4108 #ifdef INSN_SCHEDULING
4109 else if ((option_value = skip_leading_substring (arg, "sched-verbose=")))
4110 fix_sched_param ("verbose", option_value);
4111 #endif
4112 else if ((option_value = skip_leading_substring (arg, "fixed-")))
4113 fix_register (option_value, 1, 1);
4114 else if ((option_value = skip_leading_substring (arg, "call-used-")))
4115 fix_register (option_value, 0, 1);
4116 else if ((option_value = skip_leading_substring (arg, "call-saved-")))
4117 fix_register (option_value, 0, 0);
4118 else if ((option_value = skip_leading_substring (arg, "align-loops=")))
4119 align_loops = read_integral_parameter (option_value, arg - 2, align_loops);
4120 else if ((option_value = skip_leading_substring (arg, "align-functions=")))
4121 align_functions
4122 = read_integral_parameter (option_value, arg - 2, align_functions);
4123 else if ((option_value = skip_leading_substring (arg, "align-jumps=")))
4124 align_jumps = read_integral_parameter (option_value, arg - 2, align_jumps);
4125 else if ((option_value = skip_leading_substring (arg, "align-labels=")))
4126 align_labels
4127 = read_integral_parameter (option_value, arg - 2, align_labels);
4128 else if ((option_value
4129 = skip_leading_substring (arg, "stack-limit-register=")))
4131 int reg = decode_reg_name (option_value);
4132 if (reg < 0)
4133 error ("unrecognized register name `%s'", option_value);
4134 else
4135 stack_limit_rtx = gen_rtx_REG (Pmode, reg);
4137 else if ((option_value
4138 = skip_leading_substring (arg, "stack-limit-symbol=")))
4140 const char *nm;
4141 nm = ggc_strdup (option_value);
4142 stack_limit_rtx = gen_rtx_SYMBOL_REF (Pmode, nm);
4144 else if ((option_value
4145 = skip_leading_substring (arg, "message-length=")))
4146 diagnostic_message_length_per_line =
4147 read_integral_parameter (option_value, arg - 2,
4148 diagnostic_message_length_per_line);
4149 else if ((option_value
4150 = skip_leading_substring (arg, "diagnostics-show-location=")))
4152 if (!strcmp (option_value, "once"))
4153 set_message_prefixing_rule (DIAGNOSTICS_SHOW_PREFIX_ONCE);
4154 else if (!strcmp (option_value, "every-line"))
4155 set_message_prefixing_rule (DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE);
4156 else
4157 error ("Unrecognized option `%s'", arg - 2);
4159 else if (!strcmp (arg, "no-stack-limit"))
4160 stack_limit_rtx = NULL_RTX;
4161 else if (!strcmp (arg, "preprocessed"))
4162 /* Recognise this switch but do nothing. This prevents warnings
4163 about an unrecognized switch if cpplib has not been linked in. */
4165 else
4166 return 0;
4168 return 1;
4171 /* Parse a -W... comand line switch. ARG is the value after the -W.
4172 It is safe to access 'ARG - 2' to generate the full switch name.
4173 Return the number of strings consumed. */
4175 static int
4176 decode_W_option (arg)
4177 const char *arg;
4179 const char *option_value = NULL;
4180 int j;
4182 /* Search for the option in the table of binary W options. */
4184 for (j = ARRAY_SIZE (W_options); j--;)
4186 if (!strcmp (arg, W_options[j].string))
4188 *W_options[j].variable = W_options[j].on_value;
4189 return 1;
4192 if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4193 && ! strcmp (arg + 3, W_options[j].string))
4195 *W_options[j].variable = ! W_options[j].on_value;
4196 return 1;
4200 if ((option_value = skip_leading_substring (arg, "id-clash-")))
4202 id_clash_len = read_integral_parameter (option_value, arg - 2, -1);
4204 if (id_clash_len != -1)
4205 warn_id_clash = 1;
4207 else if ((option_value = skip_leading_substring (arg, "larger-than-")))
4209 larger_than_size = read_integral_parameter (option_value, arg - 2, -1);
4211 warn_larger_than = larger_than_size != -1;
4213 else if (!strcmp (arg, "unused"))
4215 set_Wunused (1);
4217 else if (!strcmp (arg, "no-unused"))
4219 set_Wunused (0);
4221 else
4222 return 0;
4224 return 1;
4227 /* Parse a -g... comand line switch. ARG is the value after the -g.
4228 It is safe to access 'ARG - 2' to generate the full switch name.
4229 Return the number of strings consumed. */
4231 static int
4232 decode_g_option (arg)
4233 const char *arg;
4235 unsigned level;
4236 /* A lot of code assumes write_symbols == NO_DEBUG if the
4237 debugging level is 0 (thus -gstabs1 -gstabs0 would lose track
4238 of what debugging type has been selected). This records the
4239 selected type. It is an error to specify more than one
4240 debugging type. */
4241 static enum debug_info_type selected_debug_type = NO_DEBUG;
4242 /* Non-zero if debugging format has been explicitly set.
4243 -g and -ggdb don't explicitly set the debugging format so
4244 -gdwarf -g3 is equivalent to -gdwarf3. */
4245 static int type_explicitly_set_p = 0;
4246 /* Indexed by enum debug_info_type. */
4247 static const char *debug_type_names[] =
4249 "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff"
4252 /* The maximum admissible debug level value. */
4253 static const unsigned max_debug_level = 3;
4255 /* Look up ARG in the table. */
4256 for (da = debug_args; da->arg; da++)
4258 const int da_len = strlen (da->arg);
4260 if (da_len == 0 || ! strncmp (arg, da->arg, da_len))
4262 enum debug_info_type type = da->debug_type;
4263 const char *p = arg + da_len;
4265 if (*p && (*p < '0' || *p > '9'))
4266 continue;
4268 /* A debug flag without a level defaults to level 2.
4269 Note we do not want to call read_integral_parameter
4270 for that case since it will call atoi which
4271 will return zero.
4273 ??? We may want to generalize the interface to
4274 read_integral_parameter to better handle this case
4275 if this case shows up often. */
4276 if (*p)
4277 level = read_integral_parameter (p, 0, max_debug_level + 1);
4278 else
4279 level = 2;
4281 if (da_len > 1 && *p && !strncmp (arg, "dwarf", da_len))
4283 error ("use -gdwarf -g%d for DWARF v1, level %d",
4284 level, level);
4285 if (level == 2)
4286 error ("use -gdwarf-2 for DWARF v2");
4289 if (level > max_debug_level)
4291 warning ("\
4292 ignoring option `%s' due to invalid debug level specification",
4293 arg - 2);
4294 level = debug_info_level;
4297 if (type == NO_DEBUG)
4299 type = PREFERRED_DEBUGGING_TYPE;
4301 if (da_len > 1 && strncmp (arg, "gdb", da_len) == 0)
4303 #if defined (DWARF2_DEBUGGING_INFO) && !defined (LINKER_DOES_NOT_WORK_WITH_DWARF2)
4304 type = DWARF2_DEBUG;
4305 #else
4306 #ifdef DBX_DEBUGGING_INFO
4307 type = DBX_DEBUG;
4308 #endif
4309 #endif
4313 if (type == NO_DEBUG)
4314 warning ("`%s': unknown or unsupported -g option", arg - 2);
4316 /* Does it conflict with an already selected type? */
4317 if (type_explicitly_set_p
4318 /* -g/-ggdb don't conflict with anything. */
4319 && da->debug_type != NO_DEBUG
4320 && type != selected_debug_type)
4321 warning ("`%s' ignored, conflicts with `-g%s'",
4322 arg - 2, debug_type_names[(int) selected_debug_type]);
4323 else
4325 /* If the format has already been set, -g/-ggdb
4326 only change the debug level. */
4327 if (type_explicitly_set_p && da->debug_type == NO_DEBUG)
4328 /* Don't change debugging type. */
4330 else
4332 selected_debug_type = type;
4333 type_explicitly_set_p = da->debug_type != NO_DEBUG;
4336 write_symbols = (level == 0
4337 ? NO_DEBUG
4338 : selected_debug_type);
4339 use_gnu_debug_info_extensions = da->use_extensions_p;
4340 debug_info_level = (enum debug_info_level) level;
4343 break;
4347 if (! da->arg)
4348 return 0;
4350 return 1;
4353 /* Decode the first argument in the argv as a language-independent option.
4354 Return the number of strings consumed. */
4356 static unsigned int
4357 independent_decode_option (argc, argv)
4358 int argc;
4359 char **argv;
4361 char *arg = argv[0];
4363 if (arg[0] != '-' || arg[1] == 0)
4365 if (arg[0] == '+')
4366 return 0;
4368 filename = arg;
4370 return 1;
4373 arg++;
4375 if (!strcmp (arg, "-help"))
4377 display_help ();
4378 exit_after_options = 1;
4381 if (!strcmp (arg, "-target-help"))
4383 display_target_options ();
4384 exit_after_options = 1;
4387 if (!strcmp (arg, "-version"))
4389 print_version (stderr, "");
4390 exit_after_options = 1;
4393 /* Handle '--param <name>=<value>'. */
4394 if (strcmp (arg, "-param") == 0)
4396 char *equal;
4398 if (argc == 1)
4400 error ("-param option missing argument");
4401 return 1;
4404 /* Get the '<name>=<value>' parameter. */
4405 arg = argv[1];
4406 /* Look for the `='. */
4407 equal = strchr (arg, '=');
4408 if (!equal)
4409 error ("invalid --param option: %s", arg);
4410 else
4412 int val;
4414 /* Zero out the `=' sign so that we get two separate strings. */
4415 *equal = '\0';
4416 /* Figure out what value is specified. */
4417 val = read_integral_parameter (equal + 1, NULL, INVALID_PARAM_VAL);
4418 if (val != INVALID_PARAM_VAL)
4419 set_param_value (arg, val);
4420 else
4421 error ("invalid parameter value `%s'", equal + 1);
4424 return 2;
4427 if (*arg == 'Y')
4428 arg++;
4430 switch (*arg)
4432 default:
4433 return 0;
4435 case 'O':
4436 /* Already been treated in main (). Do nothing. */
4437 break;
4439 case 'm':
4440 set_target_switch (arg + 1);
4441 break;
4443 case 'f':
4444 return decode_f_option (arg + 1);
4446 case 'g':
4447 return decode_g_option (arg + 1);
4449 case 'd':
4450 if (!strcmp (arg, "dumpbase"))
4452 if (argc == 1)
4453 return 0;
4455 dump_base_name = argv[1];
4456 return 2;
4458 else
4459 decode_d_option (arg + 1);
4460 break;
4462 case 'p':
4463 if (!strcmp (arg, "pedantic"))
4464 pedantic = 1;
4465 else if (!strcmp (arg, "pedantic-errors"))
4466 flag_pedantic_errors = pedantic = 1;
4467 else if (arg[1] == 0)
4468 profile_flag = 1;
4469 else
4470 return 0;
4471 break;
4473 case 'q':
4474 if (!strcmp (arg, "quiet"))
4475 quiet_flag = 1;
4476 else
4477 return 0;
4478 break;
4480 case 'v':
4481 if (!strcmp (arg, "version"))
4482 version_flag = 1;
4483 else
4484 return 0;
4485 break;
4487 case 'w':
4488 if (arg[1] == 0)
4489 inhibit_warnings = 1;
4490 else
4491 return 0;
4492 break;
4494 case 'W':
4495 if (arg[1] == 0)
4497 extra_warnings = 1;
4498 /* We save the value of warn_uninitialized, since if they put
4499 -Wuninitialized on the command line, we need to generate a
4500 warning about not using it without also specifying -O. */
4501 if (warn_uninitialized != 1)
4502 warn_uninitialized = 2;
4504 else
4505 return decode_W_option (arg + 1);
4506 break;
4508 case 'a':
4509 if (arg[1] == 0)
4511 #if !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4512 warning ("`-a' option (basic block profile) not supported");
4513 #else
4514 profile_block_flag = (profile_block_flag < 2) ? 1 : 3;
4515 #endif
4517 else if (!strcmp (arg, "ax"))
4519 #if !defined (FUNCTION_BLOCK_PROFILER_EXIT) || !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4520 warning ("`-ax' option (jump profiling) not supported");
4521 #else
4522 profile_block_flag = (!profile_block_flag
4523 || profile_block_flag == 2) ? 2 : 3;
4524 #endif
4526 else if (!strncmp (arg, "aux-info", 8))
4528 flag_gen_aux_info = 1;
4529 if (arg[8] == '\0')
4531 if (argc == 1)
4532 return 0;
4534 aux_info_file_name = argv[1];
4535 return 2;
4537 else
4538 aux_info_file_name = arg + 8;
4540 else
4541 return 0;
4542 break;
4544 case 'o':
4545 if (arg[1] == 0)
4547 if (argc == 1)
4548 return 0;
4550 asm_file_name = argv[1];
4551 return 2;
4553 return 0;
4555 case 'G':
4557 int g_switch_val;
4558 int return_val;
4560 if (arg[1] == 0)
4562 if (argc == 1)
4563 return 0;
4565 g_switch_val = read_integral_parameter (argv[1], 0, -1);
4566 return_val = 2;
4568 else
4570 g_switch_val = read_integral_parameter (arg + 1, 0, -1);
4571 return_val = 1;
4574 if (g_switch_val == -1)
4575 return_val = 0;
4576 else
4578 g_switch_set = TRUE;
4579 g_switch_value = g_switch_val;
4582 return return_val;
4586 return 1;
4589 /* Entry point of cc1, cc1plus, jc1, f771, etc.
4590 Decode command args, then call compile_file.
4591 Exit code is FATAL_EXIT_CODE if can't open files or if there were
4592 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
4594 It is not safe to call this function more than once. */
4597 toplev_main (argc, argv)
4598 int argc;
4599 char **argv;
4601 register int i;
4602 char *p;
4604 /* save in case md file wants to emit args as a comment. */
4605 save_argc = argc;
4606 save_argv = argv;
4608 p = argv[0] + strlen (argv[0]);
4609 while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
4610 --p;
4611 progname = p;
4613 xmalloc_set_program_name (progname);
4615 /* LC_CTYPE determines the character set used by the terminal so it has be set
4616 to output messages correctly. */
4618 #ifdef HAVE_LC_MESSAGES
4619 setlocale (LC_CTYPE, "");
4620 setlocale (LC_MESSAGES, "");
4621 #else
4622 setlocale (LC_ALL, "");
4623 #endif
4625 (void) bindtextdomain (PACKAGE, localedir);
4626 (void) textdomain (PACKAGE);
4628 /* Install handler for SIGFPE, which may be received while we do
4629 compile-time floating point arithmetic. */
4630 signal (SIGFPE, float_signal);
4632 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
4633 #ifdef SIGSEGV
4634 signal (SIGSEGV, crash_signal);
4635 #endif
4636 #ifdef SIGILL
4637 signal (SIGILL, crash_signal);
4638 #endif
4639 #ifdef SIGBUS
4640 signal (SIGBUS, crash_signal);
4641 #endif
4642 #ifdef SIGABRT
4643 signal (SIGABRT, crash_signal);
4644 #endif
4645 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
4646 signal (SIGIOT, crash_signal);
4647 #endif
4649 decl_printable_name = decl_name;
4650 lang_expand_expr = (lang_expand_expr_t) do_abort;
4652 /* Initialize whether `char' is signed. */
4653 flag_signed_char = DEFAULT_SIGNED_CHAR;
4654 #ifdef DEFAULT_SHORT_ENUMS
4655 /* Initialize how much space enums occupy, by default. */
4656 flag_short_enums = DEFAULT_SHORT_ENUMS;
4657 #endif
4659 /* Initialize the garbage-collector. */
4660 init_ggc ();
4661 init_stringpool ();
4662 ggc_add_rtx_root (&stack_limit_rtx, 1);
4663 ggc_add_tree_root (&current_function_decl, 1);
4664 ggc_add_tree_root (&current_function_func_begin_label, 1);
4666 /* Initialize the diagnostics reporting machinery. */
4667 initialize_diagnostics ();
4669 /* Register the language-independent parameters. */
4670 add_params (lang_independent_params, LAST_PARAM);
4672 /* Perform language-specific options intialization. */
4673 if (lang_hooks.init_options)
4674 (*lang_hooks.init_options) ();
4676 /* Scan to see what optimization level has been specified. That will
4677 determine the default value of many flags. */
4678 for (i = 1; i < argc; i++)
4680 if (!strcmp (argv[i], "-O"))
4682 optimize = 1;
4683 optimize_size = 0;
4685 else if (argv[i][0] == '-' && argv[i][1] == 'O')
4687 /* Handle -Os, -O2, -O3, -O69, ... */
4688 char *p = &argv[i][2];
4690 if ((p[0] == 's') && (p[1] == 0))
4692 optimize_size = 1;
4694 /* Optimizing for size forces optimize to be 2. */
4695 optimize = 2;
4697 else
4699 const int optimize_val = read_integral_parameter (p, p - 2, -1);
4700 if (optimize_val != -1)
4702 optimize = optimize_val;
4703 optimize_size = 0;
4709 if (optimize >= 1)
4711 flag_defer_pop = 1;
4712 flag_thread_jumps = 1;
4713 #ifdef DELAY_SLOTS
4714 flag_delayed_branch = 1;
4715 #endif
4716 #ifdef CAN_DEBUG_WITHOUT_FP
4717 flag_omit_frame_pointer = 1;
4718 #endif
4719 flag_guess_branch_prob = 1;
4722 if (optimize >= 2)
4724 flag_optimize_sibling_calls = 1;
4725 flag_cse_follow_jumps = 1;
4726 flag_cse_skip_blocks = 1;
4727 flag_gcse = 1;
4728 flag_expensive_optimizations = 1;
4729 flag_strength_reduce = 1;
4730 flag_rerun_cse_after_loop = 1;
4731 flag_rerun_loop_opt = 1;
4732 flag_caller_saves = 1;
4733 flag_force_mem = 1;
4734 flag_peephole2 = 1;
4735 #ifdef INSN_SCHEDULING
4736 flag_schedule_insns = 1;
4737 flag_schedule_insns_after_reload = 1;
4738 #endif
4739 flag_regmove = 1;
4740 flag_strict_aliasing = 1;
4741 flag_delete_null_pointer_checks = 1;
4742 flag_reorder_blocks = 1;
4745 if (optimize >= 3)
4747 flag_inline_functions = 1;
4748 flag_rename_registers = 1;
4751 if (optimize < 2 || optimize_size)
4753 align_loops = 1;
4754 align_jumps = 1;
4755 align_labels = 1;
4756 align_functions = 1;
4759 /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
4760 modify it. */
4761 target_flags = 0;
4762 set_target_switch ("");
4764 /* Unwind tables are always present in an ABI-conformant IA-64
4765 object file, so the default should be ON. */
4766 #ifdef IA64_UNWIND_INFO
4767 flag_unwind_tables = IA64_UNWIND_INFO;
4768 #endif
4770 #ifdef OPTIMIZATION_OPTIONS
4771 /* Allow default optimizations to be specified on a per-machine basis. */
4772 OPTIMIZATION_OPTIONS (optimize, optimize_size);
4773 #endif
4775 /* Initialize register usage now so switches may override. */
4776 init_reg_sets ();
4778 /* Perform normal command line switch decoding. */
4779 for (i = 1; i < argc;)
4781 int lang_processed;
4782 int indep_processed;
4784 /* Give the language a chance to decode the option for itself. */
4785 lang_processed = (*lang_hooks.decode_option) (argc - i, argv + i);
4787 if (lang_processed >= 0)
4788 /* Now see if the option also has a language independent meaning.
4789 Some options are both language specific and language independent,
4790 eg --help. */
4791 indep_processed = independent_decode_option (argc - i, argv + i);
4792 else
4794 lang_processed = -lang_processed;
4795 indep_processed = 0;
4798 if (lang_processed || indep_processed)
4799 i += MAX (lang_processed, indep_processed);
4800 else
4802 const char *option = NULL;
4803 const char *lang = NULL;
4804 unsigned int j;
4806 /* It is possible that the command line switch is not valid for the
4807 current language, but it is valid for another language. In order
4808 to be compatible with previous versions of the compiler (which
4809 did not issue an error message in this case) we check for this
4810 possibility here. If we do find a match, then if extra_warnings
4811 is set we generate a warning message, otherwise we will just
4812 ignore the option. */
4813 for (j = 0; j < ARRAY_SIZE (documented_lang_options); j++)
4815 option = documented_lang_options[j].option;
4817 if (option == NULL)
4818 lang = documented_lang_options[j].description;
4819 else if (! strncmp (argv[i], option, strlen (option)))
4820 break;
4823 if (j != ARRAY_SIZE (documented_lang_options))
4825 if (extra_warnings)
4827 warning ("Ignoring command line option '%s'", argv[i]);
4828 if (lang)
4829 warning
4830 ("(It is valid for %s but not the selected language)",
4831 lang);
4834 else if (argv[i][0] == '-' && argv[i][1] == 'g')
4835 warning ("`%s': unknown or unsupported -g option", &argv[i][2]);
4836 else
4837 error ("Unrecognized option `%s'", argv[i]);
4839 i++;
4843 /* All command line options have been processed. */
4844 if (lang_hooks.post_options)
4845 (*lang_hooks.post_options) ();
4847 if (exit_after_options)
4848 exit (0);
4850 /* Reflect any language-specific diagnostic option setting. */
4851 reshape_diagnostic_buffer ();
4853 /* Checker uses the frame pointer. */
4854 if (flag_check_memory_usage)
4855 flag_omit_frame_pointer = 0;
4857 if (optimize == 0)
4859 /* Inlining does not work if not optimizing,
4860 so force it not to be done. */
4861 flag_no_inline = 1;
4862 warn_inline = 0;
4864 /* The c_decode_option function and decode_option hook set
4865 this to `2' if -Wall is used, so we can avoid giving out
4866 lots of errors for people who don't realize what -Wall does. */
4867 if (warn_uninitialized == 1)
4868 warning ("-Wuninitialized is not supported without -O");
4871 #ifdef OVERRIDE_OPTIONS
4872 /* Some machines may reject certain combinations of options. */
4873 OVERRIDE_OPTIONS;
4874 #endif
4876 /* Set up the align_*_log variables, defaulting them to 1 if they
4877 were still unset. */
4878 if (align_loops <= 0) align_loops = 1;
4879 align_loops_log = floor_log2 (align_loops * 2 - 1);
4880 if (align_jumps <= 0) align_jumps = 1;
4881 align_jumps_log = floor_log2 (align_jumps * 2 - 1);
4882 if (align_labels <= 0) align_labels = 1;
4883 align_labels_log = floor_log2 (align_labels * 2 - 1);
4884 if (align_functions <= 0) align_functions = 1;
4885 align_functions_log = floor_log2 (align_functions * 2 - 1);
4887 if (profile_block_flag == 3)
4889 warning ("`-ax' and `-a' are conflicting options. `-a' ignored.");
4890 profile_block_flag = 2;
4893 /* Unrolling all loops implies that standard loop unrolling must also
4894 be done. */
4895 if (flag_unroll_all_loops)
4896 flag_unroll_loops = 1;
4897 /* Loop unrolling requires that strength_reduction be on also. Silently
4898 turn on strength reduction here if it isn't already on. Also, the loop
4899 unrolling code assumes that cse will be run after loop, so that must
4900 be turned on also. */
4901 if (flag_unroll_loops)
4903 flag_strength_reduce = 1;
4904 flag_rerun_cse_after_loop = 1;
4907 /* Warn about options that are not supported on this machine. */
4908 #ifndef INSN_SCHEDULING
4909 if (flag_schedule_insns || flag_schedule_insns_after_reload)
4910 warning ("instruction scheduling not supported on this target machine");
4911 #endif
4912 #ifndef DELAY_SLOTS
4913 if (flag_delayed_branch)
4914 warning ("this target machine does not have delayed branches");
4915 #endif
4917 user_label_prefix = USER_LABEL_PREFIX;
4918 if (flag_leading_underscore != -1)
4920 /* If the default prefix is more complicated than "" or "_",
4921 issue a warning and ignore this option. */
4922 if (user_label_prefix[0] == 0 ||
4923 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
4925 user_label_prefix = flag_leading_underscore ? "_" : "";
4927 else
4928 warning ("-f%sleading-underscore not supported on this target machine",
4929 flag_leading_underscore ? "" : "no-");
4932 /* If we are in verbose mode, write out the version and maybe all the
4933 option flags in use. */
4934 if (version_flag)
4936 print_version (stderr, "");
4937 if (! quiet_flag)
4938 print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
4941 compile_file (filename);
4943 #if !defined(OS2) && !defined(VMS) && (!defined(_WIN32) || defined (__CYGWIN__)) && !defined(__INTERIX)
4944 if (flag_print_mem)
4946 char *lim = (char *) sbrk (0);
4948 fnotice (stderr, "Data size %ld.\n", (long) (lim - (char *) &environ));
4949 fflush (stderr);
4951 #ifndef __MSDOS__
4952 #ifdef USG
4953 system ("ps -l 1>&2");
4954 #else /* not USG */
4955 system ("ps v");
4956 #endif /* not USG */
4957 #endif
4959 #endif /* ! OS2 && ! VMS && (! _WIN32 || CYGWIN) && ! __INTERIX */
4961 if (errorcount)
4962 return (FATAL_EXIT_CODE);
4963 if (sorrycount)
4964 return (FATAL_EXIT_CODE);
4965 return (SUCCESS_EXIT_CODE);
4968 /* Decode -m switches. */
4969 /* Decode the switch -mNAME. */
4971 static void
4972 set_target_switch (name)
4973 const char *name;
4975 register size_t j;
4976 int valid_target_option = 0;
4978 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
4979 if (!strcmp (target_switches[j].name, name))
4981 if (target_switches[j].value < 0)
4982 target_flags &= ~-target_switches[j].value;
4983 else
4984 target_flags |= target_switches[j].value;
4985 valid_target_option = 1;
4988 #ifdef TARGET_OPTIONS
4989 if (!valid_target_option)
4990 for (j = 0; j < ARRAY_SIZE (target_options); j++)
4992 int len = strlen (target_options[j].prefix);
4993 if (!strncmp (target_options[j].prefix, name, len))
4995 *target_options[j].variable = name + len;
4996 valid_target_option = 1;
4999 #endif
5001 if (!valid_target_option)
5002 error ("Invalid option `%s'", name);
5005 /* Print version information to FILE.
5006 Each line begins with INDENT (for the case where FILE is the
5007 assembler output file). */
5009 static void
5010 print_version (file, indent)
5011 FILE *file;
5012 const char *indent;
5014 #ifndef __VERSION__
5015 #define __VERSION__ "[?]"
5016 #endif
5017 fnotice (file,
5018 #ifdef __GNUC__
5019 "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
5020 #else
5021 "%s%s%s version %s (%s) compiled by CC.\n"
5022 #endif
5023 , indent, *indent != 0 ? " " : "",
5024 language_string, version_string, TARGET_NAME,
5025 indent, __VERSION__);
5028 /* Print an option value and return the adjusted position in the line.
5029 ??? We don't handle error returns from fprintf (disk full); presumably
5030 other code will catch a disk full though. */
5032 static int
5033 print_single_switch (file, pos, max, indent, sep, term, type, name)
5034 FILE *file;
5035 int pos, max;
5036 const char *indent, *sep, *term, *type, *name;
5038 /* The ultrix fprintf returns 0 on success, so compute the result we want
5039 here since we need it for the following test. */
5040 int len = strlen (sep) + strlen (type) + strlen (name);
5042 if (pos != 0
5043 && pos + len > max)
5045 fprintf (file, "%s", term);
5046 pos = 0;
5048 if (pos == 0)
5050 fprintf (file, "%s", indent);
5051 pos = strlen (indent);
5053 fprintf (file, "%s%s%s", sep, type, name);
5054 pos += len;
5055 return pos;
5058 /* Print active target switches to FILE.
5059 POS is the current cursor position and MAX is the size of a "line".
5060 Each line begins with INDENT and ends with TERM.
5061 Each switch is separated from the next by SEP. */
5063 static void
5064 print_switch_values (file, pos, max, indent, sep, term)
5065 FILE *file;
5066 int pos, max;
5067 const char *indent, *sep, *term;
5069 size_t j;
5070 char **p;
5072 /* Print the options as passed. */
5074 pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
5075 _("options passed: "), "");
5077 for (p = &save_argv[1]; *p != NULL; p++)
5078 if (**p == '-')
5080 /* Ignore these. */
5081 if (strcmp (*p, "-o") == 0)
5083 if (p[1] != NULL)
5084 p++;
5085 continue;
5087 if (strcmp (*p, "-quiet") == 0)
5088 continue;
5089 if (strcmp (*p, "-version") == 0)
5090 continue;
5091 if ((*p)[1] == 'd')
5092 continue;
5094 pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
5096 if (pos > 0)
5097 fprintf (file, "%s", term);
5099 /* Print the -f and -m options that have been enabled.
5100 We don't handle language specific options but printing argv
5101 should suffice. */
5103 pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
5104 _("options enabled: "), "");
5106 for (j = 0; j < ARRAY_SIZE (f_options); j++)
5107 if (*f_options[j].variable == f_options[j].on_value)
5108 pos = print_single_switch (file, pos, max, indent, sep, term,
5109 "-f", f_options[j].string);
5111 /* Print target specific options. */
5113 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
5114 if (target_switches[j].name[0] != '\0'
5115 && target_switches[j].value > 0
5116 && ((target_switches[j].value & target_flags)
5117 == target_switches[j].value))
5119 pos = print_single_switch (file, pos, max, indent, sep, term,
5120 "-m", target_switches[j].name);
5123 #ifdef TARGET_OPTIONS
5124 for (j = 0; j < ARRAY_SIZE (target_options); j++)
5125 if (*target_options[j].variable != NULL)
5127 char prefix[256];
5128 sprintf (prefix, "-m%s", target_options[j].prefix);
5129 pos = print_single_switch (file, pos, max, indent, sep, term,
5130 prefix, *target_options[j].variable);
5132 #endif
5134 fprintf (file, "%s", term);
5137 /* Record the beginning of a new source file, named FILENAME. */
5139 void
5140 debug_start_source_file (filename)
5141 register const char *filename ATTRIBUTE_UNUSED;
5143 #ifdef DBX_DEBUGGING_INFO
5144 if (write_symbols == DBX_DEBUG)
5145 dbxout_start_new_source_file (filename);
5146 #endif
5147 #ifdef DWARF_DEBUGGING_INFO
5148 if (debug_info_level == DINFO_LEVEL_VERBOSE
5149 && write_symbols == DWARF_DEBUG)
5150 dwarfout_start_new_source_file (filename);
5151 #endif /* DWARF_DEBUGGING_INFO */
5152 #ifdef DWARF2_DEBUGGING_INFO
5153 if (write_symbols == DWARF2_DEBUG)
5154 dwarf2out_start_source_file (filename);
5155 #endif /* DWARF2_DEBUGGING_INFO */
5156 #ifdef SDB_DEBUGGING_INFO
5157 if (write_symbols == SDB_DEBUG)
5158 sdbout_start_new_source_file (filename);
5159 #endif
5162 /* Record the resumption of a source file. LINENO is the line number in
5163 the source file we are returning to. */
5165 void
5166 debug_end_source_file (lineno)
5167 register unsigned lineno ATTRIBUTE_UNUSED;
5169 #ifdef DBX_DEBUGGING_INFO
5170 if (write_symbols == DBX_DEBUG)
5171 dbxout_resume_previous_source_file ();
5172 #endif
5173 #ifdef DWARF_DEBUGGING_INFO
5174 if (debug_info_level == DINFO_LEVEL_VERBOSE
5175 && write_symbols == DWARF_DEBUG)
5176 dwarfout_resume_previous_source_file (lineno);
5177 #endif /* DWARF_DEBUGGING_INFO */
5178 #ifdef DWARF2_DEBUGGING_INFO
5179 if (write_symbols == DWARF2_DEBUG)
5180 dwarf2out_end_source_file ();
5181 #endif /* DWARF2_DEBUGGING_INFO */
5182 #ifdef SDB_DEBUGGING_INFO
5183 if (write_symbols == SDB_DEBUG)
5184 sdbout_resume_previous_source_file ();
5185 #endif
5188 /* Called from cb_define in c-lex.c. The `buffer' parameter contains
5189 the tail part of the directive line, i.e. the part which is past the
5190 initial whitespace, #, whitespace, directive-name, whitespace part. */
5192 void
5193 debug_define (lineno, buffer)
5194 register unsigned lineno ATTRIBUTE_UNUSED;
5195 register const char *buffer ATTRIBUTE_UNUSED;
5197 #ifdef DWARF_DEBUGGING_INFO
5198 if (write_symbols == DWARF_DEBUG)
5199 dwarfout_define (lineno, buffer);
5200 #endif /* DWARF_DEBUGGING_INFO */
5201 #ifdef DWARF2_DEBUGGING_INFO
5202 if (write_symbols == DWARF2_DEBUG)
5203 dwarf2out_define (lineno, buffer);
5204 #endif /* DWARF2_DEBUGGING_INFO */
5207 /* Called from cb_undef in c-lex.c. The `buffer' parameter contains
5208 the tail part of the directive line, i.e. the part which is past the
5209 initial whitespace, #, whitespace, directive-name, whitespace part. */
5211 void
5212 debug_undef (lineno, buffer)
5213 register unsigned lineno ATTRIBUTE_UNUSED;
5214 register const char *buffer ATTRIBUTE_UNUSED;
5216 #ifdef DWARF_DEBUGGING_INFO
5217 if (write_symbols == DWARF_DEBUG)
5218 dwarfout_undef (lineno, buffer);
5219 #endif /* DWARF_DEBUGGING_INFO */
5220 #ifdef DWARF2_DEBUGGING_INFO
5221 if (write_symbols == DWARF2_DEBUG)
5222 dwarf2out_undef (lineno, buffer);
5223 #endif /* DWARF2_DEBUGGING_INFO */
5226 /* Returns nonzero if it is appropriate not to emit any debugging
5227 information for BLOCK, because it doesn't contain any instructions.
5228 This may not be the case for blocks containing nested functions, since
5229 we may actually call such a function even though the BLOCK information
5230 is messed up. */
5233 debug_ignore_block (block)
5234 tree block ATTRIBUTE_UNUSED;
5236 /* Never delete the BLOCK for the outermost scope
5237 of the function; we can refer to names from
5238 that scope even if the block notes are messed up. */
5239 if (is_body_block (block))
5240 return 0;
5242 #ifdef DWARF2_DEBUGGING_INFO
5243 if (write_symbols == DWARF2_DEBUG)
5244 return dwarf2out_ignore_block (block);
5245 #endif
5247 return 1;