* rtl.h (renumber_insns): New function.
[official-gcc.git] / gcc / toplev.c
blob232e515b533a1206d745719c8dc80cb19e3ba1a9
1 /* Top level of GNU C compiler
2 Copyright (C) 1987, 88, 89, 92-98, 1999 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* This is the top level of cc1/c++.
22 It parses command args, opens files, invokes the various passes
23 in the proper order, and counts the time used by each.
24 Error messages and low-level interface to malloc also handled here. */
26 #include "config.h"
27 #undef FLOAT /* This is for hpux. They should change hpux. */
28 #undef FFS /* Some systems define this in param.h. */
29 #include "system.h"
30 #include <signal.h>
31 #include <setjmp.h>
33 #ifdef HAVE_SYS_RESOURCE_H
34 # include <sys/resource.h>
35 #endif
37 #ifdef HAVE_SYS_TIMES_H
38 # include <sys/times.h>
39 #endif
41 #include "input.h"
42 #include "tree.h"
43 #include "rtl.h"
44 #include "tm_p.h"
45 #include "flags.h"
46 #include "insn-attr.h"
47 #include "insn-codes.h"
48 #include "insn-config.h"
49 #include "recog.h"
50 #include "defaults.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"
61 #ifdef DWARF_DEBUGGING_INFO
62 #include "dwarfout.h"
63 #endif
65 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
66 #include "dwarf2out.h"
67 #endif
69 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
70 #include "dbxout.h"
71 #endif
73 #ifdef SDB_DEBUGGING_INFO
74 #include "sdbout.h"
75 #endif
77 #ifdef XCOFF_DEBUGGING_INFO
78 #include "xcoffout.h"
79 #endif
81 #ifdef VMS
82 /* The extra parameters substantially improve the I/O performance. */
83 static FILE *
84 vms_fopen (fname, type)
85 char * fname;
86 char * type;
88 /* The <stdio.h> in the gcc-vms-1.42 distribution prototypes fopen with two
89 fixed arguments, which matches ANSI's specification but not VAXCRTL's
90 pre-ANSI implementation. This hack circumvents the mismatch problem. */
91 FILE *(*vmslib_fopen)() = (FILE *(*)()) fopen;
93 if (*type == 'w')
94 return (*vmslib_fopen) (fname, type, "mbc=32",
95 "deq=64", "fop=tef", "shr=nil");
96 else
97 return (*vmslib_fopen) (fname, type, "mbc=32");
99 #define fopen vms_fopen
100 #endif /* VMS */
102 #ifndef DEFAULT_GDB_EXTENSIONS
103 #define DEFAULT_GDB_EXTENSIONS 1
104 #endif
106 /* If more than one debugging type is supported, you must define
107 PREFERRED_DEBUGGING_TYPE to choose a format in a system-dependent way.
109 This is one long line cause VAXC can't handle a \-newline. */
110 #if 1 < (defined (DBX_DEBUGGING_INFO) + defined (SDB_DEBUGGING_INFO) + defined (DWARF_DEBUGGING_INFO) + defined (DWARF2_DEBUGGING_INFO) + defined (XCOFF_DEBUGGING_INFO))
111 #ifndef PREFERRED_DEBUGGING_TYPE
112 You Lose! You must define PREFERRED_DEBUGGING_TYPE!
113 #endif /* no PREFERRED_DEBUGGING_TYPE */
114 #else /* Only one debugging format supported. Define PREFERRED_DEBUGGING_TYPE
115 so the following code needn't care. */
116 #ifdef DBX_DEBUGGING_INFO
117 #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
118 #endif
119 #ifdef SDB_DEBUGGING_INFO
120 #define PREFERRED_DEBUGGING_TYPE SDB_DEBUG
121 #endif
122 #ifdef DWARF_DEBUGGING_INFO
123 #define PREFERRED_DEBUGGING_TYPE DWARF_DEBUG
124 #endif
125 #ifdef DWARF2_DEBUGGING_INFO
126 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
127 #endif
128 #ifdef XCOFF_DEBUGGING_INFO
129 #define PREFERRED_DEBUGGING_TYPE XCOFF_DEBUG
130 #endif
131 #endif /* More than one debugger format enabled. */
133 /* If still not defined, must have been because no debugging formats
134 are supported. */
135 #ifndef PREFERRED_DEBUGGING_TYPE
136 #define PREFERRED_DEBUGGING_TYPE NO_DEBUG
137 #endif
139 #ifndef DIR_SEPARATOR
140 #define DIR_SEPARATOR '/'
141 #endif
143 #if ! (defined (VMS) || defined (OS2))
144 extern char **environ;
145 #endif
146 extern char *version_string;
148 /* Carry information from ASM_DECLARE_OBJECT_NAME
149 to ASM_FINISH_DECLARE_OBJECT. */
151 extern int size_directive_output;
152 extern tree last_assemble_variable_decl;
154 static void notice PVPROTO((const char *s, ...)) ATTRIBUTE_PRINTF_1;
155 static void set_target_switch PROTO((const char *));
156 static const char *decl_name PROTO((tree, int));
157 static void vmessage PROTO((const char *, const char *, va_list));
158 static void v_message_with_file_and_line PROTO((const char *, int, int,
159 const char *, va_list));
160 static void v_message_with_decl PROTO((tree, int, const char *, va_list));
161 static void file_and_line_for_asm PROTO((rtx, char **, int *));
162 static void v_error_with_file_and_line PROTO((const char *, int,
163 const char *, va_list));
164 static void v_error_with_decl PROTO((tree, const char *, va_list));
165 static void v_error_for_asm PROTO((rtx, const char *, va_list));
166 static void verror PROTO((const char *, va_list));
167 static void vfatal PROTO((const char *, va_list)) ATTRIBUTE_NORETURN;
168 static void v_warning_with_file_and_line PROTO ((const char *, int,
169 const char *, va_list));
170 static void v_warning_with_decl PROTO((tree, const char *, va_list));
171 static void v_warning_for_asm PROTO((rtx, const char *, va_list));
172 static void vwarning PROTO((const char *, va_list));
173 static void vpedwarn PROTO((const char *, va_list));
174 static void v_pedwarn_with_decl PROTO((tree, const char *, va_list));
175 static void v_pedwarn_with_file_and_line PROTO((const char *, int,
176 const char *, va_list));
177 static void vsorry PROTO((const char *, va_list));
178 extern void set_fatal_function PROTO((void (*)(const char *, va_list)));
179 static void float_signal PROTO((int)) ATTRIBUTE_NORETURN;
180 static void pipe_closed PROTO((int)) ATTRIBUTE_NORETURN;
181 #ifdef ASM_IDENTIFY_LANGUAGE
182 /* This might or might not be used in ASM_IDENTIFY_LANGUAGE. */
183 static void output_lang_identify PROTO((FILE *)) ATTRIBUTE_UNUSED;
184 #endif
185 static void open_dump_file PROTO((const char *, const char *));
186 static void close_dump_file PROTO((void (*) (FILE *, rtx), rtx));
187 static void dump_rtl PROTO((const char *, tree, void (*) (FILE *, rtx), rtx));
188 static void clean_dump_file PROTO((const char *));
189 static void compile_file PROTO((char *));
190 static void display_help PROTO ((void));
191 static void report_file_and_line PROTO ((const char *, int, int));
192 static void vnotice PROTO ((FILE *, const char *, va_list));
193 static void mark_file_stack PROTO ((void *));
195 static void decode_d_option PROTO ((const char *));
196 static int decode_f_option PROTO ((const char *));
197 static int decode_W_option PROTO ((const char *));
198 static int decode_g_option PROTO ((const char *));
199 static unsigned independent_decode_option PROTO ((int, char **, unsigned));
201 static void print_version PROTO((FILE *, const char *));
202 static int print_single_switch PROTO((FILE *, int, int, const char *,
203 const char *, const char *,
204 const char *, const char *));
205 static void print_switch_values PROTO((FILE *, int, int, const char *,
206 const char *, const char *));
208 /* Length of line when printing switch values. */
209 #define MAX_LINE 75
211 /* Name of program invoked, sans directories. */
213 const char *progname;
215 /* Copy of arguments to main. */
216 int save_argc;
217 char **save_argv;
219 /* Name of current original source file (what was input to cpp).
220 This comes from each #-command in the actual input. */
222 char *input_filename;
224 /* Name of top-level original source file (what was input to cpp).
225 This comes from the #-command at the beginning of the actual input.
226 If there isn't any there, then this is the cc1 input file name. */
228 char *main_input_filename;
230 /* Current line number in real source file. */
232 int lineno;
234 /* Nonzero if it is unsafe to create any new pseudo registers. */
235 int no_new_pseudos;
237 /* Stack of currently pending input files. */
239 struct file_stack *input_file_stack;
241 /* Incremented on each change to input_file_stack. */
242 int input_file_stack_tick;
244 /* Name to use as base of names for dump output files. */
246 const char *dump_base_name;
248 /* Bit flags that specify the machine subtype we are compiling for.
249 Bits are tested using macros TARGET_... defined in the tm.h file
250 and set by `-m...' switches. Must be defined in rtlanal.c. */
252 extern int target_flags;
254 /* Flags saying which kinds of debugging dump have been requested. */
256 int rtl_dump = 0;
257 int rtl_dump_and_exit = 0;
258 int jump_opt_dump = 0;
259 int addressof_dump = 0;
260 int cse_dump = 0;
261 int gcse_dump = 0;
262 int loop_dump = 0;
263 int cse2_dump = 0;
264 int branch_prob_dump = 0;
265 int flow_dump = 0;
266 int combine_dump = 0;
267 int regmove_dump = 0;
268 int sched_dump = 0;
269 int local_reg_dump = 0;
270 int global_reg_dump = 0;
271 int flow2_dump = 0;
272 int peephole2_dump = 0;
273 int sched2_dump = 0;
274 int jump2_opt_dump = 0;
275 #ifdef DELAY_SLOTS
276 int dbr_sched_dump = 0;
277 #endif
278 int flag_print_asm_name = 0;
279 #ifdef STACK_REGS
280 int stack_reg_dump = 0;
281 #endif
282 #ifdef MACHINE_DEPENDENT_REORG
283 int mach_dep_reorg_dump = 0;
284 #endif
285 static int flag_print_mem = 0;
286 static int version_flag = 0;
287 static char * filename = 0;
288 enum graph_dump_types graph_dump_format;
290 /* Name for output file of assembly code, specified with -o. */
292 char *asm_file_name;
294 /* Value of the -G xx switch, and whether it was passed or not. */
295 int g_switch_value;
296 int g_switch_set;
298 /* Type(s) of debugging information we are producing (if any).
299 See flags.h for the definitions of the different possible
300 types of debugging information. */
301 enum debug_info_type write_symbols = NO_DEBUG;
303 /* Level of debugging information we are producing. See flags.h
304 for the definitions of the different possible levels. */
305 enum debug_info_level debug_info_level = DINFO_LEVEL_NONE;
307 /* Nonzero means use GNU-only extensions in the generated symbolic
308 debugging information. */
309 /* Currently, this only has an effect when write_symbols is set to
310 DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG. */
311 int use_gnu_debug_info_extensions = 0;
313 /* Nonzero means do optimizations. -O.
314 Particular numeric values stand for particular amounts of optimization;
315 thus, -O2 stores 2 here. However, the optimizations beyond the basic
316 ones are not controlled directly by this variable. Instead, they are
317 controlled by individual `flag_...' variables that are defaulted
318 based on this variable. */
320 int optimize = 0;
322 /* Nonzero means optimize for size. -Os.
323 The only valid values are zero and non-zero. When optimize_size is
324 non-zero, optimize defaults to 2, but certain individual code
325 bloating optimizations are disabled. */
327 int optimize_size = 0;
329 /* Number of error messages and warning messages so far. */
331 int errorcount = 0;
332 int warningcount = 0;
333 int sorrycount = 0;
335 /* Pointer to function to compute the name to use to print a declaration.
336 DECL is the declaration in question.
337 VERBOSITY determines what information will be printed:
338 0: DECL_NAME, demangled as necessary.
339 1: and scope information.
340 2: and any other information that might be interesting, such as function
341 parameter types in C++. */
343 const char *(*decl_printable_name) PROTO ((tree, int));
345 /* Pointer to function to compute rtl for a language-specific tree code. */
347 typedef rtx (*lang_expand_expr_t)
348 PROTO ((union tree_node *, rtx, enum machine_mode,
349 enum expand_modifier modifier));
351 lang_expand_expr_t lang_expand_expr = 0;
353 tree (*lang_expand_constant) PROTO((tree)) = 0;
355 /* Pointer to function to finish handling an incomplete decl at the
356 end of compilation. */
358 void (*incomplete_decl_finalize_hook) PROTO((tree)) = 0;
360 /* Nonzero if generating code to do profiling. */
362 int profile_flag = 0;
364 /* Nonzero if generating code to do profiling on a line-by-line basis. */
366 int profile_block_flag;
368 /* Nonzero if generating code to profile program flow graph arcs. */
370 int profile_arc_flag = 0;
372 /* Nonzero if generating info for gcov to calculate line test coverage. */
374 int flag_test_coverage = 0;
376 /* Nonzero indicates that branch taken probabilities should be calculated. */
378 int flag_branch_probabilities = 0;
380 /* Nonzero for -pedantic switch: warn about anything
381 that standard spec forbids. */
383 int pedantic = 0;
385 /* Temporarily suppress certain warnings.
386 This is set while reading code from a system header file. */
388 int in_system_header = 0;
390 /* Nonzero means do stupid register allocation.
391 Currently, this is 1 if `optimize' is 0. */
393 int obey_regdecls = 0;
395 /* Don't print functions as they are compiled and don't print
396 times taken by the various passes. -quiet. */
398 int quiet_flag = 0;
400 /* -f flags. */
402 /* Nonzero means `char' should be signed. */
404 int flag_signed_char;
406 /* Nonzero means give an enum type only as many bytes as it needs. */
408 int flag_short_enums;
410 /* Nonzero for -fcaller-saves: allocate values in regs that need to
411 be saved across function calls, if that produces overall better code.
412 Optional now, so people can test it. */
414 #ifdef DEFAULT_CALLER_SAVES
415 int flag_caller_saves = 1;
416 #else
417 int flag_caller_saves = 0;
418 #endif
420 /* Nonzero if structures and unions should be returned in memory.
422 This should only be defined if compatibility with another compiler or
423 with an ABI is needed, because it results in slower code. */
425 #ifndef DEFAULT_PCC_STRUCT_RETURN
426 #define DEFAULT_PCC_STRUCT_RETURN 1
427 #endif
429 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
431 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
433 /* Nonzero for -fforce-mem: load memory value into a register
434 before arithmetic on it. This makes better cse but slower compilation. */
436 int flag_force_mem = 0;
438 /* Nonzero for -fforce-addr: load memory address into a register before
439 reference to memory. This makes better cse but slower compilation. */
441 int flag_force_addr = 0;
443 /* Nonzero for -fdefer-pop: don't pop args after each function call;
444 instead save them up to pop many calls' args with one insns. */
446 int flag_defer_pop = 0;
448 /* Nonzero for -ffloat-store: don't allocate floats and doubles
449 in extended-precision registers. */
451 int flag_float_store = 0;
453 /* Nonzero for -fcse-follow-jumps:
454 have cse follow jumps to do a more extensive job. */
456 int flag_cse_follow_jumps;
458 /* Nonzero for -fcse-skip-blocks:
459 have cse follow a branch around a block. */
460 int flag_cse_skip_blocks;
462 /* Nonzero for -fexpensive-optimizations:
463 perform miscellaneous relatively-expensive optimizations. */
464 int flag_expensive_optimizations;
466 /* Nonzero for -fthread-jumps:
467 have jump optimize output of loop. */
469 int flag_thread_jumps;
471 /* Nonzero enables strength-reduction in loop.c. */
473 int flag_strength_reduce = 0;
475 /* Nonzero enables loop unrolling in unroll.c. Only loops for which the
476 number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
477 UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
478 unrolled. */
480 int flag_unroll_loops;
482 /* Nonzero enables loop unrolling in unroll.c. All loops are unrolled.
483 This is generally not a win. */
485 int flag_unroll_all_loops;
487 /* Nonzero forces all invariant computations in loops to be moved
488 outside the loop. */
490 int flag_move_all_movables = 0;
492 /* Nonzero forces all general induction variables in loops to be
493 strength reduced. */
495 int flag_reduce_all_givs = 0;
497 /* Nonzero to perform full register move optimization passes. This is the
498 default for -O2. */
500 int flag_regmove = 0;
502 /* Nonzero for -fwritable-strings:
503 store string constants in data segment and don't uniquize them. */
505 int flag_writable_strings = 0;
507 /* Nonzero means don't put addresses of constant functions in registers.
508 Used for compiling the Unix kernel, where strange substitutions are
509 done on the assembly output. */
511 int flag_no_function_cse = 0;
513 /* Nonzero for -fomit-frame-pointer:
514 don't make a frame pointer in simple functions that don't require one. */
516 int flag_omit_frame_pointer = 0;
518 /* Nonzero means place each function into its own section on those platforms
519 which support arbitrary section names and unlimited numbers of sections. */
521 int flag_function_sections = 0;
523 /* ... and similar for data. */
525 int flag_data_sections = 0;
527 /* Nonzero to inhibit use of define_optimization peephole opts. */
529 int flag_no_peephole = 0;
531 /* Nonzero allows GCC to violate some IEEE or ANSI rules regarding math
532 operations in the interest of optimization. For example it allows
533 GCC to assume arguments to sqrt are nonnegative numbers, allowing
534 faster code for sqrt to be generated. */
536 int flag_fast_math = 0;
538 /* Nonzero means the front end generally wants `errno' maintained by math
539 operations, like built-in SQRT, unless overridden by flag_fast_math. */
541 int flag_errno_math = 1;
543 /* 0 means straightforward implementation of complex divide acceptable.
544 1 means wide ranges of inputs must work for complex divide.
545 2 means C9X-like requirements for complex divide (not yet implemented). */
547 int flag_complex_divide_method = 0;
549 /* Nonzero means all references through pointers are volatile. */
551 int flag_volatile;
553 /* Nonzero means treat all global and extern variables as volatile. */
555 int flag_volatile_global;
557 /* Nonzero means treat all static variables as volatile. */
559 int flag_volatile_static;
561 /* Nonzero means just do syntax checking; don't output anything. */
563 int flag_syntax_only = 0;
565 /* Nonzero means perform global cse. */
567 static int flag_gcse;
569 /* Nonzero means to use global dataflow analysis to eliminate
570 useless null pointer tests. */
572 static int flag_delete_null_pointer_checks;
574 /* Nonzero means to rerun cse after loop optimization. This increases
575 compilation time about 20% and picks up a few more common expressions. */
577 static int flag_rerun_cse_after_loop;
579 /* Nonzero means to run loop optimizations twice. */
581 int flag_rerun_loop_opt;
583 /* Nonzero for -finline-functions: ok to inline functions that look like
584 good inline candidates. */
586 int flag_inline_functions;
588 /* Nonzero for -fkeep-inline-functions: even if we make a function
589 go inline everywhere, keep its definition around for debugging
590 purposes. */
592 int flag_keep_inline_functions;
594 /* Nonzero means that functions will not be inlined. */
596 int flag_no_inline;
598 /* Nonzero means that we should emit static const variables
599 regardless of whether or not optimization is turned on. */
601 int flag_keep_static_consts = 1;
603 /* Nonzero means we should be saving declaration info into a .X file. */
605 int flag_gen_aux_info = 0;
607 /* Specified name of aux-info file. */
609 static char *aux_info_file_name;
611 /* Nonzero means make the text shared if supported. */
613 int flag_shared_data;
615 /* Nonzero means schedule into delayed branch slots if supported. */
617 int flag_delayed_branch;
619 /* Nonzero if we are compiling pure (sharable) code.
620 Value is 1 if we are doing reasonable (i.e. simple
621 offset into offset table) pic. Value is 2 if we can
622 only perform register offsets. */
624 int flag_pic;
626 /* Nonzero means generate extra code for exception handling and enable
627 exception handling. */
629 int flag_exceptions;
631 /* Nonzero means use the new model for exception handling. Replaces
632 -DNEW_EH_MODEL as a compile option. */
634 int flag_new_exceptions = 1;
636 /* Nonzero means generate frame unwind info table when supported */
638 int flag_unwind_tables = 0;
640 /* Nonzero means don't place uninitialized global data in common storage
641 by default. */
643 int flag_no_common;
645 /* Nonzero means pretend it is OK to examine bits of target floats,
646 even if that isn't true. The resulting code will have incorrect constants,
647 but the same series of instructions that the native compiler would make. */
649 int flag_pretend_float;
651 /* Nonzero means change certain warnings into errors.
652 Usually these are warnings about failure to conform to some standard. */
654 int flag_pedantic_errors = 0;
656 /* flag_schedule_insns means schedule insns within basic blocks (before
657 local_alloc).
658 flag_schedule_insns_after_reload means schedule insns after
659 global_alloc. */
661 int flag_schedule_insns = 0;
662 int flag_schedule_insns_after_reload = 0;
664 /* The following flags have effect only for scheduling before register
665 allocation:
667 flag_schedule_interblock means schedule insns accross basic blocks.
668 flag_schedule_speculative means allow speculative motion of non-load insns.
669 flag_schedule_speculative_load means allow speculative motion of some
670 load insns.
671 flag_schedule_speculative_load_dangerous allows speculative motion of more
672 load insns. */
674 int flag_schedule_interblock = 1;
675 int flag_schedule_speculative = 1;
676 int flag_schedule_speculative_load = 0;
677 int flag_schedule_speculative_load_dangerous = 0;
679 /* flag_on_branch_count_reg means try to replace add-1,compare,branch tupple
680 by a cheaper branch, on a count register. */
681 int flag_branch_on_count_reg;
683 /* -finhibit-size-directive inhibits output of .size for ELF.
684 This is used only for compiling crtstuff.c,
685 and it may be extended to other effects
686 needed for crtstuff.c on other systems. */
687 int flag_inhibit_size_directive = 0;
689 /* -fverbose-asm causes extra commentary information to be produced in
690 the generated assembly code (to make it more readable). This option
691 is generally only of use to those who actually need to read the
692 generated assembly code (perhaps while debugging the compiler itself).
693 -fno-verbose-asm, the default, causes the extra information
694 to be omitted and is useful when comparing two assembler files. */
696 int flag_verbose_asm = 0;
698 /* -dA causes debug commentary information to be produced in
699 the generated assembly code (to make it more readable). This option
700 is generally only of use to those who actually need to read the
701 generated assembly code (perhaps while debugging the compiler itself).
702 Currently, this switch is only used by dwarfout.c; however, it is intended
703 to be a catchall for printing debug information in the assembler file. */
705 int flag_debug_asm = 0;
707 /* -fgnu-linker specifies use of the GNU linker for initializations.
708 (Or, more generally, a linker that handles initializations.)
709 -fno-gnu-linker says that collect2 will be used. */
710 #ifdef USE_COLLECT2
711 int flag_gnu_linker = 0;
712 #else
713 int flag_gnu_linker = 1;
714 #endif
716 /* Tag all structures with __attribute__(packed) */
717 int flag_pack_struct = 0;
719 /* Emit code to check for stack overflow; also may cause large objects
720 to be allocated dynamically. */
721 int flag_stack_check;
723 /* -fcheck-memory-usage causes extra code to be generated in order to check
724 memory accesses. This is used by a detector of bad memory accesses such
725 as Checker. */
726 int flag_check_memory_usage = 0;
728 /* -fprefix-function-name causes function name to be prefixed. This
729 can be used with -fcheck-memory-usage to isolate code compiled with
730 -fcheck-memory-usage. */
731 int flag_prefix_function_name = 0;
733 /* 0 if pointer arguments may alias each other. True in C.
734 1 if pointer arguments may not alias each other but may alias
735 global variables.
736 2 if pointer arguments may not alias each other and may not
737 alias global variables. True in Fortran.
738 This defaults to 0 for C. */
739 int flag_argument_noalias = 0;
741 /* Nonzero if we should do (language-dependent) alias analysis.
742 Typically, this analysis will assume that expressions of certain
743 types do not alias expressions of certain other types. Only used
744 if alias analysis (in general) is enabled. */
745 int flag_strict_aliasing = 0;
747 /* Instrument functions with calls at entry and exit, for profiling. */
748 int flag_instrument_function_entry_exit = 0;
750 /* Nonzero means ignore `#ident' directives. 0 means handle them.
751 On SVR4 targets, it also controls whether or not to emit a
752 string identifying the compiler. */
754 int flag_no_ident = 0;
756 /* This will perform a peephole pass before sched2. */
757 int flag_peephole2 = 0;
759 /* -fbounded-pointers causes gcc to compile pointers as composite
760 objects occupying three words: the pointer value, the base address
761 of the referent object, and the address immediately beyond the end
762 of the referent object. The base and extent allow us to perform
763 runtime bounds checking. -fbounded-pointers implies -fcheck-bounds. */
764 int flag_bounded_pointers = 0;
766 /* -fcheck-bounds causes gcc to generate array bounds checks.
767 For C, C++: defaults to value of flag_bounded_pointers.
768 For ObjC: defaults to off.
769 For Java: defaults to on.
770 For Fortran: defaults to off.
771 For CHILL: defaults to off. */
772 int flag_bounds_check = 0;
774 /* Values of the -falign-* flags: how much to align labels in code.
775 0 means `use default', 1 means `don't align'.
776 For each variable, there is an _log variant which is the power
777 of two not less than the variable, for .align output. */
779 int align_loops;
780 int align_loops_log;
781 int align_jumps;
782 int align_jumps_log;
783 int align_labels;
784 int align_labels_log;
785 int align_functions;
786 int align_functions_log;
788 /* Table of supported debugging formats. */
789 static struct
791 const char * arg;
792 /* Since PREFERRED_DEBUGGING_TYPE isn't necessarily a
793 constant expression, we use NO_DEBUG in its place. */
794 enum debug_info_type debug_type;
795 int use_extensions_p;
796 const char * description;
797 } *da,
798 debug_args[] =
800 { "", NO_DEBUG, DEFAULT_GDB_EXTENSIONS,
801 "Generate default debug format output" },
802 { "gdb", NO_DEBUG, 1, "Generate default extended debug format output" },
803 #ifdef DBX_DEBUGGING_INFO
804 { "stabs", DBX_DEBUG, 0, "Generate STABS format debug output" },
805 { "stabs+", DBX_DEBUG, 1, "Generate extended STABS format debug output" },
806 #endif
807 #ifdef DWARF_DEBUGGING_INFO
808 { "dwarf", DWARF_DEBUG, 0, "Generate DWARF-1 format debug output"},
809 { "dwarf+", DWARF_DEBUG, 1,
810 "Generated extended DWARF-1 format debug output" },
811 #endif
812 #ifdef DWARF2_DEBUGGING_INFO
813 { "dwarf-2", DWARF2_DEBUG, 0, "Enable DWARF-2 debug output" },
814 #endif
815 #ifdef XCOFF_DEBUGGING_INFO
816 { "xcoff", XCOFF_DEBUG, 0, "Generate XCOFF format debug output" },
817 { "xcoff+", XCOFF_DEBUG, 1, "Generate extended XCOFF format debug output" },
818 #endif
819 #ifdef SDB_DEBUGGING_INFO
820 { "coff", SDB_DEBUG, 0, "Generate COFF format debug output" },
821 #endif
822 { 0, 0, 0, 0 }
825 typedef struct
827 const char * string;
828 int * variable;
829 int on_value;
830 const char * description;
832 lang_independent_options;
834 /* Add or remove a leading underscore from user symbols. */
835 int flag_leading_underscore = -1;
837 /* The user symbol prefix after having resolved same. */
838 const char *user_label_prefix;
840 /* A default for same. */
841 #ifndef USER_LABEL_PREFIX
842 #define USER_LABEL_PREFIX ""
843 #endif
845 /* Table of language-independent -f options.
846 STRING is the option name. VARIABLE is the address of the variable.
847 ON_VALUE is the value to store in VARIABLE
848 if `-fSTRING' is seen as an option.
849 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
851 lang_independent_options f_options[] =
853 {"float-store", &flag_float_store, 1,
854 "Do not store floats in registers" },
855 {"volatile", &flag_volatile, 1,
856 "Consider all mem refs through pointers as volatile"},
857 {"volatile-global", &flag_volatile_global, 1,
858 "Consider all mem refs to global data to be volatile" },
859 {"volatile-static", &flag_volatile_static, 1,
860 "Consider all mem refs to static data to be volatile" },
861 {"defer-pop", &flag_defer_pop, 1,
862 "Defer popping functions args from stack until later" },
863 {"omit-frame-pointer", &flag_omit_frame_pointer, 1,
864 "When possible do not generate stack frames"},
865 {"cse-follow-jumps", &flag_cse_follow_jumps, 1,
866 "When running CSE, follow jumps to their targets" },
867 {"cse-skip-blocks", &flag_cse_skip_blocks, 1,
868 "When running CSE, follow conditional jumps" },
869 {"expensive-optimizations", &flag_expensive_optimizations, 1,
870 "Perform a number of minor, expensive optimisations" },
871 {"thread-jumps", &flag_thread_jumps, 1,
872 "Perform jump threading optimisations"},
873 {"strength-reduce", &flag_strength_reduce, 1,
874 "Perform strength reduction optimisations" },
875 {"unroll-loops", &flag_unroll_loops, 1,
876 "Perform loop unrolling when iteration count is known" },
877 {"unroll-all-loops", &flag_unroll_all_loops, 1,
878 "Perform loop unrolling for all loops" },
879 {"move-all-movables", &flag_move_all_movables, 1,
880 "Force all loop invariant computations out of loops" },
881 {"reduce-all-givs", &flag_reduce_all_givs, 1,
882 "Strength reduce all loop general induction variables" },
883 {"writable-strings", &flag_writable_strings, 1,
884 "Store strings in writable data section" },
885 {"peephole", &flag_no_peephole, 0,
886 "Enable machine specific peephole optimisations" },
887 {"force-mem", &flag_force_mem, 1,
888 "Copy memory operands into registers before using" },
889 {"force-addr", &flag_force_addr, 1,
890 "Copy memory address constants into regs before using" },
891 {"function-cse", &flag_no_function_cse, 0,
892 "Allow function addresses to be held in registers" },
893 {"inline-functions", &flag_inline_functions, 1,
894 "Integrate simple functions into their callers" },
895 {"keep-inline-functions", &flag_keep_inline_functions, 1,
896 "Generate code for funcs even if they are fully inlined" },
897 {"inline", &flag_no_inline, 0,
898 "Pay attention to the 'inline' keyword"},
899 {"keep-static-consts", &flag_keep_static_consts, 1,
900 "Emit static const variables even if they are not used" },
901 {"syntax-only", &flag_syntax_only, 1,
902 "Check for syntax errors, then stop" },
903 {"shared-data", &flag_shared_data, 1,
904 "Mark data as shared rather than private" },
905 {"caller-saves", &flag_caller_saves, 1,
906 "Enable saving registers around function calls" },
907 {"pcc-struct-return", &flag_pcc_struct_return, 1,
908 "Return 'short' aggregates in memory, not registers" },
909 {"reg-struct-return", &flag_pcc_struct_return, 0,
910 "Return 'short' aggregates in registers" },
911 {"delayed-branch", &flag_delayed_branch, 1,
912 "Attempt to fill delay slots of branch instructions" },
913 {"gcse", &flag_gcse, 1,
914 "Perform the global common subexpression elimination" },
915 {"rerun-cse-after-loop", &flag_rerun_cse_after_loop, 1,
916 "Run CSE pass after loop optimisations"},
917 {"rerun-loop-opt", &flag_rerun_loop_opt, 1,
918 "Run the loop optimiser twice"},
919 {"delete-null-pointer-checks", &flag_delete_null_pointer_checks, 1,
920 "Delete useless null pointer checks" },
921 {"pretend-float", &flag_pretend_float, 1,
922 "Pretend that host and target use the same FP format"},
923 {"schedule-insns", &flag_schedule_insns, 1,
924 "Reschedule instructions to avoid pipeline stalls"},
925 {"schedule-insns2", &flag_schedule_insns_after_reload, 1,
926 "Run two passes of the instruction scheduler"},
927 {"sched-interblock",&flag_schedule_interblock, 1,
928 "Enable scheduling across basic blocks" },
929 {"sched-spec",&flag_schedule_speculative, 1,
930 "Allow speculative motion of non-loads" },
931 {"sched-spec-load",&flag_schedule_speculative_load, 1,
932 "Allow speculative motion of some loads" },
933 {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1,
934 "Allow speculative motion of more loads" },
935 {"branch-count-reg",&flag_branch_on_count_reg, 1,
936 "Replace add,compare,branch with branch on count reg"},
937 {"pic", &flag_pic, 1,
938 "Generate position independent code, if possible"},
939 {"PIC", &flag_pic, 2, ""},
940 {"exceptions", &flag_exceptions, 1,
941 "Enable exception handling" },
942 {"new-exceptions", &flag_new_exceptions, 1,
943 "Use the new model for exception handling" },
944 {"unwind-tables", &flag_unwind_tables, 1,
945 "Just generate unwind tables for exception handling" },
946 {"sjlj-exceptions", &exceptions_via_longjmp, 1,
947 "Use setjmp/longjmp to handle exceptions" },
948 {"asynchronous-exceptions", &asynchronous_exceptions, 1,
949 "Support asynchronous exceptions" },
950 {"profile-arcs", &profile_arc_flag, 1,
951 "Insert arc based program profiling code" },
952 {"test-coverage", &flag_test_coverage, 1,
953 "Create data files needed by gcov" },
954 {"branch-probabilities", &flag_branch_probabilities, 1,
955 "Use profiling information for branch probabilities" },
956 {"fast-math", &flag_fast_math, 1,
957 "Improve FP speed by violating ANSI & IEEE rules" },
958 {"common", &flag_no_common, 0,
959 "Do not put unitialised globals in the common section" },
960 {"inhibit-size-directive", &flag_inhibit_size_directive, 1,
961 "Do not generate .size directives" },
962 {"function-sections", &flag_function_sections, 1,
963 "place each function into its own section" },
964 {"data-sections", &flag_data_sections, 1,
965 "place data items into their own section" },
966 {"verbose-asm", &flag_verbose_asm, 1,
967 "Add extra commentry to assembler output"},
968 {"gnu-linker", &flag_gnu_linker, 1,
969 "Output GNU ld formatted global initialisers"},
970 {"regmove", &flag_regmove, 1,
971 "Enables a register move optimisation"},
972 {"optimize-register-move", &flag_regmove, 1,
973 "Do the full regmove optimization pass"},
974 {"pack-struct", &flag_pack_struct, 1,
975 "Pack structure members together without holes" },
976 {"stack-check", &flag_stack_check, 1,
977 "Insert stack checking code into the program" },
978 {"argument-alias", &flag_argument_noalias, 0,
979 "Specify that arguments may alias each other & globals"},
980 {"argument-noalias", &flag_argument_noalias, 1,
981 "Assume arguments may alias globals but not each other"},
982 {"argument-noalias-global", &flag_argument_noalias, 2,
983 "Assume arguments do not alias each other or globals" },
984 {"strict-aliasing", &flag_strict_aliasing, 1,
985 "Assume strict aliasing rules apply" },
986 {"align-loops", &align_loops, 0,
987 "Align the start of loops" },
988 {"align-jumps", &align_jumps, 0,
989 "Align labels which are only reached by jumping" },
990 {"align-labels", &align_labels, 0,
991 "Align all labels" },
992 {"align-functions", &align_functions, 0,
993 "Align the start of functions" },
994 {"check-memory-usage", &flag_check_memory_usage, 1,
995 "Generate code to check every memory access" },
996 {"prefix-function-name", &flag_prefix_function_name, 1,
997 "Add a prefix to all function names" },
998 {"dump-unnumbered", &flag_dump_unnumbered, 1,
999 "Suppress output of instruction numbers and line number notes in debugging dumps"},
1000 {"instrument-functions", &flag_instrument_function_entry_exit, 1,
1001 "Instrument function entry/exit with profiling calls"},
1002 {"leading-underscore", &flag_leading_underscore, 1,
1003 "External symbols have a leading underscore" },
1004 {"ident", &flag_no_ident, 0,
1005 "Process #ident directives"},
1006 { "peephole2", &flag_peephole2, 1,
1007 "Enables an rtl peephole pass run before sched2" },
1008 {"math-errno", &flag_errno_math, 1,
1009 "Set errno after built-in math functions"},
1010 {"bounded-pointers", &flag_bounded_pointers, 1,
1011 "Compile pointers as triples: value, base & end" },
1012 {"bounds-check", &flag_bounds_check, 1,
1013 "Generate code to check bounds before dereferencing pointers and arrays" }
1016 #define NUM_ELEM(a) (sizeof (a) / sizeof ((a)[0]))
1018 /* Table of language-specific options. */
1020 static struct lang_opt
1022 const char * option;
1023 const char * description;
1025 documented_lang_options[] =
1027 /* In order not to overload the --help output, the convention
1028 used here is to only describe those options which are not
1029 enabled by default. */
1031 { "-ansi", "Compile just for ANSI C" },
1032 { "-fallow-single-precision",
1033 "Do not promote floats to double if using -traditional" },
1034 { "-std= ", "Determine language standard"},
1036 { "-fsigned-bitfields", "" },
1037 { "-funsigned-bitfields","Make bitfields by unsigned by default" },
1038 { "-fno-signed-bitfields", "" },
1039 { "-fno-unsigned-bitfields","" },
1040 { "-fsigned-char", "Make 'char' be signed by default"},
1041 { "-funsigned-char", "Make 'char' be unsigned by default"},
1042 { "-fno-signed-char", "" },
1043 { "-fno-unsigned-char", "" },
1045 { "-ftraditional", "" },
1046 { "-traditional", "Attempt to support traditional K&R style C"},
1047 { "-fnotraditional", "" },
1048 { "-fno-traditional", "" },
1050 { "-fasm", "" },
1051 { "-fno-asm", "Do not recognise the 'asm' keyword" },
1052 { "-fbuiltin", "" },
1053 { "-fno-builtin", "Do not recognise any built in functions" },
1054 { "-fhosted", "Assume normal C execution environment" },
1055 { "-fno-hosted", "" },
1056 { "-ffreestanding",
1057 "Assume that standard libraries & main might not exist" },
1058 { "-fno-freestanding", "" },
1059 { "-fcond-mismatch", "Allow different types as args of ? operator"},
1060 { "-fno-cond-mismatch", "" },
1061 { "-fdollars-in-identifiers", "Allow the use of $ inside identifiers" },
1062 { "-fno-dollars-in-identifiers", "" },
1063 { "-fpreprocessed", "" },
1064 { "-fno-preprocessed", "" },
1065 { "-fshort-double", "Use the same size for double as for float" },
1066 { "-fno-short-double", "" },
1067 { "-fshort-enums", "Use the smallest fitting integer to hold enums"},
1068 { "-fno-short-enums", "" },
1069 { "-fshort-wchar", "Override the underlying type for wchar_t to `unsigned short'" },
1070 { "-fno-short-wchar", "" },
1072 { "-Wall", "Enable most warning messages" },
1073 { "-Wbad-function-cast",
1074 "Warn about casting functions to incompatible types" },
1075 { "-Wno-bad-function-cast", "" },
1076 { "-Wmissing-noreturn",
1077 "Warn about functions which might be candidates for attribute noreturn" },
1078 { "-Wno-missing-noreturn", "" },
1079 { "-Wcast-qual", "Warn about casts which discard qualifiers"},
1080 { "-Wno-cast-qual", "" },
1081 { "-Wchar-subscripts", "Warn about subscripts whose type is 'char'"},
1082 { "-Wno-char-subscripts", "" },
1083 { "-Wcomment", "Warn if nested comments are detected" },
1084 { "-Wno-comment", "" },
1085 { "-Wcomments", "Warn if nested comments are detected" },
1086 { "-Wno-comments", "" },
1087 { "-Wconversion", "Warn about possibly confusing type conversions" },
1088 { "-Wno-conversion", "" },
1089 { "-Wformat", "Warn about printf format anomalies" },
1090 { "-Wno-format", "" },
1091 { "-Wimplicit-function-declaration",
1092 "Warn about implicit function declarations" },
1093 { "-Wno-implicit-function-declaration", "" },
1094 { "-Werror-implicit-function-declaration", "" },
1095 { "-Wimplicit-int", "Warn when a declaration does not specify a type" },
1096 { "-Wno-implicit-int", "" },
1097 { "-Wimplicit", "" },
1098 { "-Wno-implicit", "" },
1099 { "-Wimport", "Warn about the use of the #import directive" },
1100 { "-Wno-import", "" },
1101 { "-Wlong-long","" },
1102 { "-Wno-long-long", "Do not warn about using 'long long' when -pedantic" },
1103 { "-Wmain", "Warn about suspicious declarations of main" },
1104 { "-Wno-main", "" },
1105 { "-Wmissing-braces",
1106 "Warn about possibly missing braces around initialisers" },
1107 { "-Wno-missing-braces", "" },
1108 { "-Wmissing-declarations",
1109 "Warn about global funcs without previous declarations"},
1110 { "-Wno-missing-declarations", "" },
1111 { "-Wmissing-prototypes", "Warn about global funcs without prototypes" },
1112 { "-Wno-missing-prototypes", "" },
1113 { "-Wmultichar", "Warn about use of multicharacter literals"},
1114 { "-Wno-multichar", "" },
1115 { "-Wnested-externs", "Warn about externs not at file scope level" },
1116 { "-Wno-nested-externs", "" },
1117 { "-Wparentheses", "Warn about possible missing parentheses" },
1118 { "-Wno-parentheses", "" },
1119 { "-Wpointer-arith", "Warn about function pointer arithmetic" },
1120 { "-Wno-pointer-arith", "" },
1121 { "-Wredundant-decls",
1122 "Warn about multiple declarations of the same object" },
1123 { "-Wno-redundant-decls", "" },
1124 { "-Wsign-compare", "Warn about signed/unsigned comparisons" },
1125 { "-Wno-sign-compare", "" },
1126 { "-Wfloat-equal", "Warn about testing equality of floating point numbers" },
1127 { "-Wno-float-equal", "" },
1128 { "-Wunknown-pragmas", "Warn about unrecognised pragmas" },
1129 { "-Wno-unknown-pragmas", "" },
1130 { "-Wstrict-prototypes", "Warn about non-prototyped function decls" },
1131 { "-Wno-strict-prototypes", "" },
1132 { "-Wtraditional", "Warn about constructs whose meaning change in ANSI C"},
1133 { "-Wno-traditional", "" },
1134 { "-Wtrigraphs", "Warn when trigraphs are encountered" },
1135 { "-Wno-trigraphs", "" },
1136 { "-Wundef", "" },
1137 { "-Wno-undef", "" },
1138 { "-Wwrite-strings", "Mark strings as 'const char *'"},
1139 { "-Wno-write-strings", "" },
1141 #define DEFINE_LANG_NAME(NAME) { NULL, NAME },
1143 /* These are for Objective C. */
1144 DEFINE_LANG_NAME ("Objective C")
1146 { "-lang-objc", "" },
1147 { "-gen-decls", "Dump decls to a .decl file" },
1148 { "-fgnu-runtime", "Generate code for GNU runtime environment" },
1149 { "-fno-gnu-runtime", "" },
1150 { "-fnext-runtime", "Generate code for NeXT runtime environment" },
1151 { "-fno-next-runtime", "" },
1152 { "-Wselector", "Warn if a selector has multiple methods" },
1153 { "-Wno-selector", "" },
1154 { "-Wprotocol", "" },
1155 { "-Wno-protocol", "Do not warn if inherited methods are unimplemented"},
1156 { "-print-objc-runtime-info",
1157 "Generate C header of platform specific features" },
1159 #include "options.h"
1163 /* Here is a table, controlled by the tm.h file, listing each -m switch
1164 and which bits in `target_switches' it should set or clear.
1165 If VALUE is positive, it is bits to set.
1166 If VALUE is negative, -VALUE is bits to clear.
1167 (The sign bit is not used so there is no confusion.) */
1169 struct
1171 const char * name;
1172 int value;
1173 const char * description;
1175 target_switches [] = TARGET_SWITCHES;
1177 /* This table is similar, but allows the switch to have a value. */
1179 #ifdef TARGET_OPTIONS
1180 struct
1182 const char * prefix;
1183 const char ** variable;
1184 const char * description;
1186 target_options [] = TARGET_OPTIONS;
1187 #endif
1189 /* Options controlling warnings */
1191 /* Don't print warning messages. -w. */
1193 int inhibit_warnings = 0;
1195 /* Print various extra warnings. -W. */
1197 int extra_warnings = 0;
1199 /* Treat warnings as errors. -Werror. */
1201 int warnings_are_errors = 0;
1203 /* Nonzero to warn about unused local variables. */
1205 int warn_unused;
1207 /* Nonzero to warn about code which is never reached. */
1209 int warn_notreached;
1211 /* Nonzero to warn about variables used before they are initialized. */
1213 int warn_uninitialized;
1215 /* Nonzero means warn about all declarations which shadow others. */
1217 int warn_shadow;
1219 /* Warn if a switch on an enum fails to have a case for every enum value. */
1221 int warn_switch;
1223 /* Nonzero means warn about function definitions that default the return type
1224 or that use a null return and have a return-type other than void. */
1226 int warn_return_type;
1228 /* Nonzero means warn about pointer casts that increase the required
1229 alignment of the target type (and might therefore lead to a crash
1230 due to a misaligned access). */
1232 int warn_cast_align;
1234 /* Nonzero means warn about any identifiers that match in the first N
1235 characters. The value N is in `id_clash_len'. */
1237 int warn_id_clash;
1238 unsigned id_clash_len;
1240 /* Nonzero means warn about any objects definitions whose size is larger
1241 than N bytes. Also want about function definitions whose returned
1242 values are larger than N bytes. The value N is in `larger_than_size'. */
1244 int warn_larger_than;
1245 unsigned larger_than_size;
1247 /* Nonzero means warn if inline function is too large. */
1249 int warn_inline;
1251 /* Warn if a function returns an aggregate,
1252 since there are often incompatible calling conventions for doing this. */
1254 int warn_aggregate_return;
1256 /* Likewise for -W. */
1258 lang_independent_options W_options[] =
1260 {"unused", &warn_unused, 1, "Warn when a variable is unused" },
1261 {"error", &warnings_are_errors, 1, ""},
1262 {"shadow", &warn_shadow, 1, "Warn when one local variable shadows another" },
1263 {"switch", &warn_switch, 1,
1264 "Warn about enumerated switches missing a specific case" },
1265 {"aggregate-return", &warn_aggregate_return, 1,
1266 "Warn about returning structures, unions or arrays" },
1267 {"cast-align", &warn_cast_align, 1,
1268 "Warn about pointer casts which increase alignment" },
1269 {"unreachable-code", &warn_notreached, 1,
1270 "Warn about code that will never be executed" },
1271 {"uninitialized", &warn_uninitialized, 1,
1272 "Warn about unitialized automatic variables"},
1273 {"inline", &warn_inline, 1,
1274 "Warn when an inlined function cannot be inlined"}
1277 /* Output files for assembler code (real compiler output)
1278 and debugging dumps. */
1280 FILE *asm_out_file;
1281 FILE *aux_info_file;
1282 FILE *rtl_dump_file = NULL;
1284 /* Decode the string P as an integral parameter.
1285 If the string is indeed an integer return its numeric value else
1286 issue an Invalid Option error for the option PNAME and return DEFVAL.
1287 If PNAME is zero just return DEFVAL, do not call error. */
1290 read_integral_parameter (p, pname, defval)
1291 const char *p;
1292 const char *pname;
1293 const int defval;
1295 const char *endp = p;
1297 while (*endp)
1299 if (*endp >= '0' && *endp <= '9')
1300 endp++;
1301 else
1302 break;
1305 if (*endp != 0)
1307 if (pname != 0)
1308 error ("Invalid option `%s'", pname);
1309 return defval;
1312 return atoi (p);
1316 /* Time accumulators, to count the total time spent in various passes. */
1318 int parse_time;
1319 int varconst_time;
1320 int integration_time;
1321 int jump_time;
1322 int cse_time;
1323 int gcse_time;
1324 int loop_time;
1325 int cse2_time;
1326 int branch_prob_time;
1327 int flow_time;
1328 int combine_time;
1329 int regmove_time;
1330 int sched_time;
1331 int local_alloc_time;
1332 int global_alloc_time;
1333 int flow2_time;
1334 int peephole2_time;
1335 int sched2_time;
1336 int dbr_sched_time;
1337 int shorten_branch_time;
1338 int stack_reg_time;
1339 int final_time;
1340 int symout_time;
1341 int dump_time;
1342 int gc_time;
1343 int all_time;
1345 /* Return time used so far, in microseconds. */
1347 long
1348 get_run_time ()
1350 if (quiet_flag)
1351 return 0;
1353 #ifdef __BEOS__
1354 return 0;
1355 #else /* not BeOS */
1356 #if defined (_WIN32) && !defined (__CYGWIN__)
1357 if (clock() < 0)
1358 return 0;
1359 else
1360 return (clock() * 1000);
1361 #else /* not _WIN32 */
1362 #ifdef _SC_CLK_TCK
1364 static int tick;
1365 struct tms tms;
1366 if (tick == 0)
1367 tick = 1000000 / sysconf(_SC_CLK_TCK);
1368 times (&tms);
1369 return (tms.tms_utime + tms.tms_stime) * tick;
1371 #else
1372 #ifdef USG
1374 struct tms tms;
1375 # if HAVE_SYSCONF && defined _SC_CLK_TCK
1376 # define TICKS_PER_SECOND sysconf (_SC_CLK_TCK) /* POSIX 1003.1-1996 */
1377 # else
1378 # ifdef CLK_TCK
1379 # define TICKS_PER_SECOND CLK_TCK /* POSIX 1003.1-1988; obsolescent */
1380 # else
1381 # define TICKS_PER_SECOND HZ /* traditional UNIX */
1382 # endif
1383 # endif
1384 times (&tms);
1385 return (tms.tms_utime + tms.tms_stime) * (1000000 / TICKS_PER_SECOND);
1387 #else
1388 #ifndef VMS
1390 struct rusage rusage;
1391 getrusage (0, &rusage);
1392 return (rusage.ru_utime.tv_sec * 1000000 + rusage.ru_utime.tv_usec
1393 + rusage.ru_stime.tv_sec * 1000000 + rusage.ru_stime.tv_usec);
1395 #else /* VMS */
1397 struct
1399 int proc_user_time;
1400 int proc_system_time;
1401 int child_user_time;
1402 int child_system_time;
1403 } vms_times;
1404 times ((void *) &vms_times);
1405 return (vms_times.proc_user_time + vms_times.proc_system_time) * 10000;
1407 #endif /* VMS */
1408 #endif /* USG */
1409 #endif /* _SC_CLK_TCK */
1410 #endif /* _WIN32 */
1411 #endif /* __BEOS__ */
1414 #define TIMEVAR(VAR, BODY) \
1415 do { int otime = get_run_time (); BODY; VAR += get_run_time () - otime; } while (0)
1417 void
1418 print_time (str, total)
1419 const char *str;
1420 int total;
1422 fprintf (stderr,
1423 "time in %s: %d.%06d (%.0f%%)\n",
1424 str, total / 1000000, total % 1000000,
1425 (double)total / (double)all_time * 100.0);
1428 /* Count an error or warning. Return 1 if the message should be printed. */
1431 count_error (warningp)
1432 int warningp;
1434 if (warningp && inhibit_warnings)
1435 return 0;
1437 if (warningp && !warnings_are_errors)
1438 warningcount++;
1439 else
1441 static int warning_message = 0;
1443 if (warningp && !warning_message)
1445 notice ("%s: warnings being treated as errors\n", progname);
1446 warning_message = 1;
1448 errorcount++;
1451 return 1;
1454 /* Print a fatal error message. NAME is the text.
1455 Also include a system error message based on `errno'. */
1457 void
1458 pfatal_with_name (name)
1459 const char *name;
1461 fprintf (stderr, "%s: ", progname);
1462 perror (name);
1463 exit (FATAL_EXIT_CODE);
1466 void
1467 fatal_io_error (name)
1468 const char *name;
1470 notice ("%s: %s: I/O error\n", progname, name);
1471 exit (FATAL_EXIT_CODE);
1474 /* This is the default decl_printable_name function. */
1476 static const char *
1477 decl_name (decl, verbosity)
1478 tree decl;
1479 int verbosity ATTRIBUTE_UNUSED;
1481 return IDENTIFIER_POINTER (DECL_NAME (decl));
1484 /* Mark P for GC. Also mark main_input_filename and input_filename. */
1485 static void
1486 mark_file_stack (p)
1487 void *p;
1489 struct file_stack *stack = *(struct file_stack **)p;
1491 /* We're only called for input_file_stack, so we can mark the current
1492 input_filename here as well. */
1493 ggc_mark_string (main_input_filename);
1494 ggc_mark_string (input_filename);
1496 while (stack)
1498 ggc_mark_string (stack->name);
1499 stack = stack->next;
1503 static int need_error_newline;
1505 /* Function of last error message;
1506 more generally, function such that if next error message is in it
1507 then we don't have to mention the function name. */
1508 static tree last_error_function = NULL;
1510 /* Used to detect when input_file_stack has changed since last described. */
1511 static int last_error_tick;
1513 /* Called when the start of a function definition is parsed,
1514 this function prints on stderr the name of the function. */
1516 void
1517 announce_function (decl)
1518 tree decl;
1520 if (! quiet_flag)
1522 if (rtl_dump_and_exit)
1523 fprintf (stderr, "%s ", IDENTIFIER_POINTER (DECL_NAME (decl)));
1524 else
1525 fprintf (stderr, " %s", (*decl_printable_name) (decl, 2));
1526 fflush (stderr);
1527 need_error_newline = 1;
1528 last_error_function = current_function_decl;
1532 /* The default function to print out name of current function that caused
1533 an error. */
1535 void
1536 default_print_error_function (file)
1537 const char *file;
1539 if (last_error_function != current_function_decl)
1541 if (file)
1542 fprintf (stderr, "%s: ", file);
1544 if (current_function_decl == NULL)
1545 notice ("At top level:\n");
1546 else
1547 notice ((TREE_CODE (TREE_TYPE (current_function_decl)) == METHOD_TYPE
1548 ? "In method `%s':\n"
1549 : "In function `%s':\n"),
1550 (*decl_printable_name) (current_function_decl, 2));
1552 last_error_function = current_function_decl;
1556 /* Called by report_error_function to print out function name.
1557 * Default may be overridden by language front-ends. */
1559 void (*print_error_function) PROTO((const char *)) =
1560 default_print_error_function;
1562 /* Prints out, if necessary, the name of the current function
1563 that caused an error. Called from all error and warning functions.
1564 We ignore the FILE parameter, as it cannot be relied upon. */
1566 void
1567 report_error_function (file)
1568 const char *file ATTRIBUTE_UNUSED;
1570 struct file_stack *p;
1572 if (need_error_newline)
1574 fprintf (stderr, "\n");
1575 need_error_newline = 0;
1578 if (input_file_stack && input_file_stack->next != 0
1579 && input_file_stack_tick != last_error_tick)
1581 for (p = input_file_stack->next; p; p = p->next)
1582 notice ((p == input_file_stack->next
1583 ? "In file included from %s:%d"
1584 : ",\n from %s:%d"),
1585 p->name, p->line);
1586 fprintf (stderr, ":\n");
1587 last_error_tick = input_file_stack_tick;
1590 (*print_error_function) (input_filename);
1593 /* Print a message. */
1595 static void
1596 vnotice (file, msgid, ap)
1597 FILE *file;
1598 const char *msgid;
1599 va_list ap;
1601 vfprintf (file, _(msgid), ap);
1604 static void
1605 notice VPROTO((const char *msgid, ...))
1607 #ifndef ANSI_PROTOTYPES
1608 char *msgid;
1609 #endif
1610 va_list ap;
1612 VA_START (ap, msgid);
1614 #ifndef ANSI_PROTOTYPES
1615 msgid = va_arg (ap, char *);
1616 #endif
1618 vnotice (stderr, msgid, ap);
1619 va_end (ap);
1622 void
1623 fnotice VPROTO((FILE *file, const char *msgid, ...))
1625 #ifndef ANSI_PROTOTYPES
1626 FILE *file;
1627 const char *msgid;
1628 #endif
1629 va_list ap;
1631 VA_START (ap, msgid);
1633 #ifndef ANSI_PROTOTYPES
1634 file = va_arg (ap, FILE *);
1635 msgid = va_arg (ap, const char *);
1636 #endif
1638 vnotice (file, msgid, ap);
1639 va_end (ap);
1642 /* Report FILE and LINE (or program name), and optionally just WARN. */
1644 static void
1645 report_file_and_line (file, line, warn)
1646 const char *file;
1647 int line;
1648 int warn;
1650 if (file)
1651 fprintf (stderr, "%s:%d: ", file, line);
1652 else
1653 fprintf (stderr, "%s: ", progname);
1655 if (warn)
1656 notice ("warning: ");
1659 /* Print a message. */
1661 static void
1662 vmessage (prefix, msgid, ap)
1663 const char *prefix;
1664 const char *msgid;
1665 va_list ap;
1667 if (prefix)
1668 fprintf (stderr, "%s: ", prefix);
1670 vfprintf (stderr, msgid, ap);
1673 /* Print a message relevant to line LINE of file FILE. */
1675 static void
1676 v_message_with_file_and_line (file, line, warn, msgid, ap)
1677 const char *file;
1678 int line;
1679 int warn;
1680 const char *msgid;
1681 va_list ap;
1683 report_file_and_line (file, line, warn);
1684 vnotice (stderr, msgid, ap);
1685 fputc ('\n', stderr);
1688 /* Print a message relevant to the given DECL. */
1690 static void
1691 v_message_with_decl (decl, warn, msgid, ap)
1692 tree decl;
1693 int warn;
1694 const char *msgid;
1695 va_list ap;
1697 const char *p;
1699 report_file_and_line (DECL_SOURCE_FILE (decl),
1700 DECL_SOURCE_LINE (decl), warn);
1702 /* Do magic to get around lack of varargs support for insertion
1703 of arguments into existing list. We know that the decl is first;
1704 we ass_u_me that it will be printed with "%s". */
1706 for (p = _(msgid); *p; ++p)
1708 if (*p == '%')
1710 if (*(p + 1) == '%')
1711 ++p;
1712 else if (*(p + 1) != 's')
1713 abort ();
1714 else
1715 break;
1719 if (p > _(msgid)) /* Print the left-hand substring. */
1721 char fmt[sizeof "%.255s"];
1722 long width = p - _(msgid);
1724 if (width > 255L) width = 255L; /* arbitrary */
1725 sprintf (fmt, "%%.%lds", width);
1726 fprintf (stderr, fmt, _(msgid));
1729 if (*p == '%') /* Print the name. */
1731 const char *n = (DECL_NAME (decl)
1732 ? (*decl_printable_name) (decl, 2)
1733 : "((anonymous))");
1734 fputs (n, stderr);
1735 while (*p)
1737 ++p;
1738 if (ISALPHA (*(p - 1) & 0xFF))
1739 break;
1743 if (*p) /* Print the rest of the message. */
1744 vmessage ((char *)NULL, p, ap);
1746 fputc ('\n', stderr);
1749 /* Figure file and line of the given INSN. */
1751 static void
1752 file_and_line_for_asm (insn, pfile, pline)
1753 rtx insn;
1754 char **pfile;
1755 int *pline;
1757 rtx body = PATTERN (insn);
1758 rtx asmop;
1760 /* Find the (or one of the) ASM_OPERANDS in the insn. */
1761 if (GET_CODE (body) == SET && GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
1762 asmop = SET_SRC (body);
1763 else if (GET_CODE (body) == ASM_OPERANDS)
1764 asmop = body;
1765 else if (GET_CODE (body) == PARALLEL
1766 && GET_CODE (XVECEXP (body, 0, 0)) == SET)
1767 asmop = SET_SRC (XVECEXP (body, 0, 0));
1768 else if (GET_CODE (body) == PARALLEL
1769 && GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
1770 asmop = XVECEXP (body, 0, 0);
1771 else
1772 asmop = NULL;
1774 if (asmop)
1776 *pfile = ASM_OPERANDS_SOURCE_FILE (asmop);
1777 *pline = ASM_OPERANDS_SOURCE_LINE (asmop);
1779 else
1781 *pfile = input_filename;
1782 *pline = lineno;
1786 /* Report an error at line LINE of file FILE. */
1788 static void
1789 v_error_with_file_and_line (file, line, msgid, ap)
1790 const char *file;
1791 int line;
1792 const char *msgid;
1793 va_list ap;
1795 count_error (0);
1796 report_error_function (file);
1797 v_message_with_file_and_line (file, line, 0, msgid, ap);
1800 void
1801 error_with_file_and_line VPROTO((const char *file, int line,
1802 const char *msgid, ...))
1804 #ifndef ANSI_PROTOTYPES
1805 const char *file;
1806 int line;
1807 const char *msgid;
1808 #endif
1809 va_list ap;
1811 VA_START (ap, msgid);
1813 #ifndef ANSI_PROTOTYPES
1814 file = va_arg (ap, const char *);
1815 line = va_arg (ap, int);
1816 msgid = va_arg (ap, const char *);
1817 #endif
1819 v_error_with_file_and_line (file, line, msgid, ap);
1820 va_end (ap);
1823 /* Report an error at the declaration DECL.
1824 MSGID is a format string which uses %s to substitute the declaration
1825 name; subsequent substitutions are a la printf. */
1827 static void
1828 v_error_with_decl (decl, msgid, ap)
1829 tree decl;
1830 const char *msgid;
1831 va_list ap;
1833 count_error (0);
1834 report_error_function (DECL_SOURCE_FILE (decl));
1835 v_message_with_decl (decl, 0, msgid, ap);
1838 void
1839 error_with_decl VPROTO((tree decl, const char *msgid, ...))
1841 #ifndef ANSI_PROTOTYPES
1842 tree decl;
1843 const char *msgid;
1844 #endif
1845 va_list ap;
1847 VA_START (ap, msgid);
1849 #ifndef ANSI_PROTOTYPES
1850 decl = va_arg (ap, tree);
1851 msgid = va_arg (ap, const char *);
1852 #endif
1854 v_error_with_decl (decl, msgid, ap);
1855 va_end (ap);
1858 /* Report an error at the line number of the insn INSN.
1859 This is used only when INSN is an `asm' with operands,
1860 and each ASM_OPERANDS records its own source file and line. */
1862 static void
1863 v_error_for_asm (insn, msgid, ap)
1864 rtx insn;
1865 const char *msgid;
1866 va_list ap;
1868 char *file;
1869 int line;
1871 count_error (0);
1872 file_and_line_for_asm (insn, &file, &line);
1873 report_error_function (file);
1874 v_message_with_file_and_line (file, line, 0, msgid, ap);
1877 void
1878 error_for_asm VPROTO((rtx insn, const char *msgid, ...))
1880 #ifndef ANSI_PROTOTYPES
1881 rtx insn;
1882 const char *msgid;
1883 #endif
1884 va_list ap;
1886 VA_START (ap, msgid);
1888 #ifndef ANSI_PROTOTYPES
1889 insn = va_arg (ap, rtx);
1890 msgid = va_arg (ap, const char *);
1891 #endif
1893 v_error_for_asm (insn, msgid, ap);
1894 va_end (ap);
1897 /* Report an error at the current line number. */
1899 static void
1900 verror (msgid, ap)
1901 const char *msgid;
1902 va_list ap;
1904 v_error_with_file_and_line (input_filename, lineno, msgid, ap);
1907 void
1908 error VPROTO((const char *msgid, ...))
1910 #ifndef ANSI_PROTOTYPES
1911 const char *msgid;
1912 #endif
1913 va_list ap;
1915 VA_START (ap, msgid);
1917 #ifndef ANSI_PROTOTYPES
1918 msgid = va_arg (ap, const char *);
1919 #endif
1921 verror (msgid, ap);
1922 va_end (ap);
1925 /* Report a fatal error at the current line number. Allow a front end to
1926 intercept the message. */
1928 static void (*fatal_function) PROTO ((const char *, va_list));
1930 /* Set the function to call when a fatal error occurs. */
1932 void
1933 set_fatal_function (f)
1934 void (*f) PROTO ((const char *, va_list));
1936 fatal_function = f;
1939 static void
1940 vfatal (msgid, ap)
1941 const char *msgid;
1942 va_list ap;
1944 if (fatal_function != 0)
1945 (*fatal_function) (_(msgid), ap);
1947 verror (msgid, ap);
1948 exit (FATAL_EXIT_CODE);
1951 void
1952 fatal VPROTO((const char *msgid, ...))
1954 #ifndef ANSI_PROTOTYPES
1955 const char *msgid;
1956 #endif
1957 va_list ap;
1959 VA_START (ap, msgid);
1961 #ifndef ANSI_PROTOTYPES
1962 msgid = va_arg (ap, const char *);
1963 #endif
1965 vfatal (msgid, ap);
1966 va_end (ap);
1969 void
1970 _fatal_insn (msgid, insn, file, line, function)
1971 const char *msgid;
1972 rtx insn;
1973 const char *file;
1974 int line;
1975 const char *function;
1977 error (msgid);
1978 debug_rtx (insn);
1979 fancy_abort (file, line, function);
1982 void
1983 _fatal_insn_not_found (insn, file, line, function)
1984 rtx insn;
1985 const char *file;
1986 int line;
1987 const char *function;
1989 if (INSN_CODE (insn) < 0)
1990 _fatal_insn ("Unrecognizable insn:", insn, file, line, function);
1991 else
1992 _fatal_insn ("Insn does not satisfy its constraints:",
1993 insn, file, line, function);
1996 /* Report a warning at line LINE of file FILE. */
1998 static void
1999 v_warning_with_file_and_line (file, line, msgid, ap)
2000 const char *file;
2001 int line;
2002 const char *msgid;
2003 va_list ap;
2005 if (count_error (1))
2007 report_error_function (file);
2008 v_message_with_file_and_line (file, line, 1, msgid, ap);
2012 void
2013 warning_with_file_and_line VPROTO((const char *file, int line,
2014 const char *msgid, ...))
2016 #ifndef ANSI_PROTOTYPES
2017 const char *file;
2018 int line;
2019 const char *msgid;
2020 #endif
2021 va_list ap;
2023 VA_START (ap, msgid);
2025 #ifndef ANSI_PROTOTYPES
2026 file = va_arg (ap, const char *);
2027 line = va_arg (ap, int);
2028 msgid = va_arg (ap, const char *);
2029 #endif
2031 v_warning_with_file_and_line (file, line, msgid, ap);
2032 va_end (ap);
2035 /* Report a warning at the declaration DECL.
2036 MSGID is a format string which uses %s to substitute the declaration
2037 name; subsequent substitutions are a la printf. */
2039 static void
2040 v_warning_with_decl (decl, msgid, ap)
2041 tree decl;
2042 const char *msgid;
2043 va_list ap;
2045 if (count_error (1))
2047 report_error_function (DECL_SOURCE_FILE (decl));
2048 v_message_with_decl (decl, 1, msgid, ap);
2052 void
2053 warning_with_decl VPROTO((tree decl, const char *msgid, ...))
2055 #ifndef ANSI_PROTOTYPES
2056 tree decl;
2057 const char *msgid;
2058 #endif
2059 va_list ap;
2061 VA_START (ap, msgid);
2063 #ifndef ANSI_PROTOTYPES
2064 decl = va_arg (ap, tree);
2065 msgid = va_arg (ap, const char *);
2066 #endif
2068 v_warning_with_decl (decl, msgid, ap);
2069 va_end (ap);
2072 /* Report a warning at the line number of the insn INSN.
2073 This is used only when INSN is an `asm' with operands,
2074 and each ASM_OPERANDS records its own source file and line. */
2076 static void
2077 v_warning_for_asm (insn, msgid, ap)
2078 rtx insn;
2079 const char *msgid;
2080 va_list ap;
2082 if (count_error (1))
2084 char *file;
2085 int line;
2087 file_and_line_for_asm (insn, &file, &line);
2088 report_error_function (file);
2089 v_message_with_file_and_line (file, line, 1, msgid, ap);
2093 void
2094 warning_for_asm VPROTO((rtx insn, const char *msgid, ...))
2096 #ifndef ANSI_PROTOTYPES
2097 rtx insn;
2098 const char *msgid;
2099 #endif
2100 va_list ap;
2102 VA_START (ap, msgid);
2104 #ifndef ANSI_PROTOTYPES
2105 insn = va_arg (ap, rtx);
2106 msgid = va_arg (ap, const char *);
2107 #endif
2109 v_warning_for_asm (insn, msgid, ap);
2110 va_end (ap);
2113 /* Report a warning at the current line number. */
2115 static void
2116 vwarning (msgid, ap)
2117 const char *msgid;
2118 va_list ap;
2120 v_warning_with_file_and_line (input_filename, lineno, msgid, ap);
2123 void
2124 warning VPROTO((const char *msgid, ...))
2126 #ifndef ANSI_PROTOTYPES
2127 const char *msgid;
2128 #endif
2129 va_list ap;
2131 VA_START (ap, msgid);
2133 #ifndef ANSI_PROTOTYPES
2134 msgid = va_arg (ap, const char *);
2135 #endif
2137 vwarning (msgid, ap);
2138 va_end (ap);
2141 /* These functions issue either warnings or errors depending on
2142 -pedantic-errors. */
2144 static void
2145 vpedwarn (msgid, ap)
2146 const char *msgid;
2147 va_list ap;
2149 if (flag_pedantic_errors)
2150 verror (msgid, ap);
2151 else
2152 vwarning (msgid, ap);
2155 void
2156 pedwarn VPROTO((const char *msgid, ...))
2158 #ifndef ANSI_PROTOTYPES
2159 const char *msgid;
2160 #endif
2161 va_list ap;
2163 VA_START (ap, msgid);
2165 #ifndef ANSI_PROTOTYPES
2166 msgid = va_arg (ap, const char *);
2167 #endif
2169 vpedwarn (msgid, ap);
2170 va_end (ap);
2173 static void
2174 v_pedwarn_with_decl (decl, msgid, ap)
2175 tree decl;
2176 const char *msgid;
2177 va_list ap;
2179 /* We don't want -pedantic-errors to cause the compilation to fail from
2180 "errors" in system header files. Sometimes fixincludes can't fix what's
2181 broken (eg: unsigned char bitfields - fixing it may change the alignment
2182 which will cause programs to mysteriously fail because the C library
2183 or kernel uses the original layout). There's no point in issuing a
2184 warning either, it's just unnecessary noise. */
2186 if (! DECL_IN_SYSTEM_HEADER (decl))
2188 if (flag_pedantic_errors)
2189 v_error_with_decl (decl, msgid, ap);
2190 else
2191 v_warning_with_decl (decl, msgid, ap);
2195 void
2196 pedwarn_with_decl VPROTO((tree decl, const char *msgid, ...))
2198 #ifndef ANSI_PROTOTYPES
2199 tree decl;
2200 const char *msgid;
2201 #endif
2202 va_list ap;
2204 VA_START (ap, msgid);
2206 #ifndef ANSI_PROTOTYPES
2207 decl = va_arg (ap, tree);
2208 msgid = va_arg (ap, const char *);
2209 #endif
2211 v_pedwarn_with_decl (decl, msgid, ap);
2212 va_end (ap);
2215 static void
2216 v_pedwarn_with_file_and_line (file, line, msgid, ap)
2217 const char *file;
2218 int line;
2219 const char *msgid;
2220 va_list ap;
2222 if (flag_pedantic_errors)
2223 v_error_with_file_and_line (file, line, msgid, ap);
2224 else
2225 v_warning_with_file_and_line (file, line, msgid, ap);
2228 void
2229 pedwarn_with_file_and_line VPROTO((const char *file, int line,
2230 const char *msgid, ...))
2232 #ifndef ANSI_PROTOTYPES
2233 const char *file;
2234 int line;
2235 const char *msgid;
2236 #endif
2237 va_list ap;
2239 VA_START (ap, msgid);
2241 #ifndef ANSI_PROTOTYPES
2242 file = va_arg (ap, const char *);
2243 line = va_arg (ap, int);
2244 msgid = va_arg (ap, const char *);
2245 #endif
2247 v_pedwarn_with_file_and_line (file, line, msgid, ap);
2248 va_end (ap);
2251 /* Apologize for not implementing some feature. */
2253 static void
2254 vsorry (msgid, ap)
2255 const char *msgid;
2256 va_list ap;
2258 sorrycount++;
2259 if (input_filename)
2260 fprintf (stderr, "%s:%d: ", input_filename, lineno);
2261 else
2262 fprintf (stderr, "%s: ", progname);
2263 notice ("sorry, not implemented: ");
2264 vnotice (stderr, msgid, ap);
2265 fputc ('\n', stderr);
2268 void
2269 sorry VPROTO((const char *msgid, ...))
2271 #ifndef ANSI_PROTOTYPES
2272 const char *msgid;
2273 #endif
2274 va_list ap;
2276 VA_START (ap, msgid);
2278 #ifndef ANSI_PROTOTYPES
2279 msgid = va_arg (ap, const char *);
2280 #endif
2282 vsorry (msgid, ap);
2283 va_end (ap);
2287 /* This calls abort and is used to avoid problems when abort if a macro.
2288 It is used when we need to pass the address of abort. */
2290 void
2291 do_abort ()
2293 abort ();
2296 /* When `malloc.c' is compiled with `rcheck' defined,
2297 it calls this function to report clobberage. */
2299 void
2300 botch (s)
2301 const char * s ATTRIBUTE_UNUSED;
2303 abort ();
2306 /* Return the logarithm of X, base 2, considering X unsigned,
2307 if X is a power of 2. Otherwise, returns -1.
2309 This should be used via the `exact_log2' macro. */
2312 exact_log2_wide (x)
2313 register unsigned HOST_WIDE_INT x;
2315 register int log = 0;
2316 /* Test for 0 or a power of 2. */
2317 if (x == 0 || x != (x & -x))
2318 return -1;
2319 while ((x >>= 1) != 0)
2320 log++;
2321 return log;
2324 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
2325 If X is 0, return -1.
2327 This should be used via the floor_log2 macro. */
2330 floor_log2_wide (x)
2331 register unsigned HOST_WIDE_INT x;
2333 register int log = -1;
2334 while (x != 0)
2335 log++,
2336 x >>= 1;
2337 return log;
2340 static int float_handler_set;
2341 int float_handled;
2342 jmp_buf float_handler;
2344 /* Signals actually come here. */
2346 static void
2347 float_signal (signo)
2348 /* If this is missing, some compilers complain. */
2349 int signo ATTRIBUTE_UNUSED;
2351 if (float_handled == 0)
2352 abort ();
2353 #if defined (USG) || defined (hpux)
2354 signal (SIGFPE, float_signal); /* re-enable the signal catcher */
2355 #endif
2356 float_handled = 0;
2357 signal (SIGFPE, float_signal);
2358 longjmp (float_handler, 1);
2361 /* Specify where to longjmp to when a floating arithmetic error happens.
2362 If HANDLER is 0, it means don't handle the errors any more. */
2364 void
2365 set_float_handler (handler)
2366 jmp_buf handler;
2368 float_handled = (handler != 0);
2369 if (handler)
2370 bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler));
2372 if (float_handled && ! float_handler_set)
2374 signal (SIGFPE, float_signal);
2375 float_handler_set = 1;
2379 /* This is a wrapper function for code which might elicit an
2380 arithmetic exception. That code should be passed in as a function
2381 pointer FN, and one argument DATA. DATA is usually a struct which
2382 contains the real input and output for function FN. This function
2383 returns 0 (failure) if longjmp was called (i.e. an exception
2384 occured.) It returns 1 (success) otherwise. */
2387 do_float_handler (fn, data)
2388 void (*fn) PROTO ((PTR));
2389 PTR data;
2391 jmp_buf buf;
2393 if (setjmp (buf))
2395 /* We got here via longjmp() caused by an exception in function fn() */
2396 set_float_handler (NULL);
2397 return 0;
2400 set_float_handler (buf);
2401 (*fn)(data);
2402 set_float_handler (NULL);
2403 return 1;
2406 /* Specify, in HANDLER, where to longjmp to when a floating arithmetic
2407 error happens, pushing the previous specification into OLD_HANDLER.
2408 Return an indication of whether there was a previous handler in effect. */
2411 push_float_handler (handler, old_handler)
2412 jmp_buf handler, old_handler;
2414 int was_handled = float_handled;
2416 float_handled = 1;
2417 if (was_handled)
2418 memcpy ((char *) old_handler, (char *) float_handler,
2419 sizeof (float_handler));
2421 memcpy ((char *) float_handler, (char *) handler, sizeof (float_handler));
2422 return was_handled;
2425 /* Restore the previous specification of whether and where to longjmp to
2426 when a floating arithmetic error happens. */
2428 void
2429 pop_float_handler (handled, handler)
2430 int handled;
2431 jmp_buf handler;
2433 float_handled = handled;
2434 if (handled)
2435 bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler));
2438 /* Handler for SIGPIPE. */
2440 static void
2441 pipe_closed (signo)
2442 /* If this is missing, some compilers complain. */
2443 int signo ATTRIBUTE_UNUSED;
2445 fatal ("output pipe has been closed");
2448 /* Strip off a legitimate source ending from the input string NAME of
2449 length LEN. Rather than having to know the names used by all of
2450 our front ends, we strip off an ending of a period followed by
2451 up to five characters. (Java uses ".class".) */
2453 void
2454 strip_off_ending (name, len)
2455 char *name;
2456 int len;
2458 int i;
2459 for (i = 2; i < 6 && len > i; i++)
2461 if (name[len - i] == '.')
2463 name[len - i] = '\0';
2464 break;
2469 /* Output a quoted string. */
2471 void
2472 output_quoted_string (asm_file, string)
2473 FILE *asm_file;
2474 const char *string;
2476 #ifdef OUTPUT_QUOTED_STRING
2477 OUTPUT_QUOTED_STRING (asm_file, string);
2478 #else
2479 char c;
2481 putc ('\"', asm_file);
2482 while ((c = *string++) != 0)
2484 if (c == '\"' || c == '\\')
2485 putc ('\\', asm_file);
2486 putc (c, asm_file);
2488 putc ('\"', asm_file);
2489 #endif
2492 /* Output a file name in the form wanted by System V. */
2494 void
2495 output_file_directive (asm_file, input_name)
2496 FILE *asm_file;
2497 const char *input_name;
2499 int len = strlen (input_name);
2500 const char *na = input_name + len;
2502 /* NA gets INPUT_NAME sans directory names. */
2503 while (na > input_name)
2505 if (na[-1] == '/')
2506 break;
2507 #ifdef DIR_SEPARATOR
2508 if (na[-1] == DIR_SEPARATOR)
2509 break;
2510 #endif
2511 na--;
2514 #ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
2515 ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file, na);
2516 #else
2517 #ifdef ASM_OUTPUT_SOURCE_FILENAME
2518 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
2519 #else
2520 fprintf (asm_file, "\t.file\t");
2521 output_quoted_string (asm_file, na);
2522 fputc ('\n', asm_file);
2523 #endif
2524 #endif
2527 #ifdef ASM_IDENTIFY_LANGUAGE
2528 /* Routine to build language identifier for object file. */
2529 static void
2530 output_lang_identify (asm_out_file)
2531 FILE *asm_out_file;
2533 int len = strlen (lang_identify ()) + sizeof ("__gnu_compiled_") + 1;
2534 char *s = (char *) alloca (len);
2535 sprintf (s, "__gnu_compiled_%s", lang_identify ());
2536 ASM_OUTPUT_LABEL (asm_out_file, s);
2538 #endif
2540 /* Routine to open a dump file. */
2541 static void
2542 open_dump_file (suffix, function_name)
2543 const char *suffix;
2544 const char *function_name;
2546 char *dumpname;
2548 TIMEVAR
2549 (dump_time,
2551 dumpname = concat (dump_base_name, suffix, NULL);
2553 if (rtl_dump_file != NULL)
2554 fclose (rtl_dump_file);
2556 rtl_dump_file = fopen (dumpname, "a");
2558 if (rtl_dump_file == NULL)
2559 pfatal_with_name (dumpname);
2561 free (dumpname);
2563 if (function_name)
2564 fprintf (rtl_dump_file, "\n;; Function %s\n\n", function_name);
2567 return;
2570 /* Routine to close a dump file. */
2571 static void
2572 close_dump_file (func, insns)
2573 void (*func) PROTO ((FILE *, rtx));
2574 rtx insns;
2576 TIMEVAR
2577 (dump_time,
2579 if (func)
2580 func (rtl_dump_file, insns);
2582 fflush (rtl_dump_file);
2583 fclose (rtl_dump_file);
2585 rtl_dump_file = NULL;
2588 return;
2591 /* Routine to dump rtl into a file. */
2592 static void
2593 dump_rtl (suffix, decl, func, insns)
2594 const char *suffix;
2595 tree decl;
2596 void (*func) PROTO ((FILE *, rtx));
2597 rtx insns;
2599 open_dump_file (suffix, decl_printable_name (decl, 2));
2600 close_dump_file (func, insns);
2603 /* Routine to empty a dump file. */
2604 static void
2605 clean_dump_file (suffix)
2606 const char *suffix;
2608 char * const dumpname = concat (dump_base_name, suffix, NULL);
2610 rtl_dump_file = fopen (dumpname, "w");
2612 if (rtl_dump_file == NULL)
2613 pfatal_with_name (dumpname);
2615 free (dumpname);
2617 fclose (rtl_dump_file);
2618 rtl_dump_file = NULL;
2620 return;
2623 /* Do any final processing required for the declarations in VEC, of
2624 which there are LEN. We write out inline functions and variables
2625 that have been deferred until this point, but which are required.
2626 Returns non-zero if anything was put out. */
2628 wrapup_global_declarations (vec, len)
2629 tree *vec;
2630 int len;
2632 tree decl;
2633 int i;
2634 int reconsider;
2635 int output_something = 0;
2637 for (i = 0; i < len; i++)
2639 decl = vec[i];
2641 /* We're not deferring this any longer. */
2642 DECL_DEFER_OUTPUT (decl) = 0;
2644 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0
2645 && incomplete_decl_finalize_hook != 0)
2646 (*incomplete_decl_finalize_hook) (decl);
2649 /* Now emit any global variables or functions that we have been
2650 putting off. We need to loop in case one of the things emitted
2651 here references another one which comes earlier in the list. */
2654 reconsider = 0;
2655 for (i = 0; i < len; i++)
2657 decl = vec[i];
2659 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
2660 continue;
2662 /* Don't write out static consts, unless we still need them.
2664 We also keep static consts if not optimizing (for debugging),
2665 unless the user specified -fno-keep-static-consts.
2666 ??? They might be better written into the debug information.
2667 This is possible when using DWARF.
2669 A language processor that wants static constants to be always
2670 written out (even if it is not used) is responsible for
2671 calling rest_of_decl_compilation itself. E.g. the C front-end
2672 calls rest_of_decl_compilation from finish_decl.
2673 One motivation for this is that is conventional in some
2674 environments to write things like:
2675 static const char rcsid[] = "... version string ...";
2676 intending to force the string to be in the executable.
2678 A language processor that would prefer to have unneeded
2679 static constants "optimized away" would just defer writing
2680 them out until here. E.g. C++ does this, because static
2681 constants are often defined in header files.
2683 ??? A tempting alternative (for both C and C++) would be
2684 to force a constant to be written if and only if it is
2685 defined in a main file, as opposed to an include file. */
2687 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
2688 && (! TREE_READONLY (decl)
2689 || TREE_PUBLIC (decl)
2690 || (!optimize && flag_keep_static_consts)
2691 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
2693 reconsider = 1;
2694 rest_of_decl_compilation (decl, NULL_PTR, 1, 1);
2697 if (TREE_CODE (decl) == FUNCTION_DECL
2698 && DECL_INITIAL (decl) != 0
2699 && DECL_SAVED_INSNS (decl) != 0
2700 && (flag_keep_inline_functions
2701 || (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
2702 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
2704 reconsider = 1;
2705 temporary_allocation ();
2706 output_inline_function (decl);
2707 permanent_allocation (1);
2711 if (reconsider)
2712 output_something = 1;
2714 while (reconsider);
2716 return output_something;
2719 /* Issue appropriate warnings for the global declarations in VEC (of
2720 which there are LEN). Output debugging information for them. */
2721 void
2722 check_global_declarations (vec, len)
2723 tree *vec;
2724 int len;
2726 tree decl;
2727 int i;
2729 for (i = 0; i < len; i++)
2731 decl = vec[i];
2733 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
2734 && ! TREE_ASM_WRITTEN (decl))
2735 /* Cancel the RTL for this decl so that, if debugging info
2736 output for global variables is still to come,
2737 this one will be omitted. */
2738 DECL_RTL (decl) = NULL;
2740 /* Warn about any function
2741 declared static but not defined.
2742 We don't warn about variables,
2743 because many programs have static variables
2744 that exist only to get some text into the object file. */
2745 if (TREE_CODE (decl) == FUNCTION_DECL
2746 && (warn_unused
2747 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2748 && DECL_INITIAL (decl) == 0
2749 && DECL_EXTERNAL (decl)
2750 && ! DECL_ARTIFICIAL (decl)
2751 && ! TREE_PUBLIC (decl))
2753 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2754 pedwarn_with_decl (decl,
2755 "`%s' used but never defined");
2756 else
2757 warning_with_decl (decl,
2758 "`%s' declared `static' but never defined");
2759 /* This symbol is effectively an "extern" declaration now. */
2760 TREE_PUBLIC (decl) = 1;
2761 assemble_external (decl);
2764 /* Warn about static fns or vars defined but not used,
2765 but not about inline functions or static consts
2766 since defining those in header files is normal practice. */
2767 if (warn_unused
2768 && ((TREE_CODE (decl) == FUNCTION_DECL && ! DECL_INLINE (decl))
2769 || (TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
2770 && ! DECL_IN_SYSTEM_HEADER (decl)
2771 && ! DECL_EXTERNAL (decl)
2772 && ! TREE_PUBLIC (decl)
2773 && ! TREE_USED (decl)
2774 && (TREE_CODE (decl) == FUNCTION_DECL || ! DECL_REGISTER (decl))
2775 /* The TREE_USED bit for file-scope decls
2776 is kept in the identifier, to handle multiple
2777 external decls in different scopes. */
2778 && ! TREE_USED (DECL_NAME (decl)))
2779 warning_with_decl (decl, "`%s' defined but not used");
2781 #ifdef SDB_DEBUGGING_INFO
2782 /* The COFF linker can move initialized global vars to the end.
2783 And that can screw up the symbol ordering.
2784 By putting the symbols in that order to begin with,
2785 we avoid a problem. mcsun!unido!fauern!tumuc!pes@uunet.uu.net. */
2786 if (write_symbols == SDB_DEBUG && TREE_CODE (decl) == VAR_DECL
2787 && TREE_PUBLIC (decl) && DECL_INITIAL (decl)
2788 && ! DECL_EXTERNAL (decl)
2789 && DECL_RTL (decl) != 0)
2790 TIMEVAR (symout_time, sdbout_symbol (decl, 0));
2792 /* Output COFF information for non-global
2793 file-scope initialized variables. */
2794 if (write_symbols == SDB_DEBUG
2795 && TREE_CODE (decl) == VAR_DECL
2796 && DECL_INITIAL (decl)
2797 && ! DECL_EXTERNAL (decl)
2798 && DECL_RTL (decl) != 0
2799 && GET_CODE (DECL_RTL (decl)) == MEM)
2800 TIMEVAR (symout_time, sdbout_toplevel_data (decl));
2801 #endif /* SDB_DEBUGGING_INFO */
2802 #ifdef DWARF_DEBUGGING_INFO
2803 /* Output DWARF information for file-scope tentative data object
2804 declarations, file-scope (extern) function declarations (which
2805 had no corresponding body) and file-scope tagged type declarations
2806 and definitions which have not yet been forced out. */
2808 if (write_symbols == DWARF_DEBUG
2809 && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
2810 TIMEVAR (symout_time, dwarfout_file_scope_decl (decl, 1));
2811 #endif
2812 #ifdef DWARF2_DEBUGGING_INFO
2813 /* Output DWARF2 information for file-scope tentative data object
2814 declarations, file-scope (extern) function declarations (which
2815 had no corresponding body) and file-scope tagged type declarations
2816 and definitions which have not yet been forced out. */
2818 if (write_symbols == DWARF2_DEBUG
2819 && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
2820 TIMEVAR (symout_time, dwarf2out_decl (decl));
2821 #endif
2825 /* Compile an entire file of output from cpp, named NAME.
2826 Write a file of assembly output and various debugging dumps. */
2828 static void
2829 compile_file (name)
2830 char *name;
2832 tree globals;
2833 int start_time;
2835 int name_specified = name != 0;
2837 if (dump_base_name == 0)
2838 dump_base_name = name ? name : "gccdump";
2840 parse_time = 0;
2841 varconst_time = 0;
2842 integration_time = 0;
2843 jump_time = 0;
2844 cse_time = 0;
2845 gcse_time = 0;
2846 loop_time = 0;
2847 cse2_time = 0;
2848 branch_prob_time = 0;
2849 flow_time = 0;
2850 combine_time = 0;
2851 regmove_time = 0;
2852 sched_time = 0;
2853 local_alloc_time = 0;
2854 global_alloc_time = 0;
2855 flow2_time = 0;
2856 peephole2_time = 0;
2857 sched2_time = 0;
2858 dbr_sched_time = 0;
2859 shorten_branch_time = 0;
2860 stack_reg_time = 0;
2861 final_time = 0;
2862 symout_time = 0;
2863 dump_time = 0;
2865 /* Initialize data in various passes. */
2867 init_obstacks ();
2868 init_tree_codes ();
2869 name = init_parse (name);
2870 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
2871 || debug_info_level == DINFO_LEVEL_VERBOSE
2872 || flag_test_coverage
2873 || warn_notreached);
2874 init_regs ();
2875 init_decl_processing ();
2876 init_optabs ();
2877 init_stmt ();
2878 init_eh ();
2879 init_loop ();
2880 init_reload ();
2881 init_alias_once ();
2882 init_function_once ();
2883 init_stor_layout_once ();
2884 init_varasm_once ();
2886 /* The following initialization functions need to generate rtl, so
2887 provide a dummy function context for them. */
2888 init_dummy_function_start ();
2889 init_expmed ();
2890 init_expr_once ();
2891 if (flag_caller_saves)
2892 init_caller_save ();
2893 expand_dummy_function_end ();
2895 /* If auxiliary info generation is desired, open the output file.
2896 This goes in the same directory as the source file--unlike
2897 all the other output files. */
2898 if (flag_gen_aux_info)
2900 aux_info_file = fopen (aux_info_file_name, "w");
2901 if (aux_info_file == 0)
2902 pfatal_with_name (aux_info_file_name);
2905 /* Clear the dump files. */
2906 if (rtl_dump)
2907 clean_dump_file (".00.rtl");
2908 if (jump_opt_dump)
2910 clean_dump_file (".01.jump");
2911 if (graph_dump_format != no_graph)
2912 clean_graph_dump_file (dump_base_name, ".01.jump");
2914 if (cse_dump)
2916 clean_dump_file (".02.cse");
2917 if (graph_dump_format != no_graph)
2918 clean_graph_dump_file (dump_base_name, ".02.cse");
2920 if (addressof_dump)
2922 clean_dump_file (".03.addressof");
2923 if (graph_dump_format != no_graph)
2924 clean_graph_dump_file (dump_base_name, ".03.addressof");
2926 if (gcse_dump)
2928 clean_dump_file (".04.gcse");
2929 if (graph_dump_format != no_graph)
2930 clean_graph_dump_file (dump_base_name, ".04.gcse");
2932 if (loop_dump)
2934 clean_dump_file (".05.loop");
2935 if (graph_dump_format != no_graph)
2936 clean_graph_dump_file (dump_base_name, ".05.loop");
2938 if (cse2_dump)
2940 clean_dump_file (".06.cse2");
2941 if (graph_dump_format != no_graph)
2942 clean_graph_dump_file (dump_base_name, ".06.cse2");
2944 if (branch_prob_dump)
2946 clean_dump_file (".07.bp");
2947 if (graph_dump_format != no_graph)
2948 clean_graph_dump_file (dump_base_name, ".07.bp");
2950 if (flow_dump)
2952 clean_dump_file (".08.flow");
2953 if (graph_dump_format != no_graph)
2954 clean_graph_dump_file (dump_base_name, ".08.flow");
2956 if (combine_dump)
2958 clean_dump_file (".09.combine");
2959 if (graph_dump_format != no_graph)
2960 clean_graph_dump_file (dump_base_name, ".09.combine");
2962 if (regmove_dump)
2964 clean_dump_file (".10.regmove");
2965 if (graph_dump_format != no_graph)
2966 clean_graph_dump_file (dump_base_name, ".10.regmove");
2968 #ifdef INSN_SCHEDULING
2969 if (sched_dump)
2971 clean_dump_file (".11.sched");
2972 if (graph_dump_format != no_graph)
2973 clean_graph_dump_file (dump_base_name, ".11.sched");
2975 #endif
2976 if (local_reg_dump)
2978 clean_dump_file (".12.lreg");
2979 if (graph_dump_format != no_graph)
2980 clean_graph_dump_file (dump_base_name, ".12.lreg");
2982 if (global_reg_dump)
2984 clean_dump_file (".13.greg");
2985 if (graph_dump_format != no_graph)
2986 clean_graph_dump_file (dump_base_name, ".13.greg");
2988 if (flow2_dump)
2990 clean_dump_file (".14.flow2");
2991 if (graph_dump_format != no_graph)
2992 clean_graph_dump_file (dump_base_name, ".14.flow2");
2994 #ifdef HAVE_peephole2
2995 if (peephole2_dump)
2997 clean_dump_file (".15.peephole2");
2998 if (graph_dump_format != no_graph)
2999 clean_graph_dump_file (dump_base_name, ".15.peephole2");
3001 #endif
3002 #ifdef INSN_SCHEDULING
3003 if (sched2_dump)
3005 clean_dump_file (".16.sched2");
3006 if (graph_dump_format != no_graph)
3007 clean_graph_dump_file (dump_base_name, ".16.sched2");
3009 #endif
3010 if (jump2_opt_dump)
3012 clean_dump_file (".17.jump2");
3013 if (graph_dump_format != no_graph)
3014 clean_graph_dump_file (dump_base_name, ".17.jump2");
3016 #ifdef MACHINE_DEPENDENT_REORG
3017 if (mach_dep_reorg_dump)
3019 clean_dump_file (".18.mach");
3020 if (graph_dump_format != no_graph)
3021 clean_graph_dump_file (dump_base_name, ".18.mach");
3023 #endif
3024 #ifdef DELAY_SLOTS
3025 if (dbr_sched_dump)
3027 clean_dump_file (".19.dbr");
3028 if (graph_dump_format != no_graph)
3029 clean_graph_dump_file (dump_base_name, ".19.dbr");
3031 #endif
3032 #ifdef STACK_REGS
3033 if (stack_reg_dump)
3035 clean_dump_file (".20.stack");
3036 if (graph_dump_format != no_graph)
3037 clean_graph_dump_file (dump_base_name, ".20.stack");
3039 #endif
3041 /* Open assembler code output file. */
3043 if (flag_syntax_only)
3044 asm_out_file = NULL;
3045 else
3047 if (! name_specified && asm_file_name == 0)
3048 asm_out_file = stdout;
3049 else
3051 int len = strlen (dump_base_name);
3052 register char *dumpname = (char *) xmalloc (len + 6);
3053 strcpy (dumpname, dump_base_name);
3054 strip_off_ending (dumpname, len);
3055 strcat (dumpname, ".s");
3056 if (asm_file_name == 0)
3057 asm_file_name = xstrdup (dumpname);
3058 if (!strcmp (asm_file_name, "-"))
3059 asm_out_file = stdout;
3060 else
3061 asm_out_file = fopen (asm_file_name, "w");
3062 if (asm_out_file == 0)
3063 pfatal_with_name (asm_file_name);
3066 #ifdef IO_BUFFER_SIZE
3067 setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
3068 _IOFBF, IO_BUFFER_SIZE);
3069 #endif
3072 if (ggc_p)
3073 name = ggc_alloc_string (name, strlen (name));
3074 input_filename = name;
3076 /* Put an entry on the input file stack for the main input file. */
3077 input_file_stack
3078 = (struct file_stack *) xmalloc (sizeof (struct file_stack));
3079 input_file_stack->next = 0;
3080 input_file_stack->name = input_filename;
3082 /* Perform language-specific initialization.
3083 This may set main_input_filename. */
3084 lang_init ();
3086 /* If the input doesn't start with a #line, use the input name
3087 as the official input file name. */
3088 if (main_input_filename == 0)
3089 main_input_filename = name;
3091 if (flag_syntax_only)
3093 write_symbols = NO_DEBUG;
3094 profile_flag = 0;
3095 profile_block_flag = 0;
3097 else
3099 ASM_FILE_START (asm_out_file);
3101 #ifdef ASM_COMMENT_START
3102 if (flag_verbose_asm)
3104 /* Print the list of options in effect. */
3105 print_version (asm_out_file, ASM_COMMENT_START);
3106 print_switch_values (asm_out_file, 0, MAX_LINE,
3107 ASM_COMMENT_START, " ", "\n");
3108 /* Add a blank line here so it appears in assembler output but not
3109 screen output. */
3110 fprintf (asm_out_file, "\n");
3112 #endif
3114 /* Output something to inform GDB that this compilation was by GCC. */
3115 #ifndef ASM_IDENTIFY_GCC
3116 fprintf (asm_out_file, "gcc2_compiled.:\n");
3117 #else
3118 ASM_IDENTIFY_GCC (asm_out_file);
3119 #endif
3121 /* Output something to identify which front-end produced this file. */
3122 #ifdef ASM_IDENTIFY_LANGUAGE
3123 ASM_IDENTIFY_LANGUAGE (asm_out_file);
3124 #endif
3125 } /* ! flag_syntax_only */
3127 #ifndef ASM_OUTPUT_SECTION_NAME
3128 if (flag_function_sections)
3130 warning ("-ffunction-sections not supported for this target.");
3131 flag_function_sections = 0;
3133 if (flag_data_sections)
3135 warning ("-fdata-sections not supported for this target.");
3136 flag_data_sections = 0;
3138 #endif
3140 if (flag_function_sections
3141 && (profile_flag || profile_block_flag))
3143 warning ("-ffunction-sections disabled; it makes profiling impossible.");
3144 flag_function_sections = 0;
3147 #ifndef OBJECT_FORMAT_ELF
3148 if (flag_function_sections && write_symbols != NO_DEBUG)
3149 warning ("-ffunction-sections may affect debugging on some targets.");
3150 #endif
3152 /* ??? Note: There used to be a conditional here
3153 to call assemble_zeros without fail if DBX_DEBUGGING_INFO is defined.
3154 This was to guarantee separation between gcc_compiled. and
3155 the first function, for the sake of dbx on Suns.
3156 However, having the extra zero here confused the Emacs
3157 code for unexec, and might confuse other programs too.
3158 Therefore, I took out that change.
3159 In future versions we should find another way to solve
3160 that dbx problem. -- rms, 23 May 93. */
3162 /* Don't let the first function fall at the same address
3163 as gcc_compiled., if profiling. */
3164 if (profile_flag || profile_block_flag)
3166 /* It's best if we can write a nop here since some
3167 assemblers don't tolerate zeros in the text section. */
3168 output_asm_insn (get_insn_template (CODE_FOR_nop, NULL), NULL_PTR);
3171 /* If dbx symbol table desired, initialize writing it
3172 and output the predefined types. */
3173 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
3174 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
3175 TIMEVAR (symout_time, dbxout_init (asm_out_file, main_input_filename,
3176 getdecls ()));
3177 #endif
3178 #ifdef SDB_DEBUGGING_INFO
3179 if (write_symbols == SDB_DEBUG)
3180 TIMEVAR (symout_time, sdbout_init (asm_out_file, main_input_filename,
3181 getdecls ()));
3182 #endif
3183 #ifdef DWARF_DEBUGGING_INFO
3184 if (write_symbols == DWARF_DEBUG)
3185 TIMEVAR (symout_time, dwarfout_init (asm_out_file, main_input_filename));
3186 #endif
3187 #ifdef DWARF2_UNWIND_INFO
3188 if (dwarf2out_do_frame ())
3189 dwarf2out_frame_init ();
3190 #endif
3191 #ifdef DWARF2_DEBUGGING_INFO
3192 if (write_symbols == DWARF2_DEBUG)
3193 TIMEVAR (symout_time, dwarf2out_init (asm_out_file, main_input_filename));
3194 #endif
3196 /* Initialize yet another pass. */
3198 init_final (main_input_filename);
3199 init_branch_prob (dump_base_name);
3201 start_time = get_run_time ();
3203 /* Call the parser, which parses the entire file
3204 (calling rest_of_compilation for each function). */
3206 if (yyparse () != 0)
3208 if (errorcount == 0)
3209 notice ("Errors detected in input file (your bison.simple is out of date)\n");
3211 /* In case there were missing closebraces,
3212 get us back to the global binding level. */
3213 while (! global_bindings_p ())
3214 poplevel (0, 0, 0);
3217 /* Compilation is now finished except for writing
3218 what's left of the symbol table output. */
3220 parse_time += get_run_time () - start_time;
3222 parse_time -= integration_time;
3223 parse_time -= varconst_time;
3225 if (flag_syntax_only)
3226 goto finish_syntax;
3228 globals = getdecls ();
3230 /* Really define vars that have had only a tentative definition.
3231 Really output inline functions that must actually be callable
3232 and have not been output so far. */
3235 int len = list_length (globals);
3236 tree *vec = (tree *) alloca (sizeof (tree) * len);
3237 int i;
3238 tree decl;
3240 /* Process the decls in reverse order--earliest first.
3241 Put them into VEC from back to front, then take out from front. */
3243 for (i = 0, decl = globals; i < len; i++, decl = TREE_CHAIN (decl))
3244 vec[len - i - 1] = decl;
3246 wrapup_global_declarations (vec, len);
3248 /* This must occur after the loop to output deferred functions. Else
3249 the profiler initializer would not be emitted if all the functions
3250 in this compilation unit were deferred.
3252 output_func_start_profiler can not cause any additional functions or
3253 data to need to be output, so it need not be in the deferred function
3254 loop above. */
3255 output_func_start_profiler ();
3257 /* Now that all possible functions have been output, we can dump
3258 the exception table. */
3260 output_exception_table ();
3262 check_global_declarations (vec, len);
3265 /* Write out any pending weak symbol declarations. */
3267 weak_finish ();
3269 /* Do dbx symbols */
3270 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
3271 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
3272 TIMEVAR (symout_time,
3274 dbxout_finish (asm_out_file, main_input_filename);
3276 #endif
3278 #ifdef DWARF_DEBUGGING_INFO
3279 if (write_symbols == DWARF_DEBUG)
3280 TIMEVAR (symout_time,
3282 dwarfout_finish ();
3284 #endif
3286 #ifdef DWARF2_UNWIND_INFO
3287 if (dwarf2out_do_frame ())
3288 dwarf2out_frame_finish ();
3289 #endif
3291 #ifdef DWARF2_DEBUGGING_INFO
3292 if (write_symbols == DWARF2_DEBUG)
3293 TIMEVAR (symout_time,
3295 dwarf2out_finish ();
3297 #endif
3299 /* Output some stuff at end of file if nec. */
3301 end_final (dump_base_name);
3303 if (branch_prob_dump)
3304 open_dump_file (".07.bp", NULL);
3306 TIMEVAR (dump_time, end_branch_prob (rtl_dump_file));
3308 if (branch_prob_dump)
3309 close_dump_file (NULL, NULL_RTX);
3311 #ifdef ASM_FILE_END
3312 ASM_FILE_END (asm_out_file);
3313 #endif
3316 /* Language-specific end of compilation actions. */
3317 finish_syntax:
3318 lang_finish ();
3320 /* Close the dump files. */
3322 if (flag_gen_aux_info)
3324 fclose (aux_info_file);
3325 if (errorcount)
3326 unlink (aux_info_file_name);
3329 if (combine_dump)
3331 open_dump_file (".09.combine", NULL);
3332 TIMEVAR (dump_time, dump_combine_total_stats (rtl_dump_file));
3333 close_dump_file (NULL, NULL_RTX);
3336 /* Close non-debugging input and output files. Take special care to note
3337 whether fclose returns an error, since the pages might still be on the
3338 buffer chain while the file is open. */
3340 finish_parse ();
3342 if (! flag_syntax_only
3343 && (ferror (asm_out_file) != 0 || fclose (asm_out_file) != 0))
3344 fatal_io_error (asm_file_name);
3346 /* Do whatever is necessary to finish printing the graphs. */
3347 if (graph_dump_format != no_graph)
3349 if (jump_opt_dump)
3350 finish_graph_dump_file (dump_base_name, ".01.jump");
3351 if (cse_dump)
3352 finish_graph_dump_file (dump_base_name, ".02.cse");
3353 if (addressof_dump)
3354 finish_graph_dump_file (dump_base_name, ".03.addressof");
3355 if (gcse_dump)
3356 finish_graph_dump_file (dump_base_name, ".04.gcse");
3357 if (loop_dump)
3358 finish_graph_dump_file (dump_base_name, ".05.loop");
3359 if (cse2_dump)
3360 finish_graph_dump_file (dump_base_name, ".06.cse2");
3361 if (branch_prob_dump)
3362 finish_graph_dump_file (dump_base_name, ".07.bp");
3363 if (flow_dump)
3364 finish_graph_dump_file (dump_base_name, ".08.flow");
3365 if (combine_dump)
3366 finish_graph_dump_file (dump_base_name, ".09.combine");
3367 if (regmove_dump)
3368 finish_graph_dump_file (dump_base_name, ".10.regmove");
3369 #ifdef INSN_SCHEDULING
3370 if (sched_dump)
3371 finish_graph_dump_file (dump_base_name, ".11.sched");
3372 #endif
3373 if (local_reg_dump)
3374 finish_graph_dump_file (dump_base_name, ".12.lreg");
3375 if (global_reg_dump)
3376 finish_graph_dump_file (dump_base_name, ".13.greg");
3377 if (flow2_dump)
3378 finish_graph_dump_file (dump_base_name, ".14.flow2");
3379 #ifdef HAVE_peephole2
3380 if (flow2_dump)
3381 finish_graph_dump_file (dump_base_name, ".15.peephole2");
3382 #endif
3383 #ifdef INSN_SCHEDULING
3384 if (sched2_dump)
3385 finish_graph_dump_file (dump_base_name, ".16.sched2");
3386 #endif
3387 if (jump2_opt_dump)
3388 finish_graph_dump_file (dump_base_name, ".17.jump2");
3389 #ifdef MACHINE_DEPENDENT_REORG
3390 if (mach_dep_reorg_dump)
3391 finish_graph_dump_file (dump_base_name, ".18.mach");
3392 #endif
3393 #ifdef DELAY_SLOTS
3394 if (dbr_sched_dump)
3395 finish_graph_dump_file (dump_base_name, ".19.dbr");
3396 #endif
3397 #ifdef STACK_REGS
3398 if (stack_reg_dump)
3399 finish_graph_dump_file (dump_base_name, ".20.stack");
3400 #endif
3403 /* Free up memory for the benefit of leak detectors. */
3404 free_reg_info ();
3406 /* Print the times. */
3408 if (! quiet_flag)
3410 all_time = get_run_time ();
3412 fprintf (stderr,"\n");
3414 print_time ("parse", parse_time);
3415 print_time ("integration", integration_time);
3416 print_time ("jump", jump_time);
3417 print_time ("cse", cse_time);
3418 print_time ("gcse", gcse_time);
3419 print_time ("loop", loop_time);
3420 print_time ("cse2", cse2_time);
3421 print_time ("branch-prob", branch_prob_time);
3422 print_time ("flow", flow_time);
3423 print_time ("combine", combine_time);
3424 print_time ("regmove", regmove_time);
3425 #ifdef INSN_SCHEDULING
3426 print_time ("sched", sched_time);
3427 #endif
3428 print_time ("local-alloc", local_alloc_time);
3429 print_time ("global-alloc", global_alloc_time);
3430 print_time ("flow2", flow2_time);
3431 #ifdef HAVE_peephole2
3432 print_time ("peephole2", peephole2_time);
3433 #endif
3434 #ifdef INSN_SCHEDULING
3435 print_time ("sched2", sched2_time);
3436 #endif
3437 #ifdef DELAY_SLOTS
3438 print_time ("dbranch", dbr_sched_time);
3439 #endif
3440 print_time ("shorten-branch", shorten_branch_time);
3441 #ifdef STACK_REGS
3442 print_time ("stack-reg", stack_reg_time);
3443 #endif
3444 print_time ("final", final_time);
3445 print_time ("varconst", varconst_time);
3446 print_time ("symout", symout_time);
3447 print_time ("dump", dump_time);
3448 if (ggc_p)
3449 print_time ("gc", gc_time);
3453 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
3454 and TYPE_DECL nodes.
3456 This does nothing for local (non-static) variables, unless the
3457 variable is a register variable with an ASMSPEC. In that case, or
3458 if the variable is not an automatice, it sets up the RTL and
3459 outputs any assembler code (label definition, storage allocation
3460 and initialization).
3462 DECL is the declaration. If ASMSPEC is nonzero, it specifies
3463 the assembler symbol name to be used. TOP_LEVEL is nonzero
3464 if this declaration is not within a function. */
3466 void
3467 rest_of_decl_compilation (decl, asmspec, top_level, at_end)
3468 tree decl;
3469 const char *asmspec;
3470 int top_level;
3471 int at_end;
3473 /* Declarations of variables, and of functions defined elsewhere. */
3475 /* The most obvious approach, to put an #ifndef around where
3476 this macro is used, doesn't work since it's inside a macro call. */
3477 #ifndef ASM_FINISH_DECLARE_OBJECT
3478 #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP, END)
3479 #endif
3481 /* Forward declarations for nested functions are not "external",
3482 but we need to treat them as if they were. */
3483 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
3484 || TREE_CODE (decl) == FUNCTION_DECL)
3485 TIMEVAR (varconst_time,
3487 make_decl_rtl (decl, asmspec, top_level);
3488 /* Initialized extern variable exists to be replaced
3489 with its value, or represents something that will be
3490 output in another file. */
3491 if (! (TREE_CODE (decl) == VAR_DECL
3492 && DECL_EXTERNAL (decl) && TREE_READONLY (decl)
3493 && DECL_INITIAL (decl) != 0
3494 && DECL_INITIAL (decl) != error_mark_node))
3495 /* Don't output anything
3496 when a tentative file-scope definition is seen.
3497 But at end of compilation, do output code for them. */
3498 if (! (! at_end && top_level
3499 && (DECL_INITIAL (decl) == 0
3500 || DECL_INITIAL (decl) == error_mark_node)))
3501 assemble_variable (decl, top_level, at_end, 0);
3502 if (decl == last_assemble_variable_decl)
3504 ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
3505 top_level, at_end);
3508 else if (DECL_REGISTER (decl) && asmspec != 0)
3510 if (decode_reg_name (asmspec) >= 0)
3512 DECL_RTL (decl) = 0;
3513 make_decl_rtl (decl, asmspec, top_level);
3515 else
3516 error ("invalid register name `%s' for register variable", asmspec);
3518 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
3519 else if ((write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
3520 && TREE_CODE (decl) == TYPE_DECL)
3521 TIMEVAR (symout_time, dbxout_symbol (decl, 0));
3522 #endif
3523 #ifdef SDB_DEBUGGING_INFO
3524 else if (write_symbols == SDB_DEBUG && top_level
3525 && TREE_CODE (decl) == TYPE_DECL)
3526 TIMEVAR (symout_time, sdbout_symbol (decl, 0));
3527 #endif
3530 /* Called after finishing a record, union or enumeral type. */
3532 void
3533 rest_of_type_compilation (type, toplev)
3534 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO) || defined (SDB_DEBUGGING_INFO)
3535 tree type;
3536 int toplev;
3537 #else
3538 tree type ATTRIBUTE_UNUSED;
3539 int toplev ATTRIBUTE_UNUSED;
3540 #endif
3542 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
3543 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
3544 TIMEVAR (symout_time, dbxout_symbol (TYPE_STUB_DECL (type), !toplev));
3545 #endif
3546 #ifdef SDB_DEBUGGING_INFO
3547 if (write_symbols == SDB_DEBUG)
3548 TIMEVAR (symout_time, sdbout_symbol (TYPE_STUB_DECL (type), !toplev));
3549 #endif
3552 /* This is called from finish_function (within yyparse)
3553 after each top-level definition is parsed.
3554 It is supposed to compile that function or variable
3555 and output the assembler code for it.
3556 After we return, the tree storage is freed. */
3558 void
3559 rest_of_compilation (decl)
3560 tree decl;
3562 register rtx insns;
3563 int start_time = get_run_time ();
3564 int tem;
3565 int failure = 0;
3566 int rebuild_label_notes_after_reload;
3568 /* First, remove any notes we don't need. That will make iterating
3569 over the instruction sequence faster, and allow the garbage
3570 collector to reclaim the memory used by the notes. */
3571 remove_unncessary_notes ();
3573 /* If we are reconsidering an inline function
3574 at the end of compilation, skip the stuff for making it inline. */
3576 if (DECL_SAVED_INSNS (decl) == 0)
3578 int inlinable = 0;
3579 tree parent;
3580 const char *lose;
3582 /* If this is nested inside an inlined external function, pretend
3583 it was only declared. Since we cannot inline such functions,
3584 generating code for this one is not only not necessary but will
3585 confuse some debugging output writers. */
3586 for (parent = DECL_CONTEXT (current_function_decl);
3587 parent != 0; parent = DECL_CONTEXT (parent))
3588 if (TREE_CODE (parent) == FUNCTION_DECL
3589 && DECL_INLINE (parent) && DECL_EXTERNAL (parent))
3591 DECL_INITIAL (decl) = 0;
3592 goto exit_rest_of_compilation;
3595 /* If requested, consider whether to make this function inline. */
3596 if (DECL_INLINE (decl) || flag_inline_functions)
3597 TIMEVAR (integration_time,
3599 lose = function_cannot_inline_p (decl);
3600 if (lose || ! optimize)
3602 if (warn_inline && DECL_INLINE (decl))
3603 warning_with_decl (decl, lose);
3604 DECL_ABSTRACT_ORIGIN (decl) = 0;
3605 /* Don't really compile an extern inline function.
3606 If we can't make it inline, pretend
3607 it was only declared. */
3608 if (DECL_EXTERNAL (decl))
3610 DECL_INITIAL (decl) = 0;
3611 goto exit_rest_of_compilation;
3614 else
3615 /* ??? Note that this has the effect of making it look
3616 like "inline" was specified for a function if we choose
3617 to inline it. This isn't quite right, but it's
3618 probably not worth the trouble to fix. */
3619 inlinable = DECL_INLINE (decl) = 1;
3622 insns = get_insns ();
3624 /* Dump the rtl code if we are dumping rtl. */
3626 if (rtl_dump)
3628 open_dump_file (".00.rtl", decl_printable_name (decl, 2));
3630 if (DECL_SAVED_INSNS (decl))
3631 fprintf (rtl_dump_file, ";; (integrable)\n\n");
3633 close_dump_file (print_rtl, insns);
3636 /* If function is inline, and we don't yet know whether to
3637 compile it by itself, defer decision till end of compilation.
3638 finish_compilation will call rest_of_compilation again
3639 for those functions that need to be output. Also defer those
3640 functions that we are supposed to defer. */
3642 if (inlinable)
3643 DECL_DEFER_OUTPUT (decl) = 1;
3645 if (DECL_DEFER_OUTPUT (decl)
3646 || (DECL_INLINE (decl)
3647 && ((! TREE_PUBLIC (decl) && ! TREE_ADDRESSABLE (decl)
3648 && ! flag_keep_inline_functions)
3649 || DECL_EXTERNAL (decl))))
3651 DECL_DEFER_OUTPUT (decl) = 1;
3653 /* If -Wreturn-type, we have to do a bit of compilation.
3654 However, if we just fall through we will call
3655 save_for_inline_copying() which results in excessive
3656 memory use. Instead, we just want to call
3657 jump_optimize() to figure out whether or not we can fall
3658 off the end of the function; we do the minimum amount of
3659 work necessary to make that safe. And, we set optimize
3660 to zero to keep jump_optimize from working too hard. */
3661 if (warn_return_type)
3663 int saved_optimize = optimize;
3664 optimize = 0;
3665 find_exception_handler_labels ();
3666 jump_optimize (get_insns(), !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
3667 !JUMP_AFTER_REGSCAN);
3668 optimize = saved_optimize;
3671 #ifdef DWARF_DEBUGGING_INFO
3672 /* Generate the DWARF info for the "abstract" instance
3673 of a function which we may later generate inlined and/or
3674 out-of-line instances of. */
3675 if (write_symbols == DWARF_DEBUG)
3677 set_decl_abstract_flags (decl, 1);
3678 TIMEVAR (symout_time, dwarfout_file_scope_decl (decl, 0));
3679 set_decl_abstract_flags (decl, 0);
3681 #endif
3682 #ifdef DWARF2_DEBUGGING_INFO
3683 /* Generate the DWARF2 info for the "abstract" instance
3684 of a function which we may later generate inlined and/or
3685 out-of-line instances of. */
3686 if (write_symbols == DWARF2_DEBUG)
3688 set_decl_abstract_flags (decl, 1);
3689 TIMEVAR (symout_time, dwarf2out_decl (decl));
3690 set_decl_abstract_flags (decl, 0);
3692 #endif
3693 TIMEVAR (integration_time, save_for_inline_nocopy (decl));
3694 DECL_SAVED_INSNS (decl)->inlinable = inlinable;
3695 goto exit_rest_of_compilation;
3698 /* If specified extern inline but we aren't inlining it, we are
3699 done. This goes for anything that gets here with DECL_EXTERNAL
3700 set, not just things with DECL_INLINE. */
3701 if (DECL_EXTERNAL (decl))
3702 goto exit_rest_of_compilation;
3705 /* Initialize some variables used by the optimizers. */
3706 init_function_for_compilation ();
3708 if (! DECL_DEFER_OUTPUT (decl))
3709 TREE_ASM_WRITTEN (decl) = 1;
3711 /* Now that integrate will no longer see our rtl, we need not distinguish
3712 between the return value of this function and the return value of called
3713 functions. */
3714 rtx_equal_function_value_matters = 0;
3716 /* Don't return yet if -Wreturn-type; we need to do jump_optimize. */
3717 if ((rtl_dump_and_exit || flag_syntax_only) && !warn_return_type)
3719 goto exit_rest_of_compilation;
3722 /* Emit code to get eh context, if needed. */
3723 emit_eh_context ();
3725 #ifdef FINALIZE_PIC
3726 /* If we are doing position-independent code generation, now
3727 is the time to output special prologues and epilogues.
3728 We do not want to do this earlier, because it just clutters
3729 up inline functions with meaningless insns. */
3730 if (flag_pic)
3731 FINALIZE_PIC;
3732 #endif
3734 /* From now on, allocate rtl in current_obstack, not in saveable_obstack.
3735 Note that that may have been done above, in save_for_inline_copying.
3736 The call to resume_temporary_allocation near the end of this function
3737 goes back to the usual state of affairs. This must be done after
3738 we've built up any unwinders for exception handling, and done
3739 the FINALIZE_PIC work, if necessary. */
3741 rtl_in_current_obstack ();
3743 insns = get_insns ();
3745 /* Copy any shared structure that should not be shared. */
3747 unshare_all_rtl (insns);
3749 init_EXPR_INSN_LIST_cache ();
3751 #ifdef SETJMP_VIA_SAVE_AREA
3752 /* This must be performed before virutal register instantiation. */
3753 if (current_function_calls_alloca)
3754 optimize_save_area_alloca (insns);
3755 #endif
3757 /* Instantiate all virtual registers. */
3759 instantiate_virtual_regs (current_function_decl, get_insns ());
3761 /* See if we have allocated stack slots that are not directly addressable.
3762 If so, scan all the insns and create explicit address computation
3763 for all references to such slots. */
3764 /* fixup_stack_slots (); */
3766 /* Find all the EH handlers. */
3767 find_exception_handler_labels ();
3769 if (jump_opt_dump)
3770 open_dump_file (".01.jump", decl_printable_name (decl, 2));
3772 /* Always do one jump optimization pass to ensure that JUMP_LABEL fields
3773 are initialized and to compute whether control can drop off the end
3774 of the function. */
3775 TIMEVAR (jump_time, reg_scan (insns, max_reg_num (), 0));
3776 TIMEVAR (jump_time, jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
3777 JUMP_AFTER_REGSCAN));
3779 /* Now is when we stop if -fsyntax-only and -Wreturn-type. */
3780 if (rtl_dump_and_exit || flag_syntax_only || DECL_DEFER_OUTPUT (decl))
3781 goto exit_rest_of_compilation;
3783 /* Try to identify useless null pointer tests and delete them. */
3784 if (flag_delete_null_pointer_checks)
3785 TIMEVAR (jump_time, delete_null_pointer_checks (get_insns ()));
3787 /* Dump rtl code after jump, if we are doing that. */
3788 if (jump_opt_dump)
3789 close_dump_file (print_rtl, insns);
3791 if (ggc_p)
3792 ggc_collect ();
3794 /* Jump optimization, and the removal of NULL pointer checks, may
3795 have reduced the number of instructions substantially. CSE, and
3796 future passes, allocate arrays whose dimensions involve the maximum
3797 instruction UID, so if we can reduce the maximum UID we'll save big on
3798 memory. */
3799 renumber_insns ();
3801 /* Perform common subexpression elimination.
3802 Nonzero value from `cse_main' means that jumps were simplified
3803 and some code may now be unreachable, so do
3804 jump optimization again. */
3806 if (optimize > 0)
3808 if (cse_dump)
3809 open_dump_file (".02.cse", decl_printable_name (decl, 2));
3811 TIMEVAR (cse_time, reg_scan (insns, max_reg_num (), 1));
3813 if (flag_thread_jumps)
3814 TIMEVAR (jump_time, thread_jumps (insns, max_reg_num (), 1));
3816 TIMEVAR (cse_time, tem = cse_main (insns, max_reg_num (),
3817 0, rtl_dump_file));
3818 /* If we are not running the second CSE pass, then we are no longer
3819 expecting CSE to be run. */
3820 cse_not_expected = !flag_rerun_cse_after_loop;
3822 if (tem || optimize > 1)
3823 TIMEVAR (jump_time, jump_optimize (insns, !JUMP_CROSS_JUMP,
3824 !JUMP_NOOP_MOVES,
3825 !JUMP_AFTER_REGSCAN));
3827 /* Run this after jump optmizations remove all the unreachable code
3828 so that unreachable code will not keep values live. */
3829 TIMEVAR (cse_time, delete_trivially_dead_insns (insns, max_reg_num ()));
3831 /* Try to identify useless null pointer tests and delete them. */
3832 if (flag_delete_null_pointer_checks)
3833 TIMEVAR (jump_time, delete_null_pointer_checks (get_insns ()));
3835 /* Dump rtl code after cse, if we are doing that. */
3837 if (cse_dump)
3839 close_dump_file (print_rtl, insns);
3840 if (graph_dump_format != no_graph)
3841 print_rtl_graph_with_bb (dump_base_name, ".02.cse", insns);
3844 /* The second pass of jump optimization is likely to have
3845 removed a bunch more instructions. */
3846 renumber_insns ();
3849 purge_addressof (insns);
3850 reg_scan (insns, max_reg_num (), 1);
3852 if (addressof_dump)
3854 dump_rtl (".03.addressof", decl, print_rtl, insns);
3855 if (graph_dump_format != no_graph)
3856 print_rtl_graph_with_bb (dump_base_name, ".03.addressof", insns);
3859 if (ggc_p)
3860 ggc_collect ();
3862 /* Perform global cse. */
3864 if (optimize > 0 && flag_gcse)
3866 if (gcse_dump)
3867 open_dump_file (".04.gcse", decl_printable_name (decl, 2));
3869 TIMEVAR (gcse_time, tem = gcse_main (insns, rtl_dump_file));
3871 /* If gcse altered any jumps, rerun jump optimizations to clean
3872 things up. */
3873 if (tem)
3875 TIMEVAR (jump_time, jump_optimize (insns, !JUMP_CROSS_JUMP,
3876 !JUMP_NOOP_MOVES,
3877 !JUMP_AFTER_REGSCAN));
3880 if (gcse_dump)
3882 close_dump_file (print_rtl, insns);
3883 if (graph_dump_format != no_graph)
3884 print_rtl_graph_with_bb (dump_base_name, ".04.gcse", insns);
3887 if (ggc_p)
3888 ggc_collect ();
3890 /* Move constant computations out of loops. */
3892 if (optimize > 0)
3894 if (loop_dump)
3895 open_dump_file (".05.loop", decl_printable_name (decl, 2));
3897 TIMEVAR
3898 (loop_time,
3900 if (flag_rerun_loop_opt)
3902 /* We only want to perform unrolling once. */
3904 loop_optimize (insns, rtl_dump_file, 0, 0);
3907 /* The first call to loop_optimize makes some instructions
3908 trivially dead. We delete those instructions now in the
3909 hope that doing so will make the heuristics in loop work
3910 better and possibly speed up compilation. */
3911 delete_trivially_dead_insns (insns, max_reg_num ());
3913 /* The regscan pass is currently necessary as the alias
3914 analysis code depends on this information. */
3915 reg_scan (insns, max_reg_num (), 1);
3917 loop_optimize (insns, rtl_dump_file, flag_unroll_loops, 1);
3920 /* Dump rtl code after loop opt, if we are doing that. */
3922 if (loop_dump)
3924 close_dump_file (print_rtl, insns);
3925 if (graph_dump_format != no_graph)
3926 print_rtl_graph_with_bb (dump_base_name, ".05.loop", insns);
3929 if (ggc_p)
3930 ggc_collect ();
3933 /* ??? Well, nearly. If HAVE_conditional_arithmetic, jump_optimize
3934 has put off all if-conversion until "after CSE". If we put this
3935 off any longer we may miss out doing if-conversion entirely. */
3936 cse_not_expected = 1;
3938 if (optimize > 0)
3940 if (cse2_dump)
3941 open_dump_file (".06.cse2", decl_printable_name (decl, 2));
3943 if (flag_rerun_cse_after_loop)
3945 /* Running another jump optimization pass before the second
3946 cse pass sometimes simplifies the RTL enough to allow
3947 the second CSE pass to do a better job. Jump_optimize can change
3948 max_reg_num so we must rerun reg_scan afterwards.
3949 ??? Rework to not call reg_scan so often. */
3950 TIMEVAR (jump_time, reg_scan (insns, max_reg_num (), 0));
3951 TIMEVAR (jump_time, jump_optimize (insns, !JUMP_CROSS_JUMP,
3952 !JUMP_NOOP_MOVES,
3953 JUMP_AFTER_REGSCAN));
3955 TIMEVAR (cse2_time, reg_scan (insns, max_reg_num (), 0));
3956 TIMEVAR (cse2_time, tem = cse_main (insns, max_reg_num (),
3957 1, rtl_dump_file));
3958 if (tem)
3959 TIMEVAR (jump_time, jump_optimize (insns, !JUMP_CROSS_JUMP,
3960 !JUMP_NOOP_MOVES,
3961 !JUMP_AFTER_REGSCAN));
3964 if (flag_thread_jumps)
3966 /* This pass of jump threading straightens out code
3967 that was kinked by loop optimization. */
3968 TIMEVAR (jump_time, reg_scan (insns, max_reg_num (), 0));
3969 TIMEVAR (jump_time, thread_jumps (insns, max_reg_num (), 0));
3972 /* Dump rtl code after cse, if we are doing that. */
3974 if (cse2_dump)
3976 close_dump_file (print_rtl, insns);
3977 if (graph_dump_format != no_graph)
3978 print_rtl_graph_with_bb (dump_base_name, ".06.cse2", insns);
3981 if (ggc_p)
3982 ggc_collect ();
3985 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
3987 if (branch_prob_dump)
3988 open_dump_file (".07.bp", decl_printable_name (decl, 2));
3990 TIMEVAR
3991 (branch_prob_time,
3993 branch_prob (insns, rtl_dump_file);
3996 if (branch_prob_dump)
3998 close_dump_file (print_rtl, insns);
3999 if (graph_dump_format != no_graph)
4000 print_rtl_graph_with_bb (dump_base_name, ".07.bp", insns);
4003 if (ggc_p)
4004 ggc_collect ();
4007 /* Now we choose between stupid (pcc-like) register allocation
4008 (if we got the -noreg switch and not -opt)
4009 and smart register allocation. */
4011 if (optimize > 0) /* Stupid allocation probably won't work */
4012 obey_regdecls = 0; /* if optimizations being done. */
4014 regclass_init ();
4016 /* Print function header into flow dump now
4017 because doing the flow analysis makes some of the dump. */
4019 if (flow_dump)
4020 open_dump_file (".08.flow", decl_printable_name (decl, 2));
4022 if (obey_regdecls)
4024 TIMEVAR (flow_time,
4026 regclass (insns, max_reg_num ());
4027 stupid_life_analysis (insns, max_reg_num (),
4028 rtl_dump_file);
4031 else
4033 /* Do control and data flow analysis,
4034 and write some of the results to dump file. */
4036 TIMEVAR
4037 (flow_time,
4039 find_basic_blocks (insns, max_reg_num (), rtl_dump_file, 1);
4040 life_analysis (insns, max_reg_num (), rtl_dump_file, 1);
4043 if (warn_uninitialized || extra_warnings)
4045 uninitialized_vars_warning (DECL_INITIAL (decl));
4046 if (extra_warnings)
4047 setjmp_args_warning ();
4051 /* Dump rtl after flow analysis. */
4053 if (flow_dump)
4055 close_dump_file (print_rtl_with_bb, insns);
4056 if (graph_dump_format != no_graph)
4057 print_rtl_graph_with_bb (dump_base_name, ".08.flow", insns);
4060 if (ggc_p)
4061 ggc_collect ();
4063 /* The first life analysis pass has finished. From now on we can not
4064 generate any new pseudos. */
4065 no_new_pseudos = 1;
4067 /* If -opt, try combining insns through substitution. */
4069 if (optimize > 0)
4071 TIMEVAR (combine_time, combine_instructions (insns, max_reg_num ()));
4073 /* Dump rtl code after insn combination. */
4075 if (combine_dump)
4077 dump_rtl (".09.combine", decl, print_rtl_with_bb, insns);
4078 if (graph_dump_format != no_graph)
4079 print_rtl_graph_with_bb (dump_base_name, ".09.combine", insns);
4082 if (ggc_p)
4083 ggc_collect ();
4086 /* Register allocation pre-pass, to reduce number of moves
4087 necessary for two-address machines. */
4088 if (optimize > 0 && (flag_regmove || flag_expensive_optimizations))
4090 if (regmove_dump)
4091 open_dump_file (".10.regmove", decl_printable_name (decl, 2));
4093 TIMEVAR (regmove_time, regmove_optimize (insns, max_reg_num (),
4094 rtl_dump_file));
4096 if (regmove_dump)
4098 close_dump_file (print_rtl_with_bb, insns);
4099 if (graph_dump_format != no_graph)
4100 print_rtl_graph_with_bb (dump_base_name, ".10.regmove", insns);
4103 if (ggc_p)
4104 ggc_collect ();
4107 /* Print function header into sched dump now
4108 because doing the sched analysis makes some of the dump. */
4110 #ifdef INSN_SCHEDULING
4111 if (optimize > 0 && flag_schedule_insns)
4113 if (sched_dump)
4114 open_dump_file (".11.sched", decl_printable_name (decl, 2));
4116 /* Do control and data sched analysis,
4117 and write some of the results to dump file. */
4119 TIMEVAR (sched_time, schedule_insns (rtl_dump_file));
4121 /* Dump rtl after instruction scheduling. */
4123 if (sched_dump)
4125 close_dump_file (print_rtl_with_bb, insns);
4126 if (graph_dump_format != no_graph)
4127 print_rtl_graph_with_bb (dump_base_name, ".11.sched", insns);
4130 if (ggc_p)
4131 ggc_collect ();
4133 #endif
4135 /* Determine if the current function is a leaf before running reload
4136 since this can impact optimizations done by the prologue and
4137 epilogue thus changing register elimination offsets. */
4138 current_function_is_leaf = leaf_function_p ();
4140 /* Unless we did stupid register allocation,
4141 allocate pseudo-regs that are used only within 1 basic block.
4143 RUN_JUMP_AFTER_RELOAD records whether or not we need to rerun the
4144 jump optimizer after register allocation and reloading are finished. */
4146 if (!obey_regdecls)
4147 TIMEVAR (local_alloc_time,
4149 /* We recomputed reg usage as part of updating the rest
4150 of life info during sched. */
4151 if (! flag_schedule_insns)
4152 recompute_reg_usage (insns, ! optimize_size);
4153 regclass (insns, max_reg_num ());
4154 rebuild_label_notes_after_reload = local_alloc ();
4156 else
4157 rebuild_label_notes_after_reload = 0;
4159 /* Dump rtl code after allocating regs within basic blocks. */
4161 if (local_reg_dump)
4163 open_dump_file (".12.lreg", decl_printable_name (decl, 2));
4165 TIMEVAR (dump_time, dump_flow_info (rtl_dump_file));
4166 TIMEVAR (dump_time, dump_local_alloc (rtl_dump_file));
4168 close_dump_file (print_rtl_with_bb, insns);
4169 if (graph_dump_format != no_graph)
4170 print_rtl_graph_with_bb (dump_base_name, ".12.lreg", insns);
4173 if (ggc_p)
4174 ggc_collect ();
4176 if (global_reg_dump)
4177 open_dump_file (".13.greg", decl_printable_name (decl, 2));
4179 /* Unless we did stupid register allocation,
4180 allocate remaining pseudo-regs, then do the reload pass
4181 fixing up any insns that are invalid. */
4183 TIMEVAR (global_alloc_time,
4185 if (!obey_regdecls)
4186 failure = global_alloc (rtl_dump_file);
4187 else
4188 failure = reload (insns, 0, rtl_dump_file);
4192 if (failure)
4193 goto exit_rest_of_compilation;
4195 if (ggc_p)
4196 ggc_collect ();
4198 /* Do a very simple CSE pass over just the hard registers. */
4199 if (optimize > 0)
4200 reload_cse_regs (insns);
4202 /* Register allocation and reloading may have turned an indirect jump into
4203 a direct jump. If so, we must rebuild the JUMP_LABEL fields of
4204 jumping instructions. */
4205 if (rebuild_label_notes_after_reload)
4206 TIMEVAR (jump_time, rebuild_jump_labels (insns));
4208 /* On some machines, the prologue and epilogue code, or parts thereof,
4209 can be represented as RTL. Doing so lets us schedule insns between
4210 it and the rest of the code and also allows delayed branch
4211 scheduling to operate in the epilogue. */
4213 thread_prologue_and_epilogue_insns (insns);
4215 /* If optimizing and we are performing instruction scheduling after
4216 reload, then go ahead and split insns now since we are about to
4217 recompute flow information anyway.
4219 reload_cse_regs may expose more splitting opportunities, expecially
4220 for double-word operations. */
4221 if (optimize > 0 && flag_schedule_insns_after_reload)
4222 split_all_insns (0);
4224 if (global_reg_dump)
4226 TIMEVAR (dump_time, dump_global_regs (rtl_dump_file));
4227 close_dump_file (print_rtl_with_bb, insns);
4228 if (graph_dump_format != no_graph)
4229 print_rtl_graph_with_bb (dump_base_name, ".13.greg", insns);
4232 /* Re-create the death notes which were deleted during reload. */
4233 if (flow2_dump)
4234 open_dump_file (".14.flow2", decl_printable_name (decl, 2));
4236 if (optimize)
4238 TIMEVAR
4239 (flow2_time,
4241 find_basic_blocks (insns, max_reg_num (), rtl_dump_file, 1);
4242 life_analysis (insns, max_reg_num (), rtl_dump_file, 1);
4245 if (ggc_p)
4246 ggc_collect ();
4249 flow2_completed = 1;
4251 if (flow2_dump)
4253 close_dump_file (print_rtl_with_bb, insns);
4254 if (graph_dump_format != no_graph)
4255 print_rtl_graph_with_bb (dump_base_name, ".14.flow2", insns);
4258 #ifdef HAVE_peephole2
4259 if (optimize > 0 && flag_peephole2)
4261 if (peephole2_dump)
4262 open_dump_file (".15.peephole2", decl_printable_name (decl, 2));
4264 TIMEVAR (peephole2_time, peephole2_optimize (rtl_dump_file));
4266 if (peephole2_dump)
4268 close_dump_file (print_rtl_with_bb, insns);
4269 if (graph_dump_format != no_graph)
4270 print_rtl_graph_with_bb (dump_base_name, ".15.peephole2", insns);
4273 #endif
4275 #ifdef INSN_SCHEDULING
4276 if (optimize > 0 && flag_schedule_insns_after_reload)
4278 if (sched2_dump)
4279 open_dump_file (".16.sched2", decl_printable_name (decl, 2));
4281 /* Do control and data sched analysis again,
4282 and write some more of the results to dump file. */
4284 TIMEVAR (sched2_time, schedule_insns (rtl_dump_file));
4286 /* Dump rtl after post-reorder instruction scheduling. */
4288 if (sched2_dump)
4290 close_dump_file (print_rtl_with_bb, insns);
4291 if (graph_dump_format != no_graph)
4292 print_rtl_graph_with_bb (dump_base_name, ".16.sched2", insns);
4295 if (ggc_p)
4296 ggc_collect ();
4298 #endif
4300 #ifdef LEAF_REGISTERS
4301 current_function_uses_only_leaf_regs
4302 = optimize > 0 && only_leaf_regs_used () && leaf_function_p ();
4303 #endif
4305 /* One more attempt to remove jumps to .+1
4306 left by dead-store-elimination.
4307 Also do cross-jumping this time
4308 and delete no-op move insns. */
4310 if (optimize > 0)
4312 TIMEVAR (jump_time, jump_optimize (insns, JUMP_CROSS_JUMP,
4313 JUMP_NOOP_MOVES,
4314 !JUMP_AFTER_REGSCAN));
4316 /* Dump rtl code after jump, if we are doing that. */
4318 if (jump2_opt_dump)
4320 dump_rtl (".17.jump2", decl, print_rtl_with_bb, insns);
4321 if (graph_dump_format != no_graph)
4322 print_rtl_graph_with_bb (dump_base_name, ".17.jump2", insns);
4326 /* If a machine dependent reorganization is needed, call it. */
4327 #ifdef MACHINE_DEPENDENT_REORG
4328 if (mach_dep_reorg_dump)
4329 open_dump_file (".18.mach", decl_printable_name (decl, 2));
4331 MACHINE_DEPENDENT_REORG (insns);
4333 if (mach_dep_reorg_dump)
4335 close_dump_file (print_rtl_with_bb, insns);
4336 if (graph_dump_format != no_graph)
4337 print_rtl_graph_with_bb (dump_base_name, ".18.mach", insns);
4340 if (ggc_p)
4341 ggc_collect ();
4342 #endif
4344 /* If a scheduling pass for delayed branches is to be done,
4345 call the scheduling code. */
4347 #ifdef DELAY_SLOTS
4348 if (optimize > 0 && flag_delayed_branch)
4350 if (dbr_sched_dump)
4351 open_dump_file (".19.dbr", decl_printable_name (decl, 2));
4353 TIMEVAR
4354 (dbr_sched_time,
4356 dbr_schedule (insns, rtl_dump_file);
4359 if (dbr_sched_dump)
4361 close_dump_file (print_rtl_with_bb, insns);
4362 if (graph_dump_format != no_graph)
4363 print_rtl_graph_with_bb (dump_base_name, ".19.dbr", insns);
4367 if (ggc_p)
4368 ggc_collect ();
4369 #endif
4371 /* Shorten branches. */
4372 TIMEVAR (shorten_branch_time,
4374 shorten_branches (get_insns ());
4377 #ifdef STACK_REGS
4378 if (stack_reg_dump)
4379 open_dump_file (".20.stack", decl_printable_name (decl, 2));
4381 TIMEVAR (stack_reg_time, reg_to_stack (insns, rtl_dump_file));
4383 if (stack_reg_dump)
4385 close_dump_file (print_rtl_with_bb, insns);
4386 if (graph_dump_format != no_graph)
4387 print_rtl_graph_with_bb (dump_base_name, ".20.stack", insns);
4390 if (ggc_p)
4391 ggc_collect ();
4392 #endif
4394 /* Now turn the rtl into assembler code. */
4396 TIMEVAR (final_time,
4398 rtx x;
4399 char *fnname;
4401 /* Get the function's name, as described by its RTL.
4402 This may be different from the DECL_NAME name used
4403 in the source file. */
4405 x = DECL_RTL (decl);
4406 if (GET_CODE (x) != MEM)
4407 abort ();
4408 x = XEXP (x, 0);
4409 if (GET_CODE (x) != SYMBOL_REF)
4410 abort ();
4411 fnname = XSTR (x, 0);
4413 assemble_start_function (decl, fnname);
4414 final_start_function (insns, asm_out_file, optimize);
4415 final (insns, asm_out_file, optimize, 0);
4416 final_end_function (insns, asm_out_file, optimize);
4417 assemble_end_function (decl, fnname);
4418 if (! quiet_flag)
4419 fflush (asm_out_file);
4421 /* Release all memory allocated by flow. */
4422 free_basic_block_vars (0);
4424 /* Release all memory held by regsets now */
4425 regset_release_memory ();
4428 if (ggc_p)
4429 ggc_collect ();
4431 /* Write DBX symbols if requested */
4433 /* Note that for those inline functions where we don't initially
4434 know for certain that we will be generating an out-of-line copy,
4435 the first invocation of this routine (rest_of_compilation) will
4436 skip over this code by doing a `goto exit_rest_of_compilation;'.
4437 Later on, finish_compilation will call rest_of_compilation again
4438 for those inline functions that need to have out-of-line copies
4439 generated. During that call, we *will* be routed past here. */
4441 #ifdef DBX_DEBUGGING_INFO
4442 if (write_symbols == DBX_DEBUG)
4443 TIMEVAR (symout_time, dbxout_function (decl));
4444 #endif
4446 #ifdef DWARF_DEBUGGING_INFO
4447 if (write_symbols == DWARF_DEBUG)
4448 TIMEVAR (symout_time, dwarfout_file_scope_decl (decl, 0));
4449 #endif
4451 #ifdef DWARF2_DEBUGGING_INFO
4452 if (write_symbols == DWARF2_DEBUG)
4453 TIMEVAR (symout_time, dwarf2out_decl (decl));
4454 #endif
4456 exit_rest_of_compilation:
4458 free_bb_mem ();
4460 /* In case the function was not output,
4461 don't leave any temporary anonymous types
4462 queued up for sdb output. */
4463 #ifdef SDB_DEBUGGING_INFO
4464 if (write_symbols == SDB_DEBUG)
4465 sdbout_types (NULL_TREE);
4466 #endif
4468 reload_completed = 0;
4469 flow2_completed = 0;
4470 no_new_pseudos = 0;
4472 TIMEVAR (final_time,
4474 /* Clear out the insn_length contents now that they are no
4475 longer valid. */
4476 init_insn_lengths ();
4478 /* Clear out the real_constant_chain before some of the rtx's
4479 it runs through become garbage. */
4480 clear_const_double_mem ();
4482 /* Cancel the effect of rtl_in_current_obstack. */
4483 resume_temporary_allocation ();
4485 /* Show no temporary slots allocated. */
4486 init_temp_slots ();
4488 free_basic_block_vars (0);
4491 /* Make sure volatile mem refs aren't considered valid operands for
4492 arithmetic insns. We must call this here if this is a nested inline
4493 function, since the above code leaves us in the init_recog state
4494 (from final.c), and the function context push/pop code does not
4495 save/restore volatile_ok.
4497 ??? Maybe it isn't necessary for expand_start_function to call this
4498 anymore if we do it here? */
4500 init_recog_no_volatile ();
4502 /* We're done with this function. Free up memory if we can. */
4503 free_after_parsing (current_function);
4504 if (! DECL_DEFER_OUTPUT (decl))
4505 free_after_compilation (current_function);
4506 current_function = 0;
4508 if (ggc_p)
4509 ggc_collect ();
4511 /* The parsing time is all the time spent in yyparse
4512 *except* what is spent in this function. */
4514 parse_time -= get_run_time () - start_time;
4517 static void
4518 display_help ()
4520 int undoc;
4521 unsigned long i;
4522 const char * lang;
4524 #ifndef USE_CPPLIB
4525 printf ("Usage: %s input [switches]\n", progname);
4526 printf ("Switches:\n");
4527 #endif
4528 printf (" -ffixed-<register> Mark <register> as being unavailable to the compiler\n");
4529 printf (" -fcall-used-<register> Mark <register> as being corrupted by function calls\n");
4530 printf (" -fcall-saved-<register> Mark <register> as being preserved across functions\n");
4531 printf (" -finline-limit=<number> Limits the size of inlined functions to <number>\n");
4533 for (i = NUM_ELEM (f_options); i--;)
4535 const char * description = f_options[i].description;
4537 if (description != NULL && * description != 0)
4538 printf (" -f%-21s %s\n",
4539 f_options[i].string, description);
4542 printf (" -O[number] Set optimisation level to [number]\n");
4543 printf (" -Os Optimise for space rather than speed\n");
4544 printf (" -pedantic Issue warnings needed by strict compliance to ANSI C\n");
4545 printf (" -pedantic-errors Like -pedantic except that errors are produced\n");
4546 printf (" -w Suppress warnings\n");
4547 printf (" -W Enable extra warnings\n");
4549 for (i = NUM_ELEM (W_options); i--;)
4551 const char * description = W_options[i].description;
4553 if (description != NULL && * description != 0)
4554 printf (" -W%-21s %s\n",
4555 W_options[i].string, description);
4558 printf (" -Wid-clash-<num> Warn if 2 identifiers have the same first <num> chars\n");
4559 printf (" -Wlarger-than-<number> Warn if an object is larger than <number> bytes\n");
4560 printf (" -p Enable function profiling\n");
4561 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER)
4562 printf (" -a Enable block profiling \n");
4563 #endif
4564 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER) || defined FUNCTION_BLOCK_PROFILER_EXIT
4565 printf (" -ax Enable jump profiling \n");
4566 #endif
4567 printf (" -o <file> Place output into <file> \n");
4568 printf (" -G <number> Put global and static data smaller than <number>\n");
4569 printf (" bytes into a special section (on some targets)\n");
4571 for (i = NUM_ELEM (debug_args); i--;)
4573 if (debug_args[i].description != NULL)
4574 printf (" -g%-21s %s\n", debug_args[i].arg, debug_args[i].description);
4577 printf (" -aux-info <file> Emit declaration info into <file>.X\n");
4578 printf (" -quiet Do not display functions compiled or elapsed time\n");
4579 printf (" -version Display the compiler's version\n");
4580 printf (" -d[letters] Enable dumps from specific passes of the compiler\n");
4581 printf (" -dumpbase <file> Base name to be used for dumps from specific passes\n");
4582 #if defined INSN_SCHEDULING
4583 printf (" -sched-verbose=<number> Set the verbosity level of the scheduler\n");
4584 #endif
4585 printf (" --help Display this information\n");
4587 undoc = 0;
4588 lang = "language";
4590 /* Display descriptions of language specific options.
4591 If there is no description, note that there is an undocumented option.
4592 If the description is empty, do not display anything. (This allows
4593 options to be deliberately undocumented, for whatever reason).
4594 If the option string is missing, then this is a marker, indicating
4595 that the description string is in fact the name of a language, whose
4596 language specific options are to follow. */
4598 if (NUM_ELEM (documented_lang_options) > 1)
4600 printf ("\nLanguage specific options:\n");
4602 for (i = 0; i < NUM_ELEM (documented_lang_options); i++)
4604 const char * description = documented_lang_options[i].description;
4605 const char * option = documented_lang_options[i].option;
4607 if (description == NULL)
4609 undoc = 1;
4611 if (extra_warnings)
4612 printf (" %-23.23s [undocumented]\n", option);
4614 else if (* description == 0)
4615 continue;
4616 else if (option == NULL)
4618 if (undoc)
4619 printf
4620 ("\nThere are undocumented %s specific options as well.\n",
4621 lang);
4622 undoc = 0;
4624 printf ("\n Options for %s:\n", description);
4626 lang = description;
4628 else
4629 printf (" %-23.23s %s\n", option, description);
4633 if (undoc)
4634 printf ("\nThere are undocumented %s specific options as well.\n", lang);
4636 if (NUM_ELEM (target_switches) > 1
4637 #ifdef TARGET_OPTIONS
4638 || NUM_ELEM (target_options) > 1
4639 #endif
4642 int doc = 0;
4644 undoc = 0;
4646 printf ("\nTarget specific options:\n");
4648 for (i = NUM_ELEM (target_switches); i--;)
4650 const char * option = target_switches[i].name;
4651 const char * description = target_switches[i].description;
4653 if (option == NULL || * option == 0)
4654 continue;
4655 else if (description == NULL)
4657 undoc = 1;
4659 if (extra_warnings)
4660 printf (" -m%-21.21s [undocumented]\n", option);
4662 else if (* description != 0)
4663 doc += printf (" -m%-21.21s %s\n", option, description);
4666 #ifdef TARGET_OPTIONS
4667 for (i = NUM_ELEM (target_options); i--;)
4669 const char * option = target_options[i].prefix;
4670 const char * description = target_options[i].description;
4672 if (option == NULL || * option == 0)
4673 continue;
4674 else if (description == NULL)
4676 undoc = 1;
4678 if (extra_warnings)
4679 printf (" -m%-21.21s [undocumented]\n", option);
4681 else if (* description != 0)
4682 doc += printf (" -m%-21.21s %s\n", option, description);
4684 #endif
4685 if (undoc)
4687 if (doc)
4688 printf ("\nThere are undocumented target specific options as well.\n");
4689 else
4690 printf (" They exist, but they are not documented.\n");
4695 /* Parse a -d... comand line switch. */
4697 static void
4698 decode_d_option (arg)
4699 const char * arg;
4701 while (* arg)
4702 switch (* arg ++)
4704 case 'a':
4705 branch_prob_dump = 1;
4706 combine_dump = 1;
4707 #ifdef DELAY_SLOTS
4708 dbr_sched_dump = 1;
4709 #endif
4710 flow_dump = 1;
4711 flow2_dump = 1;
4712 global_reg_dump = 1;
4713 jump_opt_dump = 1;
4714 addressof_dump = 1;
4715 jump2_opt_dump = 1;
4716 local_reg_dump = 1;
4717 loop_dump = 1;
4718 regmove_dump = 1;
4719 rtl_dump = 1;
4720 cse_dump = 1;
4721 cse2_dump = 1;
4722 gcse_dump = 1;
4723 sched_dump = 1;
4724 sched2_dump = 1;
4725 #ifdef STACK_REGS
4726 stack_reg_dump = 1;
4727 #endif
4728 #ifdef MACHINE_DEPENDENT_REORG
4729 mach_dep_reorg_dump = 1;
4730 #endif
4731 peephole2_dump = 1;
4732 break;
4733 case 'A':
4734 flag_debug_asm = 1;
4735 break;
4736 case 'b':
4737 branch_prob_dump = 1;
4738 break;
4739 case 'c':
4740 combine_dump = 1;
4741 break;
4742 #ifdef DELAY_SLOTS
4743 case 'd':
4744 dbr_sched_dump = 1;
4745 break;
4746 #endif
4747 case 'f':
4748 flow_dump = 1;
4749 break;
4750 case 'F':
4751 addressof_dump = 1;
4752 break;
4753 case 'g':
4754 global_reg_dump = 1;
4755 break;
4756 case 'G':
4757 gcse_dump = 1;
4758 break;
4759 case 'j':
4760 jump_opt_dump = 1;
4761 break;
4762 case 'J':
4763 jump2_opt_dump = 1;
4764 break;
4765 #ifdef STACK_REGS
4766 case 'k':
4767 stack_reg_dump = 1;
4768 break;
4769 #endif
4770 case 'l':
4771 local_reg_dump = 1;
4772 break;
4773 case 'L':
4774 loop_dump = 1;
4775 break;
4776 case 'm':
4777 flag_print_mem = 1;
4778 break;
4779 #ifdef MACHINE_DEPENDENT_REORG
4780 case 'M':
4781 mach_dep_reorg_dump = 1;
4782 break;
4783 #endif
4784 case 'p':
4785 flag_print_asm_name = 1;
4786 break;
4787 case 'r':
4788 rtl_dump = 1;
4789 break;
4790 case 'R':
4791 sched2_dump = 1;
4792 break;
4793 case 's':
4794 cse_dump = 1;
4795 break;
4796 case 'S':
4797 sched_dump = 1;
4798 break;
4799 case 't':
4800 cse2_dump = 1;
4801 break;
4802 case 'N':
4803 regmove_dump = 1;
4804 break;
4805 case 'v':
4806 graph_dump_format = vcg;
4807 break;
4808 case 'w':
4809 flow2_dump = 1;
4810 break;
4811 case 'x':
4812 rtl_dump_and_exit = 1;
4813 break;
4814 case 'y':
4815 set_yydebug (1);
4816 break;
4817 case 'z':
4818 peephole2_dump = 1;
4819 break;
4820 case 'D': /* These are handled by the preprocessor. */
4821 case 'I':
4822 break;
4823 default:
4824 warning ("unrecognised gcc debugging option: %c", arg[-1]);
4825 break;
4829 /* Parse a -f... comand line switch. ARG is the value after the -f.
4830 It is safe to access 'ARG - 2' to generate the full switch name.
4831 Return the number of strings consumed. */
4833 static int
4834 decode_f_option (arg)
4835 const char * arg;
4837 int j;
4839 /* Search for the option in the table of binary f options. */
4840 for (j = sizeof (f_options) / sizeof (f_options[0]); j--;)
4842 if (!strcmp (arg, f_options[j].string))
4844 *f_options[j].variable = f_options[j].on_value;
4845 return 1;
4848 if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4849 && ! strcmp (arg + 3, f_options[j].string))
4851 *f_options[j].variable = ! f_options[j].on_value;
4852 return 1;
4856 if (!strncmp (arg, "inline-limit-", 13)
4857 || !strncmp (arg, "inline-limit=", 13))
4858 inline_max_insns =
4859 read_integral_parameter (arg + 13, arg - 2, inline_max_insns);
4860 #ifdef INSN_SCHEDULING
4861 else if (!strncmp (arg, "sched-verbose=", 14))
4862 fix_sched_param ("verbose", (const char *)(arg + 14));
4863 #endif
4864 else if (!strncmp (arg, "fixed-", 6))
4865 fix_register ((const char *)(arg + 6), 1, 1);
4866 else if (!strncmp (arg, "call-used-", 10))
4867 fix_register ((const char *)(arg + 10), 0, 1);
4868 else if (!strncmp (arg, "call-saved-", 11))
4869 fix_register ((const char *)(arg + 11), 0, 0);
4870 else if (!strncmp (arg, "align-loops=", 12))
4871 align_loops = read_integral_parameter (arg + 12, arg - 2, align_loops);
4872 else if (!strncmp (arg, "align-functions=", 16))
4873 align_functions =
4874 read_integral_parameter (arg + 16, arg - 2, align_functions);
4875 else if (!strncmp (arg, "align-jumps=", 12))
4876 align_jumps = read_integral_parameter (arg + 12, arg - 2, align_jumps);
4877 else if (!strncmp (arg, "align-labels=", 13))
4878 align_labels = read_integral_parameter (arg + 13, arg - 2, align_labels);
4879 else if (!strcmp (arg, "preprocessed"))
4880 /* Recognise this switch but do nothing. This prevents warnings
4881 about an unrecognised switch if cpplib has not been linked in. */
4883 else
4884 return 0;
4886 return 1;
4889 /* Parse a -W... comand line switch. ARG is the value after the -W.
4890 It is safe to access 'ARG - 2' to generate the full switch name.
4891 Return the number of strings consumed. */
4892 static int
4893 decode_W_option (arg)
4894 const char * arg;
4896 int j;
4898 /* Search for the option in the table of binary W options. */
4900 for (j = sizeof (W_options) / sizeof (W_options[0]); j--;)
4902 if (!strcmp (arg, W_options[j].string))
4904 *W_options[j].variable = W_options[j].on_value;
4905 return 1;
4908 if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4909 && ! strcmp (arg + 3, W_options[j].string))
4911 *W_options[j].variable = ! W_options[j].on_value;
4912 return 1;
4916 if (!strncmp (arg, "id-clash-", 9))
4918 const int id_clash_val = read_integral_parameter (arg + 9, arg - 2, -1);
4920 if (id_clash_val != -1)
4922 id_clash_len = id_clash_val;
4923 warn_id_clash = 1;
4926 else if (!strncmp (arg, "larger-than-", 12))
4928 const int larger_than_val =
4929 read_integral_parameter (arg + 12, arg - 2, -1);
4930 if (larger_than_val != -1)
4932 larger_than_size = larger_than_val;
4933 warn_larger_than = 1;
4936 else
4937 return 0;
4939 return 1;
4942 /* Parse a -g... comand line switch. ARG is the value after the -g.
4943 It is safe to access 'ARG - 2' to generate the full switch name.
4944 Return the number of strings consumed. */
4946 static int
4947 decode_g_option (arg)
4948 const char * arg;
4950 unsigned level;
4951 /* A lot of code assumes write_symbols == NO_DEBUG if the
4952 debugging level is 0 (thus -gstabs1 -gstabs0 would lose track
4953 of what debugging type has been selected). This records the
4954 selected type. It is an error to specify more than one
4955 debugging type. */
4956 static enum debug_info_type selected_debug_type = NO_DEBUG;
4957 /* Non-zero if debugging format has been explicitly set.
4958 -g and -ggdb don't explicitly set the debugging format so
4959 -gdwarf -g3 is equivalent to -gdwarf3. */
4960 static int type_explicitly_set_p = 0;
4961 /* Indexed by enum debug_info_type. */
4962 static const char * debug_type_names[] =
4964 "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff"
4967 /* The maximum admissible debug level value. */
4968 static const unsigned max_debug_level = 3;
4970 /* Look up ARG in the table. */
4971 for (da = debug_args; da->arg; da++)
4973 const int da_len = strlen (da->arg);
4975 if (da_len == 0 || ! strncmp (arg, da->arg, da_len))
4977 enum debug_info_type type = da->debug_type;
4978 const char * p = arg + da_len;
4980 if (*p && (*p < '0' || *p > '9'))
4981 continue;
4983 /* A debug flag without a level defaults to level 2.
4984 Note we do not want to call read_integral_parameter
4985 for that case since it will call atoi which
4986 will return zero.
4988 ??? We may want to generalize the interface to
4989 read_integral_parameter to better handle this case
4990 if this case shows up often. */
4991 if (*p)
4992 level = read_integral_parameter (p, 0, max_debug_level + 1);
4993 else
4994 level = 2;
4996 if (da_len > 1 && *p && !strncmp (arg, "dwarf", da_len))
4998 error ("use -gdwarf -g%d for DWARF v1, level %d",
4999 level, level);
5000 if (level == 2)
5001 error ("use -gdwarf-2 for DWARF v2");
5004 if (level > max_debug_level)
5006 warning ("\
5007 ignoring option `%s' due to invalid debug level specification",
5008 arg - 2);
5009 level = debug_info_level;
5012 if (type == NO_DEBUG)
5014 type = PREFERRED_DEBUGGING_TYPE;
5016 if (da_len > 1 && strncmp (arg, "gdb", da_len) == 0)
5018 #if defined (DWARF2_DEBUGGING_INFO) && !defined (LINKER_DOES_NOT_WORK_WITH_DWARF2)
5019 type = DWARF2_DEBUG;
5020 #else
5021 #ifdef DBX_DEBUGGING_INFO
5022 type = DBX_DEBUG;
5023 #endif
5024 #endif
5028 if (type == NO_DEBUG)
5029 warning ("`%s': unknown or unsupported -g option", arg - 2);
5031 /* Does it conflict with an already selected type? */
5032 if (type_explicitly_set_p
5033 /* -g/-ggdb don't conflict with anything */
5034 && da->debug_type != NO_DEBUG
5035 && type != selected_debug_type)
5036 warning ("`%s' ignored, conflicts with `-g%s'",
5037 arg - 2, debug_type_names[(int) selected_debug_type]);
5038 else
5040 /* If the format has already been set, -g/-ggdb
5041 only change the debug level. */
5042 if (type_explicitly_set_p && da->debug_type == NO_DEBUG)
5043 ; /* don't change debugging type */
5044 else
5046 selected_debug_type = type;
5047 type_explicitly_set_p = da->debug_type != NO_DEBUG;
5050 write_symbols = (level == 0
5051 ? NO_DEBUG
5052 : selected_debug_type);
5053 use_gnu_debug_info_extensions = da->use_extensions_p;
5054 debug_info_level = (enum debug_info_level) level;
5057 break;
5061 if (! da->arg)
5062 warning ("`%s': unknown or unsupported -g option", arg - 2);
5064 return 1;
5067 /* Decode the first argument in the argv as a language-independent option.
5068 Return the number of strings consumed. 'strings_processed' is the
5069 number of strings that have already been decoded in a language
5070 specific fashion before this function was invoked. */
5072 static unsigned
5073 independent_decode_option (argc, argv, strings_processed)
5074 int argc;
5075 char ** argv;
5076 unsigned strings_processed ATTRIBUTE_UNUSED;
5078 char * arg = argv[0];
5080 if (arg[0] != '-' || arg[1] == 0)
5082 if (arg[0] == '+')
5083 return 0;
5085 filename = arg;
5087 return 1;
5090 arg ++;
5092 if (!strcmp (arg, "-help"))
5094 display_help ();
5095 exit (0);
5098 if (* arg == 'Y')
5099 arg ++;
5101 switch (* arg)
5103 default:
5104 return 0;
5106 case 'O':
5107 /* Already been treated in main (). Do nothing. */
5108 break;
5110 case 'm':
5111 set_target_switch (arg + 1);
5112 break;
5114 case 'f':
5115 return decode_f_option (arg + 1);
5117 case 'g':
5118 return decode_g_option (arg + 1);
5120 case 'd':
5121 if (!strcmp (arg, "dumpbase"))
5123 if (argc == 1)
5124 return 0;
5126 dump_base_name = argv[1];
5127 return 2;
5129 else
5130 decode_d_option (arg + 1);
5131 break;
5133 case 'p':
5134 if (!strcmp (arg, "pedantic"))
5135 pedantic = 1;
5136 else if (!strcmp (arg, "pedantic-errors"))
5137 flag_pedantic_errors = pedantic = 1;
5138 else if (arg[1] == 0)
5139 profile_flag = 1;
5140 else
5141 return 0;
5142 break;
5144 case 'q':
5145 if (!strcmp (arg, "quiet"))
5146 quiet_flag = 1;
5147 else
5148 return 0;
5149 break;
5151 case 'v':
5152 if (!strcmp (arg, "version"))
5153 version_flag = 1;
5154 else
5155 return 0;
5156 break;
5158 case 'w':
5159 if (arg[1] == 0)
5160 inhibit_warnings = 1;
5161 else
5162 return 0;
5163 break;
5165 case 'W':
5166 if (arg[1] == 0)
5168 extra_warnings = 1;
5169 /* We save the value of warn_uninitialized, since if they put
5170 -Wuninitialized on the command line, we need to generate a
5171 warning about not using it without also specifying -O. */
5172 if (warn_uninitialized != 1)
5173 warn_uninitialized = 2;
5175 else
5176 return decode_W_option (arg + 1);
5177 break;
5179 case 'a':
5180 if (arg[1] == 0)
5182 #if !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
5183 warning ("`-a' option (basic block profile) not supported");
5184 #else
5185 profile_block_flag = (profile_block_flag < 2) ? 1 : 3;
5186 #endif
5188 else if (!strcmp (arg, "ax"))
5190 #if !defined (FUNCTION_BLOCK_PROFILER_EXIT) || !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
5191 warning ("`-ax' option (jump profiling) not supported");
5192 #else
5193 profile_block_flag = (!profile_block_flag
5194 || profile_block_flag == 2) ? 2 : 3;
5195 #endif
5197 else if (!strncmp (arg, "aux-info", 8))
5199 flag_gen_aux_info = 1;
5200 if (arg[8] == '\0')
5202 if (argc == 1)
5203 return 0;
5205 aux_info_file_name = argv[1];
5206 return 2;
5208 else
5209 aux_info_file_name = arg + 8;
5211 else
5212 return 0;
5213 break;
5215 case 'o':
5216 if (arg[1] == 0)
5218 if (argc == 1)
5219 return 0;
5221 asm_file_name = argv[1];
5222 return 2;
5224 return 0;
5226 case 'G':
5228 int g_switch_val;
5229 int return_val;
5231 if (arg[1] == 0)
5233 if (argc == 1)
5234 return 0;
5236 g_switch_val = read_integral_parameter (argv[1], 0, -1);
5237 return_val = 2;
5239 else
5241 g_switch_val = read_integral_parameter (arg + 1, 0, -1);
5242 return_val = 1;
5245 if (g_switch_val == -1)
5246 return_val = 0;
5247 else
5249 g_switch_set = TRUE;
5250 g_switch_value = g_switch_val;
5253 return return_val;
5257 return 1;
5260 /* Entry point of cc1/c++. Decode command args, then call compile_file.
5261 Exit code is 35 if can't open files, 34 if fatal error,
5262 33 if had nonfatal errors, else success. */
5264 extern int main PROTO ((int, char **));
5267 main (argc, argv)
5268 int argc;
5269 char **argv;
5271 register int i;
5272 char *p;
5274 /* save in case md file wants to emit args as a comment. */
5275 save_argc = argc;
5276 save_argv = argv;
5278 p = argv[0] + strlen (argv[0]);
5279 while (p != argv[0] && p[-1] != '/'
5280 #ifdef DIR_SEPARATOR
5281 && p[-1] != DIR_SEPARATOR
5282 #endif
5284 --p;
5285 progname = p;
5287 #if defined (RLIMIT_STACK) && defined (HAVE_GETRLIMIT) && defined (HAVE_SETRLIMIT)
5288 /* Get rid of any avoidable limit on stack size. */
5290 struct rlimit rlim;
5292 /* Set the stack limit huge so that alloca does not fail. */
5293 getrlimit (RLIMIT_STACK, &rlim);
5294 rlim.rlim_cur = rlim.rlim_max;
5295 setrlimit (RLIMIT_STACK, &rlim);
5297 #endif
5299 #ifdef HAVE_LC_MESSAGES
5300 setlocale (LC_MESSAGES, "");
5301 #endif
5302 (void) bindtextdomain (PACKAGE, localedir);
5303 (void) textdomain (PACKAGE);
5305 signal (SIGFPE, float_signal);
5307 #ifdef SIGPIPE
5308 signal (SIGPIPE, pipe_closed);
5309 #endif
5311 decl_printable_name = decl_name;
5312 lang_expand_expr = (lang_expand_expr_t) do_abort;
5314 /* Initialize whether `char' is signed. */
5315 flag_signed_char = DEFAULT_SIGNED_CHAR;
5316 #ifdef DEFAULT_SHORT_ENUMS
5317 /* Initialize how much space enums occupy, by default. */
5318 flag_short_enums = DEFAULT_SHORT_ENUMS;
5319 #endif
5321 /* Initialize the garbage-collector. */
5322 init_ggc ();
5323 ggc_add_root (&input_file_stack, 1, sizeof input_file_stack,
5324 &mark_file_stack);
5326 /* Perform language-specific options intialization. */
5327 lang_init_options ();
5329 /* Scan to see what optimization level has been specified. That will
5330 determine the default value of many flags. */
5331 for (i = 1; i < argc; i++)
5333 if (!strcmp (argv[i], "-O"))
5335 optimize = 1;
5336 optimize_size = 0;
5338 else if (argv[i][0] == '-' && argv[i][1] == 'O')
5340 /* Handle -Os, -O2, -O3, -O69, ... */
5341 char *p = &argv[i][2];
5343 if ((p[0] == 's') && (p[1] == 0))
5345 optimize_size = 1;
5347 /* Optimizing for size forces optimize to be 2. */
5348 optimize = 2;
5350 else
5352 const int optimize_val = read_integral_parameter (p, p - 2, -1);
5353 if (optimize_val != -1)
5355 optimize = optimize_val;
5356 optimize_size = 0;
5362 obey_regdecls = (optimize == 0);
5364 if (optimize >= 1)
5366 flag_defer_pop = 1;
5367 flag_thread_jumps = 1;
5368 #ifdef DELAY_SLOTS
5369 flag_delayed_branch = 1;
5370 #endif
5371 #ifdef CAN_DEBUG_WITHOUT_FP
5372 flag_omit_frame_pointer = 1;
5373 #endif
5376 if (optimize >= 2)
5378 flag_cse_follow_jumps = 1;
5379 flag_cse_skip_blocks = 1;
5380 flag_gcse = 1;
5381 flag_expensive_optimizations = 1;
5382 flag_strength_reduce = 1;
5383 flag_rerun_cse_after_loop = 1;
5384 flag_rerun_loop_opt = 1;
5385 flag_caller_saves = 1;
5386 flag_force_mem = 1;
5387 flag_peephole2 = 1;
5388 #ifdef INSN_SCHEDULING
5389 flag_schedule_insns = 1;
5390 flag_schedule_insns_after_reload = 1;
5391 #endif
5392 flag_regmove = 1;
5393 flag_strict_aliasing = 1;
5394 flag_delete_null_pointer_checks = 1;
5397 if (optimize >= 3)
5399 flag_inline_functions = 1;
5402 if (optimize < 2 || optimize_size)
5404 align_loops = 1;
5405 align_jumps = 1;
5406 align_labels = 1;
5407 align_functions = 1;
5410 /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
5411 modify it. */
5412 target_flags = 0;
5413 set_target_switch ("");
5415 #ifdef OPTIMIZATION_OPTIONS
5416 /* Allow default optimizations to be specified on a per-machine basis. */
5417 OPTIMIZATION_OPTIONS (optimize, optimize_size);
5418 #endif
5420 /* Initialize register usage now so switches may override. */
5421 init_reg_sets ();
5423 /* Perform normal command line switch decoding. */
5424 for (i = 1; i < argc;)
5426 unsigned lang_processed;
5427 unsigned indep_processed;
5429 /* Give the language a chance to decode the option for itself. */
5430 lang_processed = lang_decode_option (argc - i, argv + i);
5432 /* Now see if the option also has a language independent meaning.
5433 Some options are both language specific and language independent,
5434 eg --help. It is possible that there might be options that should
5435 only be decoded in a language independent way if the were not
5436 decoded in a langauge specific way, which is why 'lang_processed'
5437 is passed in. */
5438 indep_processed = independent_decode_option (argc - i, argv + i,
5439 lang_processed);
5441 if (lang_processed || indep_processed)
5442 i += (lang_processed > indep_processed
5443 ? lang_processed : indep_processed);
5444 else
5446 const char * option = NULL;
5447 const char * lang = NULL;
5448 unsigned int j;
5450 /* It is possible that the command line switch is not valid for the
5451 current language, but it is valid for another language. In order
5452 to be compatible with previous versions of the compiler (which
5453 did not issue an error message in this case) we check for this
5454 possibilty here. If we do find a match, then if extra_warnings
5455 is set we generate a warning message, otherwise we will just
5456 ignore the option. */
5457 for (j = 0; j < NUM_ELEM (documented_lang_options); j++)
5459 option = documented_lang_options[j].option;
5461 if (option == NULL)
5462 lang = documented_lang_options[j].description;
5463 else if (! strncmp (argv[i], option, strlen (option)))
5464 break;
5467 if (option)
5469 if (extra_warnings)
5471 warning ("Ignoring command line option '%s'", argv[i]);
5472 if (lang)
5473 warning ("\
5474 (It is valid for %s but not the selected langauge)", lang);
5477 else
5478 error ("Unrecognised option `%s'", argv[i]);
5480 i++;
5484 /* Checker uses the frame pointer. */
5485 if (flag_check_memory_usage)
5486 flag_omit_frame_pointer = 0;
5488 if (optimize == 0)
5490 /* Inlining does not work if not optimizing,
5491 so force it not to be done. */
5492 flag_no_inline = 1;
5493 warn_inline = 0;
5495 /* The c_decode_option and lang_decode_option functions set
5496 this to `2' if -Wall is used, so we can avoid giving out
5497 lots of errors for people who don't realize what -Wall does. */
5498 if (warn_uninitialized == 1)
5499 warning ("-Wuninitialized is not supported without -O");
5502 #ifdef OVERRIDE_OPTIONS
5503 /* Some machines may reject certain combinations of options. */
5504 OVERRIDE_OPTIONS;
5505 #endif
5507 if (exceptions_via_longjmp == 2)
5509 #ifdef DWARF2_UNWIND_INFO
5510 exceptions_via_longjmp = ! DWARF2_UNWIND_INFO;
5511 #else
5512 exceptions_via_longjmp = 1;
5513 #endif
5516 /* Set up the align_*_log variables, defaulting them to 1 if they
5517 were still unset. */
5518 if (align_loops <= 0) align_loops = 1;
5519 align_loops_log = floor_log2 (align_loops*2-1);
5520 if (align_jumps <= 0) align_jumps = 1;
5521 align_jumps_log = floor_log2 (align_jumps*2-1);
5522 if (align_labels <= 0) align_labels = 1;
5523 align_labels_log = floor_log2 (align_labels*2-1);
5524 if (align_functions <= 0) align_functions = 1;
5525 align_functions_log = floor_log2 (align_functions*2-1);
5527 if (profile_block_flag == 3)
5529 warning ("`-ax' and `-a' are conflicting options. `-a' ignored.");
5530 profile_block_flag = 2;
5533 /* Unrolling all loops implies that standard loop unrolling must also
5534 be done. */
5535 if (flag_unroll_all_loops)
5536 flag_unroll_loops = 1;
5537 /* Loop unrolling requires that strength_reduction be on also. Silently
5538 turn on strength reduction here if it isn't already on. Also, the loop
5539 unrolling code assumes that cse will be run after loop, so that must
5540 be turned on also. */
5541 if (flag_unroll_loops)
5543 flag_strength_reduce = 1;
5544 flag_rerun_cse_after_loop = 1;
5547 /* Warn about options that are not supported on this machine. */
5548 #ifndef INSN_SCHEDULING
5549 if (flag_schedule_insns || flag_schedule_insns_after_reload)
5550 warning ("instruction scheduling not supported on this target machine");
5551 #endif
5552 #ifndef DELAY_SLOTS
5553 if (flag_delayed_branch)
5554 warning ("this target machine does not have delayed branches");
5555 #endif
5557 user_label_prefix = USER_LABEL_PREFIX;
5558 if (flag_leading_underscore != -1)
5560 /* If the default prefix is more complicated than "" or "_",
5561 issue a warning and ignore this option. */
5562 if (user_label_prefix[0] == 0 ||
5563 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
5565 user_label_prefix = flag_leading_underscore ? "_" : "";
5567 else
5568 warning ("-f%sleading-underscore not supported on this target machine",
5569 flag_leading_underscore ? "" : "no-");
5572 /* If we are in verbose mode, write out the version and maybe all the
5573 option flags in use. */
5574 if (version_flag)
5576 print_version (stderr, "");
5577 if (! quiet_flag)
5578 print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
5581 compile_file (filename);
5583 #if !defined(OS2) && !defined(VMS) && (!defined(_WIN32) || defined (__CYGWIN__)) && !defined(__INTERIX)
5584 if (flag_print_mem)
5586 char *lim = (char *) sbrk (0);
5588 notice ("Data size %ld.\n", (long) (lim - (char *) &environ));
5589 fflush (stderr);
5591 #ifndef __MSDOS__
5592 #ifdef USG
5593 system ("ps -l 1>&2");
5594 #else /* not USG */
5595 system ("ps v");
5596 #endif /* not USG */
5597 #endif
5599 #endif /* ! OS2 && ! VMS && (! _WIN32 || CYGWIN) && ! __INTERIX */
5601 if (errorcount)
5602 return (FATAL_EXIT_CODE);
5603 if (sorrycount)
5604 return (FATAL_EXIT_CODE);
5605 return (SUCCESS_EXIT_CODE);
5608 /* Decode -m switches. */
5609 /* Decode the switch -mNAME. */
5611 static void
5612 set_target_switch (name)
5613 const char *name;
5615 register size_t j;
5616 int valid_target_option = 0;
5618 for (j = 0; j < sizeof target_switches / sizeof target_switches[0]; j++)
5619 if (!strcmp (target_switches[j].name, name))
5621 if (target_switches[j].value < 0)
5622 target_flags &= ~-target_switches[j].value;
5623 else
5624 target_flags |= target_switches[j].value;
5625 valid_target_option = 1;
5628 #ifdef TARGET_OPTIONS
5629 if (!valid_target_option)
5630 for (j = 0; j < sizeof target_options / sizeof target_options[0]; j++)
5632 int len = strlen (target_options[j].prefix);
5633 if (!strncmp (target_options[j].prefix, name, len))
5635 *target_options[j].variable = name + len;
5636 valid_target_option = 1;
5639 #endif
5641 if (!valid_target_option)
5642 error ("Invalid option `%s'", name);
5645 /* Print version information to FILE.
5646 Each line begins with INDENT (for the case where FILE is the
5647 assembler output file). */
5649 static void
5650 print_version (file, indent)
5651 FILE *file;
5652 const char *indent;
5654 #ifndef __VERSION__
5655 #define __VERSION__ "[?]"
5656 #endif
5657 fnotice (file,
5658 #ifdef __GNUC__
5659 "%s%s%s version %s (%s) compiled by GNU C version %s.\n"
5660 #else
5661 "%s%s%s version %s (%s) compiled by CC.\n"
5662 #endif
5663 , indent, *indent != 0 ? " " : "",
5664 language_string, version_string, TARGET_NAME, __VERSION__);
5667 /* Print an option value and return the adjusted position in the line.
5668 ??? We don't handle error returns from fprintf (disk full); presumably
5669 other code will catch a disk full though. */
5671 static int
5672 print_single_switch (file, pos, max, indent, sep, term, type, name)
5673 FILE *file;
5674 int pos, max;
5675 const char *indent, *sep, *term, *type, *name;
5677 /* The ultrix fprintf returns 0 on success, so compute the result we want
5678 here since we need it for the following test. */
5679 int len = strlen (sep) + strlen (type) + strlen (name);
5681 if (pos != 0
5682 && pos + len > max)
5684 fprintf (file, "%s", term);
5685 pos = 0;
5687 if (pos == 0)
5689 fprintf (file, "%s", indent);
5690 pos = strlen (indent);
5692 fprintf (file, "%s%s%s", sep, type, name);
5693 pos += len;
5694 return pos;
5697 /* Print active target switches to FILE.
5698 POS is the current cursor position and MAX is the size of a "line".
5699 Each line begins with INDENT and ends with TERM.
5700 Each switch is separated from the next by SEP. */
5702 static void
5703 print_switch_values (file, pos, max, indent, sep, term)
5704 FILE *file;
5705 int pos, max;
5706 const char *indent, *sep, *term;
5708 size_t j;
5709 char **p;
5711 /* Print the options as passed. */
5713 pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
5714 _("options passed: "), "");
5716 for (p = &save_argv[1]; *p != NULL; p++)
5717 if (**p == '-')
5719 /* Ignore these. */
5720 if (strcmp (*p, "-o") == 0)
5722 if (p[1] != NULL)
5723 p++;
5724 continue;
5726 if (strcmp (*p, "-quiet") == 0)
5727 continue;
5728 if (strcmp (*p, "-version") == 0)
5729 continue;
5730 if ((*p)[1] == 'd')
5731 continue;
5733 pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
5735 if (pos > 0)
5736 fprintf (file, "%s", term);
5738 /* Print the -f and -m options that have been enabled.
5739 We don't handle language specific options but printing argv
5740 should suffice. */
5742 pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
5743 _("options enabled: "), "");
5745 for (j = 0; j < sizeof f_options / sizeof f_options[0]; j++)
5746 if (*f_options[j].variable == f_options[j].on_value)
5747 pos = print_single_switch (file, pos, max, indent, sep, term,
5748 "-f", f_options[j].string);
5750 /* Print target specific options. */
5752 for (j = 0; j < sizeof target_switches / sizeof target_switches[0]; j++)
5753 if (target_switches[j].name[0] != '\0'
5754 && target_switches[j].value > 0
5755 && ((target_switches[j].value & target_flags)
5756 == target_switches[j].value))
5758 pos = print_single_switch (file, pos, max, indent, sep, term,
5759 "-m", target_switches[j].name);
5762 #ifdef TARGET_OPTIONS
5763 for (j = 0; j < sizeof target_options / sizeof target_options[0]; j++)
5764 if (*target_options[j].variable != NULL)
5766 char prefix[256];
5767 sprintf (prefix, "-m%s", target_options[j].prefix);
5768 pos = print_single_switch (file, pos, max, indent, sep, term,
5769 prefix, *target_options[j].variable);
5771 #endif
5773 fprintf (file, "%s", term);
5776 /* Record the beginning of a new source file, named FILENAME. */
5778 void
5779 debug_start_source_file (filename)
5780 register char *filename ATTRIBUTE_UNUSED;
5782 #ifdef DBX_DEBUGGING_INFO
5783 if (write_symbols == DBX_DEBUG)
5784 dbxout_start_new_source_file (filename);
5785 #endif
5786 #ifdef DWARF_DEBUGGING_INFO
5787 if (debug_info_level == DINFO_LEVEL_VERBOSE
5788 && write_symbols == DWARF_DEBUG)
5789 dwarfout_start_new_source_file (filename);
5790 #endif /* DWARF_DEBUGGING_INFO */
5791 #ifdef DWARF2_DEBUGGING_INFO
5792 if (debug_info_level == DINFO_LEVEL_VERBOSE
5793 && write_symbols == DWARF2_DEBUG)
5794 dwarf2out_start_source_file (filename);
5795 #endif /* DWARF2_DEBUGGING_INFO */
5796 #ifdef SDB_DEBUGGING_INFO
5797 if (write_symbols == SDB_DEBUG)
5798 sdbout_start_new_source_file (filename);
5799 #endif
5802 /* Record the resumption of a source file. LINENO is the line number in
5803 the source file we are returning to. */
5805 void
5806 debug_end_source_file (lineno)
5807 register unsigned lineno ATTRIBUTE_UNUSED;
5809 #ifdef DBX_DEBUGGING_INFO
5810 if (write_symbols == DBX_DEBUG)
5811 dbxout_resume_previous_source_file ();
5812 #endif
5813 #ifdef DWARF_DEBUGGING_INFO
5814 if (debug_info_level == DINFO_LEVEL_VERBOSE
5815 && write_symbols == DWARF_DEBUG)
5816 dwarfout_resume_previous_source_file (lineno);
5817 #endif /* DWARF_DEBUGGING_INFO */
5818 #ifdef DWARF2_DEBUGGING_INFO
5819 if (debug_info_level == DINFO_LEVEL_VERBOSE
5820 && write_symbols == DWARF2_DEBUG)
5821 dwarf2out_end_source_file ();
5822 #endif /* DWARF2_DEBUGGING_INFO */
5823 #ifdef SDB_DEBUGGING_INFO
5824 if (write_symbols == SDB_DEBUG)
5825 sdbout_resume_previous_source_file ();
5826 #endif
5829 /* Called from check_newline in c-parse.y. The `buffer' parameter contains
5830 the tail part of the directive line, i.e. the part which is past the
5831 initial whitespace, #, whitespace, directive-name, whitespace part. */
5833 void
5834 debug_define (lineno, buffer)
5835 register unsigned lineno ATTRIBUTE_UNUSED;
5836 register char *buffer ATTRIBUTE_UNUSED;
5838 #ifdef DWARF_DEBUGGING_INFO
5839 if (debug_info_level == DINFO_LEVEL_VERBOSE
5840 && write_symbols == DWARF_DEBUG)
5841 dwarfout_define (lineno, buffer);
5842 #endif /* DWARF_DEBUGGING_INFO */
5843 #ifdef DWARF2_DEBUGGING_INFO
5844 if (debug_info_level == DINFO_LEVEL_VERBOSE
5845 && write_symbols == DWARF2_DEBUG)
5846 dwarf2out_define (lineno, buffer);
5847 #endif /* DWARF2_DEBUGGING_INFO */
5850 /* Called from check_newline in c-parse.y. The `buffer' parameter contains
5851 the tail part of the directive line, i.e. the part which is past the
5852 initial whitespace, #, whitespace, directive-name, whitespace part. */
5854 void
5855 debug_undef (lineno, buffer)
5856 register unsigned lineno ATTRIBUTE_UNUSED;
5857 register char *buffer ATTRIBUTE_UNUSED;
5859 #ifdef DWARF_DEBUGGING_INFO
5860 if (debug_info_level == DINFO_LEVEL_VERBOSE
5861 && write_symbols == DWARF_DEBUG)
5862 dwarfout_undef (lineno, buffer);
5863 #endif /* DWARF_DEBUGGING_INFO */
5864 #ifdef DWARF2_DEBUGGING_INFO
5865 if (debug_info_level == DINFO_LEVEL_VERBOSE
5866 && write_symbols == DWARF2_DEBUG)
5867 dwarf2out_undef (lineno, buffer);
5868 #endif /* DWARF2_DEBUGGING_INFO */