* c-decl.c (duplicate_decls): Conditionalize DECL_SAVED_TREE copy.
[official-gcc.git] / gcc / toplev.c
blob54582dc4784042bd6cf7fd9d4f97296ddff03106
1 /* Top level of GNU C compiler
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 /* This is the top level of cc1/c++.
23 It parses command args, opens files, invokes the various passes
24 in the proper order, and counts the time used by each.
25 Error messages and low-level interface to malloc also handled here. */
27 #include "config.h"
28 #undef FLOAT /* This is for hpux. They should change hpux. */
29 #undef FFS /* Some systems define this in param.h. */
30 #include "system.h"
31 #include <signal.h>
32 #include <setjmp.h>
34 #ifdef HAVE_SYS_RESOURCE_H
35 # include <sys/resource.h>
36 #endif
38 #ifdef HAVE_SYS_TIMES_H
39 # include <sys/times.h>
40 #endif
42 #include "input.h"
43 #include "tree.h"
44 #include "rtl.h"
45 #include "tm_p.h"
46 #include "flags.h"
47 #include "insn-attr.h"
48 #include "insn-config.h"
49 #include "hard-reg-set.h"
50 #include "recog.h"
51 #include "output.h"
52 #include "except.h"
53 #include "function.h"
54 #include "toplev.h"
55 #include "expr.h"
56 #include "basic-block.h"
57 #include "intl.h"
58 #include "ggc.h"
59 #include "graph.h"
60 #include "loop.h"
61 #include "regs.h"
62 #include "timevar.h"
63 #include "diagnostic.h"
64 #include "ssa.h"
65 #include "params.h"
66 #include "reload.h"
67 #include "dwarf2asm.h"
68 #include "integrate.h"
69 #include "debug.h"
70 #include "target.h"
71 #include "langhooks.h"
73 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
74 #include "dwarf2out.h"
75 #endif
77 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
78 #include "dbxout.h"
79 #endif
81 #ifdef SDB_DEBUGGING_INFO
82 #include "sdbout.h"
83 #endif
85 #ifdef XCOFF_DEBUGGING_INFO
86 #include "xcoffout.h" /* Needed for external data
87 declarations for e.g. AIX 4.x. */
88 #endif
90 #ifdef HALF_PIC_DEBUG
91 #include "halfpic.h"
92 #endif
94 #ifdef VMS
95 /* The extra parameters substantially improve the I/O performance. */
97 static FILE *
98 vms_fopen (fname, type)
99 char *fname;
100 char *type;
102 /* The <stdio.h> in the gcc-vms-1.42 distribution prototypes fopen with two
103 fixed arguments, which matches ANSI's specification but not VAXCRTL's
104 pre-ANSI implementation. This hack circumvents the mismatch problem. */
105 FILE *(*vmslib_fopen)() = (FILE *(*)()) fopen;
107 if (*type == 'w')
108 return (*vmslib_fopen) (fname, type, "mbc=32",
109 "deq=64", "fop=tef", "shr=nil");
110 else
111 return (*vmslib_fopen) (fname, type, "mbc=32");
114 #define fopen vms_fopen
115 #endif /* VMS */
117 #if defined (HAVE_DECL_ENVIRON) && !HAVE_DECL_ENVIRON
118 extern char **environ;
119 #endif
121 /* Carry information from ASM_DECLARE_OBJECT_NAME
122 to ASM_FINISH_DECLARE_OBJECT. */
124 extern int size_directive_output;
125 extern tree last_assemble_variable_decl;
127 static void general_init PARAMS ((char *));
128 static void parse_options_and_default_flags PARAMS ((int, char **));
129 static void do_compile PARAMS ((void));
130 static void process_options PARAMS ((void));
131 static void lang_independent_init PARAMS ((void));
132 static int lang_dependent_init PARAMS ((const char *));
133 static void init_asm_output PARAMS ((const char *));
134 static void finalize PARAMS ((void));
136 static void set_target_switch PARAMS ((const char *));
137 static const char *decl_name PARAMS ((tree, int));
139 static void float_signal PARAMS ((int)) ATTRIBUTE_NORETURN;
140 static void crash_signal PARAMS ((int)) ATTRIBUTE_NORETURN;
141 static void set_float_handler PARAMS ((jmp_buf));
142 static void compile_file PARAMS ((void));
143 static void display_help PARAMS ((void));
144 static void display_target_options PARAMS ((void));
146 static void decode_d_option PARAMS ((const char *));
147 static int decode_f_option PARAMS ((const char *));
148 static int decode_W_option PARAMS ((const char *));
149 static int decode_g_option PARAMS ((const char *));
150 static unsigned int independent_decode_option PARAMS ((int, char **));
152 static void print_version PARAMS ((FILE *, const char *));
153 static int print_single_switch PARAMS ((FILE *, int, int, const char *,
154 const char *, const char *,
155 const char *, const char *));
156 static void print_switch_values PARAMS ((FILE *, int, int, const char *,
157 const char *, const char *));
159 /* Length of line when printing switch values. */
160 #define MAX_LINE 75
162 /* Name of program invoked, sans directories. */
164 const char *progname;
166 /* Copy of arguments to toplev_main. */
167 int save_argc;
168 char **save_argv;
170 /* Name of current original source file (what was input to cpp).
171 This comes from each #-command in the actual input. */
173 const char *input_filename;
175 /* Name of top-level original source file (what was input to cpp).
176 This comes from the #-command at the beginning of the actual input.
177 If there isn't any there, then this is the cc1 input file name. */
179 const char *main_input_filename;
181 /* Current line number in real source file. */
183 int lineno;
185 /* Nonzero if it is unsafe to create any new pseudo registers. */
186 int no_new_pseudos;
188 /* Stack of currently pending input files. */
190 struct file_stack *input_file_stack;
192 /* Incremented on each change to input_file_stack. */
193 int input_file_stack_tick;
195 /* Name to use as base of names for dump output files. */
197 const char *dump_base_name;
199 /* Format to use to print dumpfile index value */
200 #ifndef DUMPFILE_FORMAT
201 #define DUMPFILE_FORMAT ".%02d."
202 #endif
204 /* Bit flags that specify the machine subtype we are compiling for.
205 Bits are tested using macros TARGET_... defined in the tm.h file
206 and set by `-m...' switches. Must be defined in rtlanal.c. */
208 extern int target_flags;
210 /* Debug hooks - dependent upon command line options. */
212 struct gcc_debug_hooks *debug_hooks = &do_nothing_debug_hooks;
214 /* Describes a dump file. */
216 struct dump_file_info
218 /* The unique extension to apply, e.g. ".jump". */
219 const char *const extension;
221 /* The -d<c> character that enables this dump file. */
222 char const debug_switch;
224 /* True if there is a corresponding graph dump file. */
225 char const graph_dump_p;
227 /* True if the user selected this dump. */
228 char enabled;
230 /* True if the files have been initialized (ie truncated). */
231 char initialized;
234 /* Enumerate the extant dump files. */
236 enum dump_file_index
238 DFI_rtl,
239 DFI_sibling,
240 DFI_eh,
241 DFI_jump,
242 DFI_ssa,
243 DFI_ssa_ccp,
244 DFI_ssa_dce,
245 DFI_ussa,
246 DFI_cse,
247 DFI_addressof,
248 DFI_gcse,
249 DFI_loop,
250 DFI_cse2,
251 DFI_cfg,
252 DFI_bp,
253 DFI_life,
254 DFI_combine,
255 DFI_ce,
256 DFI_regmove,
257 DFI_sched,
258 DFI_lreg,
259 DFI_greg,
260 DFI_postreload,
261 DFI_flow2,
262 DFI_peephole2,
263 DFI_rnreg,
264 DFI_ce2,
265 DFI_sched2,
266 DFI_stack,
267 DFI_bbro,
268 DFI_mach,
269 DFI_dbr,
270 DFI_MAX
273 /* Describes all the dump files. Should be kept in order of the
274 pass and in sync with dump_file_index above.
276 Remaining -d letters:
278 " o q u "
279 " H JK OPQ TUV YZ"
282 struct dump_file_info dump_file[DFI_MAX] =
284 { "rtl", 'r', 0, 0, 0 },
285 { "sibling", 'i', 0, 0, 0 },
286 { "eh", 'h', 0, 0, 0 },
287 { "jump", 'j', 0, 0, 0 },
288 { "ssa", 'e', 1, 0, 0 },
289 { "ssaccp", 'W', 1, 0, 0 },
290 { "ssadce", 'X', 1, 0, 0 },
291 { "ussa", 'e', 1, 0, 0 }, /* Yes, duplicate enable switch. */
292 { "cse", 's', 0, 0, 0 },
293 { "addressof", 'F', 0, 0, 0 },
294 { "gcse", 'G', 1, 0, 0 },
295 { "loop", 'L', 1, 0, 0 },
296 { "cse2", 't', 1, 0, 0 },
297 { "cfg", 'f', 1, 0, 0 },
298 { "bp", 'b', 1, 0, 0 },
299 { "life", 'f', 1, 0, 0 }, /* Yes, duplicate enable switch. */
300 { "combine", 'c', 1, 0, 0 },
301 { "ce", 'C', 1, 0, 0 },
302 { "regmove", 'N', 1, 0, 0 },
303 { "sched", 'S', 1, 0, 0 },
304 { "lreg", 'l', 1, 0, 0 },
305 { "greg", 'g', 1, 0, 0 },
306 { "postreload", 'o', 1, 0, 0 },
307 { "flow2", 'w', 1, 0, 0 },
308 { "peephole2", 'z', 1, 0, 0 },
309 { "rnreg", 'n', 1, 0, 0 },
310 { "ce2", 'E', 1, 0, 0 },
311 { "sched2", 'R', 1, 0, 0 },
312 { "stack", 'k', 1, 0, 0 },
313 { "bbro", 'B', 1, 0, 0 },
314 { "mach", 'M', 1, 0, 0 },
315 { "dbr", 'd', 0, 0, 0 },
318 static int open_dump_file PARAMS ((enum dump_file_index, tree));
319 static void close_dump_file PARAMS ((enum dump_file_index,
320 void (*) (FILE *, rtx), rtx));
322 /* Other flags saying which kinds of debugging dump have been requested. */
324 int rtl_dump_and_exit;
325 int flag_print_asm_name;
326 static int version_flag;
327 static char *filename;
328 enum graph_dump_types graph_dump_format;
330 /* Name for output file of assembly code, specified with -o. */
332 char *asm_file_name;
334 /* Value of the -G xx switch, and whether it was passed or not. */
335 int g_switch_value;
336 int g_switch_set;
338 /* Type(s) of debugging information we are producing (if any).
339 See flags.h for the definitions of the different possible
340 types of debugging information. */
341 enum debug_info_type write_symbols = NO_DEBUG;
343 /* Level of debugging information we are producing. See flags.h
344 for the definitions of the different possible levels. */
345 enum debug_info_level debug_info_level = DINFO_LEVEL_NONE;
347 /* Nonzero means use GNU-only extensions in the generated symbolic
348 debugging information. */
349 /* Currently, this only has an effect when write_symbols is set to
350 DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG. */
351 int use_gnu_debug_info_extensions = 0;
353 /* Nonzero means do optimizations. -O.
354 Particular numeric values stand for particular amounts of optimization;
355 thus, -O2 stores 2 here. However, the optimizations beyond the basic
356 ones are not controlled directly by this variable. Instead, they are
357 controlled by individual `flag_...' variables that are defaulted
358 based on this variable. */
360 int optimize = 0;
362 /* Nonzero means optimize for size. -Os.
363 The only valid values are zero and non-zero. When optimize_size is
364 non-zero, optimize defaults to 2, but certain individual code
365 bloating optimizations are disabled. */
367 int optimize_size = 0;
369 /* Nonzero if we should exit after parsing options. */
370 static int exit_after_options = 0;
372 /* The FUNCTION_DECL for the function currently being compiled,
373 or 0 if between functions. */
374 tree current_function_decl;
376 /* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
377 if none. */
378 tree current_function_func_begin_label;
380 /* Pointer to function to compute the name to use to print a declaration.
381 DECL is the declaration in question.
382 VERBOSITY determines what information will be printed:
383 0: DECL_NAME, demangled as necessary.
384 1: and scope information.
385 2: and any other information that might be interesting, such as function
386 parameter types in C++. */
388 const char *(*decl_printable_name) PARAMS ((tree, int));
390 /* Pointer to function to compute rtl for a language-specific tree code. */
392 typedef rtx (*lang_expand_expr_t)
393 PARAMS ((union tree_node *, rtx, enum machine_mode,
394 enum expand_modifier modifier));
396 lang_expand_expr_t lang_expand_expr = 0;
398 /* Pointer to function to finish handling an incomplete decl at the
399 end of compilation. */
401 void (*incomplete_decl_finalize_hook) PARAMS ((tree)) = 0;
403 /* Nonzero if doing dwarf2 duplicate elimination. */
405 int flag_eliminate_dwarf2_dups = 0;
407 /* Nonzero if generating code to do profiling. */
409 int profile_flag = 0;
411 /* Nonzero if generating code to do profiling on a line-by-line basis. */
413 int profile_block_flag;
415 /* Nonzero if generating code to profile program flow graph arcs. */
417 int profile_arc_flag = 0;
419 /* Nonzero if generating info for gcov to calculate line test coverage. */
421 int flag_test_coverage = 0;
423 /* Nonzero indicates that branch taken probabilities should be calculated. */
425 int flag_branch_probabilities = 0;
427 /* Nonzero if basic blocks should be reordered. */
429 int flag_reorder_blocks = 0;
431 /* Nonzero if registers should be renamed. */
433 int flag_rename_registers = 0;
435 /* Nonzero for -pedantic switch: warn about anything
436 that standard spec forbids. */
438 int pedantic = 0;
440 /* Temporarily suppress certain warnings.
441 This is set while reading code from a system header file. */
443 int in_system_header = 0;
445 /* Don't print functions as they are compiled. -quiet. */
447 int quiet_flag = 0;
449 /* Print times taken by the various passes. -ftime-report. */
451 int time_report = 0;
453 /* Print memory still in use at end of compilation (which may have little
454 to do with peak memory consumption). -fmem-report. */
456 int mem_report = 0;
458 /* Non-zero means to collect statistics which might be expensive
459 and to print them when we are done. */
460 int flag_detailed_statistics = 0;
463 /* -f flags. */
465 /* Nonzero means `char' should be signed. */
467 int flag_signed_char;
469 /* Nonzero means give an enum type only as many bytes as it needs. */
471 int flag_short_enums;
473 /* Nonzero for -fcaller-saves: allocate values in regs that need to
474 be saved across function calls, if that produces overall better code.
475 Optional now, so people can test it. */
477 #ifdef DEFAULT_CALLER_SAVES
478 int flag_caller_saves = 1;
479 #else
480 int flag_caller_saves = 0;
481 #endif
483 /* Nonzero if structures and unions should be returned in memory.
485 This should only be defined if compatibility with another compiler or
486 with an ABI is needed, because it results in slower code. */
488 #ifndef DEFAULT_PCC_STRUCT_RETURN
489 #define DEFAULT_PCC_STRUCT_RETURN 1
490 #endif
492 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
494 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
496 /* Nonzero for -fforce-mem: load memory value into a register
497 before arithmetic on it. This makes better cse but slower compilation. */
499 int flag_force_mem = 0;
501 /* Nonzero for -fforce-addr: load memory address into a register before
502 reference to memory. This makes better cse but slower compilation. */
504 int flag_force_addr = 0;
506 /* Nonzero for -fdefer-pop: don't pop args after each function call;
507 instead save them up to pop many calls' args with one insns. */
509 int flag_defer_pop = 0;
511 /* Nonzero for -ffloat-store: don't allocate floats and doubles
512 in extended-precision registers. */
514 int flag_float_store = 0;
516 /* Nonzero for -fcse-follow-jumps:
517 have cse follow jumps to do a more extensive job. */
519 int flag_cse_follow_jumps;
521 /* Nonzero for -fcse-skip-blocks:
522 have cse follow a branch around a block. */
523 int flag_cse_skip_blocks;
525 /* Nonzero for -fexpensive-optimizations:
526 perform miscellaneous relatively-expensive optimizations. */
527 int flag_expensive_optimizations;
529 /* Nonzero for -fthread-jumps:
530 have jump optimize output of loop. */
532 int flag_thread_jumps;
534 /* Nonzero enables strength-reduction in loop.c. */
536 int flag_strength_reduce = 0;
538 /* Nonzero enables loop unrolling in unroll.c. Only loops for which the
539 number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
540 UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
541 unrolled. */
543 int flag_unroll_loops;
545 /* Nonzero enables loop unrolling in unroll.c. All loops are unrolled.
546 This is generally not a win. */
548 int flag_unroll_all_loops;
550 /* Nonzero forces all invariant computations in loops to be moved
551 outside the loop. */
553 int flag_move_all_movables = 0;
555 /* Nonzero forces all general induction variables in loops to be
556 strength reduced. */
558 int flag_reduce_all_givs = 0;
560 /* Nonzero to perform full register move optimization passes. This is the
561 default for -O2. */
563 int flag_regmove = 0;
565 /* Nonzero for -fwritable-strings:
566 store string constants in data segment and don't uniquize them. */
568 int flag_writable_strings = 0;
570 /* Nonzero means don't put addresses of constant functions in registers.
571 Used for compiling the Unix kernel, where strange substitutions are
572 done on the assembly output. */
574 int flag_no_function_cse = 0;
576 /* Nonzero for -fomit-frame-pointer:
577 don't make a frame pointer in simple functions that don't require one. */
579 int flag_omit_frame_pointer = 0;
581 /* Nonzero means place each function into its own section on those platforms
582 which support arbitrary section names and unlimited numbers of sections. */
584 int flag_function_sections = 0;
586 /* ... and similar for data. */
588 int flag_data_sections = 0;
590 /* Nonzero to inhibit use of define_optimization peephole opts. */
592 int flag_no_peephole = 0;
594 /* Nonzero allows GCC to optimize sibling and tail recursive calls. */
596 int flag_optimize_sibling_calls = 0;
598 /* Nonzero means the front end generally wants `errno' maintained by math
599 operations, like built-in SQRT. */
601 int flag_errno_math = 1;
603 /* Nonzero means that unsafe floating-point math optimizations are allowed
604 for the sake of speed. IEEE compliance is not guaranteed, and operations
605 are allowed to assume that their arguments and results are "normal"
606 (e.g., nonnegative for SQRT). */
608 int flag_unsafe_math_optimizations = 0;
610 /* Zero means that floating-point math operations cannot generate a
611 (user-visible) trap. This is the case, for example, in nonstop
612 IEEE 754 arithmetic. */
614 int flag_trapping_math = 1;
616 /* 0 means straightforward implementation of complex divide acceptable.
617 1 means wide ranges of inputs must work for complex divide.
618 2 means C99-like requirements for complex divide (not yet implemented). */
620 int flag_complex_divide_method = 0;
622 /* Nonzero means all references through pointers are volatile. */
624 int flag_volatile;
626 /* Nonzero means treat all global and extern variables as volatile. */
628 int flag_volatile_global;
630 /* Nonzero means treat all static variables as volatile. */
632 int flag_volatile_static;
634 /* Nonzero means just do syntax checking; don't output anything. */
636 int flag_syntax_only = 0;
638 /* Nonzero means perform global cse. */
640 static int flag_gcse;
642 /* Nonzero means to use global dataflow analysis to eliminate
643 useless null pointer tests. */
645 static int flag_delete_null_pointer_checks;
647 /* Nonzero means to do the enhanced load motion during gcse, which trys
648 to hoist loads by not killing them when a store to the same location
649 is seen. */
651 int flag_gcse_lm = 1;
653 /* Nonzero means to perform store motion after gcse, which will try to
654 move stores closer to the exit block. Its not very effective without
655 flag_gcse_lm. */
657 int flag_gcse_sm = 1;
659 /* Nonzero means to rerun cse after loop optimization. This increases
660 compilation time about 20% and picks up a few more common expressions. */
662 static int flag_rerun_cse_after_loop;
664 /* Nonzero means to run loop optimizations twice. */
666 int flag_rerun_loop_opt;
668 /* Nonzero for -finline-functions: ok to inline functions that look like
669 good inline candidates. */
671 int flag_inline_functions;
673 /* Nonzero for -fkeep-inline-functions: even if we make a function
674 go inline everywhere, keep its definition around for debugging
675 purposes. */
677 int flag_keep_inline_functions;
679 /* Nonzero means that functions will not be inlined. */
681 int flag_no_inline;
683 /* Nonzero means that we should emit static const variables
684 regardless of whether or not optimization is turned on. */
686 int flag_keep_static_consts = 1;
688 /* Nonzero means we should be saving declaration info into a .X file. */
690 int flag_gen_aux_info = 0;
692 /* Specified name of aux-info file. */
694 static char *aux_info_file_name;
696 /* Nonzero means make the text shared if supported. */
698 int flag_shared_data;
700 /* Nonzero means schedule into delayed branch slots if supported. */
702 int flag_delayed_branch;
704 /* Nonzero if we are compiling pure (sharable) code.
705 Value is 1 if we are doing reasonable (i.e. simple
706 offset into offset table) pic. Value is 2 if we can
707 only perform register offsets. */
709 int flag_pic;
711 /* Nonzero means generate extra code for exception handling and enable
712 exception handling. */
714 int flag_exceptions;
716 /* Nonzero means generate frame unwind info table when supported. */
718 int flag_unwind_tables = 0;
720 /* Nonzero means generate frame unwind info table exact at each insn boundary */
722 int flag_asynchronous_unwind_tables = 0;
724 /* Nonzero means don't place uninitialized global data in common storage
725 by default. */
727 int flag_no_common;
729 /* Nonzero means pretend it is OK to examine bits of target floats,
730 even if that isn't true. The resulting code will have incorrect constants,
731 but the same series of instructions that the native compiler would make. */
733 int flag_pretend_float;
735 /* Nonzero means change certain warnings into errors.
736 Usually these are warnings about failure to conform to some standard. */
738 int flag_pedantic_errors = 0;
740 /* flag_schedule_insns means schedule insns within basic blocks (before
741 local_alloc).
742 flag_schedule_insns_after_reload means schedule insns after
743 global_alloc. */
745 int flag_schedule_insns = 0;
746 int flag_schedule_insns_after_reload = 0;
748 /* The following flags have effect only for scheduling before register
749 allocation:
751 flag_schedule_interblock means schedule insns accross basic blocks.
752 flag_schedule_speculative means allow speculative motion of non-load insns.
753 flag_schedule_speculative_load means allow speculative motion of some
754 load insns.
755 flag_schedule_speculative_load_dangerous allows speculative motion of more
756 load insns. */
758 int flag_schedule_interblock = 1;
759 int flag_schedule_speculative = 1;
760 int flag_schedule_speculative_load = 0;
761 int flag_schedule_speculative_load_dangerous = 0;
763 int flag_single_precision_constant;
765 /* flag_branch_on_count_reg means try to replace add-1,compare,branch tupple
766 by a cheaper branch on a count register. */
767 int flag_branch_on_count_reg = 1;
769 /* -finhibit-size-directive inhibits output of .size for ELF.
770 This is used only for compiling crtstuff.c,
771 and it may be extended to other effects
772 needed for crtstuff.c on other systems. */
773 int flag_inhibit_size_directive = 0;
775 /* -fverbose-asm causes extra commentary information to be produced in
776 the generated assembly code (to make it more readable). This option
777 is generally only of use to those who actually need to read the
778 generated assembly code (perhaps while debugging the compiler itself).
779 -fno-verbose-asm, the default, causes the extra information
780 to be omitted and is useful when comparing two assembler files. */
782 int flag_verbose_asm = 0;
784 /* -dA causes debug commentary information to be produced in
785 the generated assembly code (to make it more readable). This option
786 is generally only of use to those who actually need to read the
787 generated assembly code (perhaps while debugging the compiler itself).
788 Currently, this switch is only used by dwarfout.c; however, it is intended
789 to be a catchall for printing debug information in the assembler file. */
791 int flag_debug_asm = 0;
793 /* -dP causes the rtl to be emitted as a comment in assembly. */
795 int flag_dump_rtl_in_asm = 0;
797 /* -fgnu-linker specifies use of the GNU linker for initializations.
798 (Or, more generally, a linker that handles initializations.)
799 -fno-gnu-linker says that collect2 will be used. */
800 #ifdef USE_COLLECT2
801 int flag_gnu_linker = 0;
802 #else
803 int flag_gnu_linker = 1;
804 #endif
806 /* Enable SSA. */
807 int flag_ssa = 0;
809 /* Enable ssa conditional constant propagation. */
810 int flag_ssa_ccp = 0;
812 /* Enable ssa aggressive dead code elimination. */
813 int flag_ssa_dce = 0;
815 /* Tag all structures with __attribute__(packed). */
816 int flag_pack_struct = 0;
818 /* Emit code to check for stack overflow; also may cause large objects
819 to be allocated dynamically. */
820 int flag_stack_check;
822 /* When non-NULL, indicates that whenever space is allocated on the
823 stack, the resulting stack pointer must not pass this
824 address---that is, for stacks that grow downward, the stack pointer
825 must always be greater than or equal to this address; for stacks
826 that grow upward, the stack pointer must be less than this address.
827 At present, the rtx may be either a REG or a SYMBOL_REF, although
828 the support provided depends on the backend. */
829 rtx stack_limit_rtx;
831 /* -fcheck-memory-usage causes extra code to be generated in order to check
832 memory accesses. This is used by a detector of bad memory accesses such
833 as Checker. */
834 int flag_check_memory_usage = 0;
836 /* -fprefix-function-name causes function name to be prefixed. This
837 can be used with -fcheck-memory-usage to isolate code compiled with
838 -fcheck-memory-usage. */
839 int flag_prefix_function_name = 0;
841 /* 0 if pointer arguments may alias each other. True in C.
842 1 if pointer arguments may not alias each other but may alias
843 global variables.
844 2 if pointer arguments may not alias each other and may not
845 alias global variables. True in Fortran.
846 This defaults to 0 for C. */
847 int flag_argument_noalias = 0;
849 /* Nonzero if we should do (language-dependent) alias analysis.
850 Typically, this analysis will assume that expressions of certain
851 types do not alias expressions of certain other types. Only used
852 if alias analysis (in general) is enabled. */
853 int flag_strict_aliasing = 0;
855 /* Instrument functions with calls at entry and exit, for profiling. */
856 int flag_instrument_function_entry_exit = 0;
858 /* Nonzero means ignore `#ident' directives. 0 means handle them.
859 On SVR4 targets, it also controls whether or not to emit a
860 string identifying the compiler. */
862 int flag_no_ident = 0;
864 /* This will perform a peephole pass before sched2. */
865 int flag_peephole2 = 0;
867 /* This will try to guess branch probabilities. */
868 int flag_guess_branch_prob = 0;
870 /* -fbounded-pointers causes gcc to compile pointers as composite
871 objects occupying three words: the pointer value, the base address
872 of the referent object, and the address immediately beyond the end
873 of the referent object. The base and extent allow us to perform
874 runtime bounds checking. -fbounded-pointers implies -fcheck-bounds. */
875 int flag_bounded_pointers = 0;
877 /* -fcheck-bounds causes gcc to generate array bounds checks.
878 For C, C++: defaults to value of flag_bounded_pointers.
879 For ObjC: defaults to off.
880 For Java: defaults to on.
881 For Fortran: defaults to off.
882 For CHILL: defaults to off. */
883 int flag_bounds_check = 0;
885 /* This will attempt to merge constant section constants, if 1 only
886 string constants and constants from constant pool, if 2 also constant
887 variables. */
888 int flag_merge_constants = 1;
890 /* If one, renumber instruction UIDs to reduce the number of
891 unused UIDs if there are a lot of instructions. If greater than
892 one, unconditionally renumber instruction UIDs. */
893 int flag_renumber_insns = 1;
895 /* Values of the -falign-* flags: how much to align labels in code.
896 0 means `use default', 1 means `don't align'.
897 For each variable, there is an _log variant which is the power
898 of two not less than the variable, for .align output. */
900 int align_loops;
901 int align_loops_log;
902 int align_loops_max_skip;
903 int align_jumps;
904 int align_jumps_log;
905 int align_jumps_max_skip;
906 int align_labels;
907 int align_labels_log;
908 int align_labels_max_skip;
909 int align_functions;
910 int align_functions_log;
912 /* Table of supported debugging formats. */
913 static const struct
915 const char *const arg;
916 /* Since PREFERRED_DEBUGGING_TYPE isn't necessarily a
917 constant expression, we use NO_DEBUG in its place. */
918 const enum debug_info_type debug_type;
919 const int use_extensions_p;
920 const char *const description;
921 } *da,
922 debug_args[] =
924 { "", NO_DEBUG, DEFAULT_GDB_EXTENSIONS,
925 N_("Generate debugging info in default format") },
926 { "gdb", NO_DEBUG, 1, N_("Generate debugging info in default extended format") },
927 #ifdef DBX_DEBUGGING_INFO
928 { "stabs", DBX_DEBUG, 0, N_("Generate STABS format debug info") },
929 { "stabs+", DBX_DEBUG, 1, N_("Generate extended STABS format debug info") },
930 #endif
931 #ifdef DWARF_DEBUGGING_INFO
932 { "dwarf", DWARF_DEBUG, 0, N_("Generate DWARF-1 format debug info") },
933 { "dwarf+", DWARF_DEBUG, 1,
934 N_("Generate extended DWARF-1 format debug info") },
935 #endif
936 #ifdef DWARF2_DEBUGGING_INFO
937 { "dwarf-2", DWARF2_DEBUG, 0, N_("Generate DWARF-2 debug info") },
938 #endif
939 #ifdef XCOFF_DEBUGGING_INFO
940 { "xcoff", XCOFF_DEBUG, 0, N_("Generate XCOFF format debug info") },
941 { "xcoff+", XCOFF_DEBUG, 1, N_("Generate extended XCOFF format debug info") },
942 #endif
943 #ifdef SDB_DEBUGGING_INFO
944 { "coff", SDB_DEBUG, 0, N_("Generate COFF format debug info") },
945 #endif
946 { 0, 0, 0, 0 }
949 typedef struct
951 const char *string;
952 int *variable;
953 int on_value;
954 const char *description;
956 lang_independent_options;
958 int flag_trapv = 0;
960 /* Add or remove a leading underscore from user symbols. */
961 int flag_leading_underscore = -1;
963 /* The user symbol prefix after having resolved same. */
964 const char *user_label_prefix;
966 static const param_info lang_independent_params[] = {
967 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
968 { OPTION, DEFAULT, HELP },
969 #include "params.def"
970 #undef DEFPARAM
971 { NULL, 0, NULL }
974 /* A default for same. */
975 #ifndef USER_LABEL_PREFIX
976 #define USER_LABEL_PREFIX ""
977 #endif
979 /* Table of language-independent -f options.
980 STRING is the option name. VARIABLE is the address of the variable.
981 ON_VALUE is the value to store in VARIABLE
982 if `-fSTRING' is seen as an option.
983 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
985 lang_independent_options f_options[] =
987 {"eliminate-dwarf2-dups", &flag_eliminate_dwarf2_dups, 1,
988 N_("Perform DWARF2 duplicate elimination") },
989 {"float-store", &flag_float_store, 1,
990 N_("Do not store floats in registers") },
991 {"volatile", &flag_volatile, 1,
992 N_("Consider all mem refs through pointers as volatile") },
993 {"volatile-global", &flag_volatile_global, 1,
994 N_("Consider all mem refs to global data to be volatile") },
995 {"volatile-static", &flag_volatile_static, 1,
996 N_("Consider all mem refs to static data to be volatile") },
997 {"defer-pop", &flag_defer_pop, 1,
998 N_("Defer popping functions args from stack until later") },
999 {"omit-frame-pointer", &flag_omit_frame_pointer, 1,
1000 N_("When possible do not generate stack frames") },
1001 {"optimize-sibling-calls", &flag_optimize_sibling_calls, 1,
1002 N_("Optimize sibling and tail recursive calls") },
1003 {"cse-follow-jumps", &flag_cse_follow_jumps, 1,
1004 N_("When running CSE, follow jumps to their targets") },
1005 {"cse-skip-blocks", &flag_cse_skip_blocks, 1,
1006 N_("When running CSE, follow conditional jumps") },
1007 {"expensive-optimizations", &flag_expensive_optimizations, 1,
1008 N_("Perform a number of minor, expensive optimisations") },
1009 {"thread-jumps", &flag_thread_jumps, 1,
1010 N_("Perform jump threading optimisations") },
1011 {"strength-reduce", &flag_strength_reduce, 1,
1012 N_("Perform strength reduction optimisations") },
1013 {"unroll-loops", &flag_unroll_loops, 1,
1014 N_("Perform loop unrolling when iteration count is known") },
1015 {"unroll-all-loops", &flag_unroll_all_loops, 1,
1016 N_("Perform loop unrolling for all loops") },
1017 {"move-all-movables", &flag_move_all_movables, 1,
1018 N_("Force all loop invariant computations out of loops") },
1019 {"reduce-all-givs", &flag_reduce_all_givs, 1,
1020 N_("Strength reduce all loop general induction variables") },
1021 {"writable-strings", &flag_writable_strings, 1,
1022 N_("Store strings in writable data section") },
1023 {"peephole", &flag_no_peephole, 0,
1024 N_("Enable machine specific peephole optimisations") },
1025 {"force-mem", &flag_force_mem, 1,
1026 N_("Copy memory operands into registers before using") },
1027 {"force-addr", &flag_force_addr, 1,
1028 N_("Copy memory address constants into regs before using") },
1029 {"function-cse", &flag_no_function_cse, 0,
1030 N_("Allow function addresses to be held in registers") },
1031 {"inline-functions", &flag_inline_functions, 1,
1032 N_("Integrate simple functions into their callers") },
1033 {"keep-inline-functions", &flag_keep_inline_functions, 1,
1034 N_("Generate code for funcs even if they are fully inlined") },
1035 {"inline", &flag_no_inline, 0,
1036 N_("Pay attention to the 'inline' keyword") },
1037 {"keep-static-consts", &flag_keep_static_consts, 1,
1038 N_("Emit static const variables even if they are not used") },
1039 {"syntax-only", &flag_syntax_only, 1,
1040 N_("Check for syntax errors, then stop") },
1041 {"shared-data", &flag_shared_data, 1,
1042 N_("Mark data as shared rather than private") },
1043 {"caller-saves", &flag_caller_saves, 1,
1044 N_("Enable saving registers around function calls") },
1045 {"pcc-struct-return", &flag_pcc_struct_return, 1,
1046 N_("Return 'short' aggregates in memory, not registers") },
1047 {"reg-struct-return", &flag_pcc_struct_return, 0,
1048 N_("Return 'short' aggregates in registers") },
1049 {"delayed-branch", &flag_delayed_branch, 1,
1050 N_("Attempt to fill delay slots of branch instructions") },
1051 {"gcse", &flag_gcse, 1,
1052 N_("Perform the global common subexpression elimination") },
1053 {"gcse-lm", &flag_gcse_lm, 1,
1054 N_("Perform enhanced load motion during global subexpression elimination") },
1055 {"gcse-sm", &flag_gcse_sm, 1,
1056 N_("Perform store motion after global subexpression elimination") },
1057 {"rerun-cse-after-loop", &flag_rerun_cse_after_loop, 1,
1058 N_("Run CSE pass after loop optimisations") },
1059 {"rerun-loop-opt", &flag_rerun_loop_opt, 1,
1060 N_("Run the loop optimiser twice") },
1061 {"delete-null-pointer-checks", &flag_delete_null_pointer_checks, 1,
1062 N_("Delete useless null pointer checks") },
1063 {"pretend-float", &flag_pretend_float, 1,
1064 N_("Pretend that host and target use the same FP format") },
1065 {"schedule-insns", &flag_schedule_insns, 1,
1066 N_("Reschedule instructions before register allocation") },
1067 {"schedule-insns2", &flag_schedule_insns_after_reload, 1,
1068 N_("Reschedule instructions after register allocation") },
1069 {"sched-interblock",&flag_schedule_interblock, 1,
1070 N_("Enable scheduling across basic blocks") },
1071 {"sched-spec",&flag_schedule_speculative, 1,
1072 N_("Allow speculative motion of non-loads") },
1073 {"sched-spec-load",&flag_schedule_speculative_load, 1,
1074 N_("Allow speculative motion of some loads") },
1075 {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1,
1076 N_("Allow speculative motion of more loads") },
1077 {"branch-count-reg",&flag_branch_on_count_reg, 1,
1078 N_("Replace add,compare,branch with branch on count reg") },
1079 {"pic", &flag_pic, 1,
1080 N_("Generate position independent code, if possible") },
1081 {"PIC", &flag_pic, 2, ""},
1082 {"exceptions", &flag_exceptions, 1,
1083 N_("Enable exception handling") },
1084 {"unwind-tables", &flag_unwind_tables, 1,
1085 N_("Just generate unwind tables for exception handling") },
1086 {"asynchronous-unwind-tables", &flag_asynchronous_unwind_tables, 1,
1087 N_("Generate unwind tables exact at each instruction boundary") },
1088 {"non-call-exceptions", &flag_non_call_exceptions, 1,
1089 N_("Support synchronous non-call exceptions") },
1090 {"profile-arcs", &profile_arc_flag, 1,
1091 N_("Insert arc based program profiling code") },
1092 {"test-coverage", &flag_test_coverage, 1,
1093 N_("Create data files needed by gcov") },
1094 {"branch-probabilities", &flag_branch_probabilities, 1,
1095 N_("Use profiling information for branch probabilities") },
1096 {"reorder-blocks", &flag_reorder_blocks, 1,
1097 N_("Reorder basic blocks to improve code placement") },
1098 {"rename-registers", &flag_rename_registers, 1,
1099 N_("Do the register renaming optimization pass") },
1100 {"common", &flag_no_common, 0,
1101 N_("Do not put uninitialized globals in the common section") },
1102 {"inhibit-size-directive", &flag_inhibit_size_directive, 1,
1103 N_("Do not generate .size directives") },
1104 {"function-sections", &flag_function_sections, 1,
1105 N_("place each function into its own section") },
1106 {"data-sections", &flag_data_sections, 1,
1107 N_("place data items into their own section") },
1108 {"verbose-asm", &flag_verbose_asm, 1,
1109 N_("Add extra commentry to assembler output") },
1110 {"gnu-linker", &flag_gnu_linker, 1,
1111 N_("Output GNU ld formatted global initialisers") },
1112 {"regmove", &flag_regmove, 1,
1113 N_("Enables a register move optimisation") },
1114 {"optimize-register-move", &flag_regmove, 1,
1115 N_("Do the full regmove optimization pass") },
1116 {"pack-struct", &flag_pack_struct, 1,
1117 N_("Pack structure members together without holes") },
1118 {"stack-check", &flag_stack_check, 1,
1119 N_("Insert stack checking code into the program") },
1120 {"argument-alias", &flag_argument_noalias, 0,
1121 N_("Specify that arguments may alias each other & globals") },
1122 {"argument-noalias", &flag_argument_noalias, 1,
1123 N_("Assume arguments may alias globals but not each other") },
1124 {"argument-noalias-global", &flag_argument_noalias, 2,
1125 N_("Assume arguments do not alias each other or globals") },
1126 {"strict-aliasing", &flag_strict_aliasing, 1,
1127 N_("Assume strict aliasing rules apply") },
1128 {"align-loops", &align_loops, 0,
1129 N_("Align the start of loops") },
1130 {"align-jumps", &align_jumps, 0,
1131 N_("Align labels which are only reached by jumping") },
1132 {"align-labels", &align_labels, 0,
1133 N_("Align all labels") },
1134 {"align-functions", &align_functions, 0,
1135 N_("Align the start of functions") },
1136 {"merge-constants", &flag_merge_constants, 1,
1137 N_("Attempt to merge identical constants accross compilation units") },
1138 {"merge-all-constants", &flag_merge_constants, 2,
1139 N_("Attempt to merge identical constants and constant variables") },
1140 {"check-memory-usage", &flag_check_memory_usage, 1,
1141 N_("Generate code to check every memory access") },
1142 {"prefix-function-name", &flag_prefix_function_name, 1,
1143 N_("Add a prefix to all function names") },
1144 {"dump-unnumbered", &flag_dump_unnumbered, 1,
1145 N_("Suppress output of instruction numbers and line number notes in debugging dumps") },
1146 {"instrument-functions", &flag_instrument_function_entry_exit, 1,
1147 N_("Instrument function entry/exit with profiling calls") },
1148 {"ssa", &flag_ssa, 1,
1149 N_("Enable SSA optimizations") },
1150 {"ssa-ccp", &flag_ssa_ccp, 1,
1151 N_("Enable SSA conditional constant propagation") },
1152 {"ssa-dce", &flag_ssa_dce, 1,
1153 N_("Enable aggressive SSA dead code elimination") },
1154 {"leading-underscore", &flag_leading_underscore, 1,
1155 N_("External symbols have a leading underscore") },
1156 {"ident", &flag_no_ident, 0,
1157 N_("Process #ident directives") },
1158 { "peephole2", &flag_peephole2, 1,
1159 N_("Enables an rtl peephole pass run before sched2") },
1160 { "guess-branch-probability", &flag_guess_branch_prob, 1,
1161 N_("Enables guessing of branch probabilities") },
1162 {"math-errno", &flag_errno_math, 1,
1163 N_("Set errno after built-in math functions") },
1164 {"trapping-math", &flag_trapping_math, 1,
1165 N_("Floating-point operations can trap") },
1166 {"unsafe-math-optimizations", &flag_unsafe_math_optimizations, 1,
1167 N_("Allow math optimizations that may violate IEEE or ANSI standards") },
1168 {"bounded-pointers", &flag_bounded_pointers, 1,
1169 N_("Compile pointers as triples: value, base & end") },
1170 {"bounds-check", &flag_bounds_check, 1,
1171 N_("Generate code to check bounds before dereferencing pointers and arrays") },
1172 {"single-precision-constant", &flag_single_precision_constant, 1,
1173 N_("Convert floating point constant to single precision constant") },
1174 {"time-report", &time_report, 1,
1175 N_("Report time taken by each compiler pass at end of run") },
1176 {"mem-report", &mem_report, 1,
1177 N_("Report on permanent memory allocation at end of run") },
1178 { "trapv", &flag_trapv, 1,
1179 N_("Trap for signed overflow in addition / subtraction / multiplication") },
1182 /* Table of language-specific options. */
1184 static const struct lang_opt
1186 const char *const option;
1187 const char *const description;
1189 documented_lang_options[] =
1191 /* In order not to overload the --help output, the convention
1192 used here is to only describe those options which are not
1193 enabled by default. */
1195 { "-ansi",
1196 N_("Compile just for ISO C89") },
1197 { "-fallow-single-precision",
1198 N_("Do not promote floats to double if using -traditional") },
1199 { "-std= ",
1200 N_("Determine language standard") },
1202 { "-fsigned-bitfields", "" },
1203 { "-funsigned-bitfields",
1204 N_("Make bitfields by unsigned by default") },
1205 { "-fno-signed-bitfields", "" },
1206 { "-fno-unsigned-bitfields","" },
1207 { "-fsigned-char",
1208 N_("Make 'char' be signed by default") },
1209 { "-funsigned-char",
1210 N_("Make 'char' be unsigned by default") },
1211 { "-fno-signed-char", "" },
1212 { "-fno-unsigned-char", "" },
1214 { "-ftraditional", "" },
1215 { "-traditional",
1216 N_("Attempt to support traditional K&R style C") },
1217 { "-fnotraditional", "" },
1218 { "-fno-traditional", "" },
1220 { "-fasm", "" },
1221 { "-fno-asm",
1222 N_("Do not recognise the 'asm' keyword") },
1223 { "-fbuiltin", "" },
1224 { "-fno-builtin",
1225 N_("Do not recognise any built in functions") },
1226 { "-fhosted",
1227 N_("Assume normal C execution environment") },
1228 { "-fno-hosted", "" },
1229 { "-ffreestanding",
1230 N_("Assume that standard libraries & main might not exist") },
1231 { "-fno-freestanding", "" },
1232 { "-fcond-mismatch",
1233 N_("Allow different types as args of ? operator") },
1234 { "-fno-cond-mismatch", "" },
1235 { "-fdollars-in-identifiers",
1236 N_("Allow the use of $ inside identifiers") },
1237 { "-fno-dollars-in-identifiers", "" },
1238 { "-fpreprocessed", "" },
1239 { "-fno-preprocessed", "" },
1240 { "-fshort-double",
1241 N_("Use the same size for double as for float") },
1242 { "-fno-short-double", "" },
1243 { "-fshort-enums",
1244 N_("Use the smallest fitting integer to hold enums") },
1245 { "-fno-short-enums", "" },
1246 { "-fshort-wchar",
1247 N_("Override the underlying type for wchar_t to `unsigned short'") },
1248 { "-fno-short-wchar", "" },
1250 { "-Wall",
1251 N_("Enable most warning messages") },
1252 { "-Wbad-function-cast",
1253 N_("Warn about casting functions to incompatible types") },
1254 { "-Wno-bad-function-cast", "" },
1255 { "-Wno-missing-noreturn", "" },
1256 { "-Wmissing-format-attribute",
1257 N_("Warn about functions which might be candidates for format attributes") },
1258 { "-Wno-missing-format-attribute", "" },
1259 { "-Wcast-qual",
1260 N_("Warn about casts which discard qualifiers") },
1261 { "-Wno-cast-qual", "" },
1262 { "-Wchar-subscripts",
1263 N_("Warn about subscripts whose type is 'char'") },
1264 { "-Wno-char-subscripts", "" },
1265 { "-Wcomment",
1266 N_("Warn if nested comments are detected") },
1267 { "-Wno-comment", "" },
1268 { "-Wcomments",
1269 N_("Warn if nested comments are detected") },
1270 { "-Wno-comments", "" },
1271 { "-Wconversion",
1272 N_("Warn about possibly confusing type conversions") },
1273 { "-Wno-conversion", "" },
1274 { "-Wformat",
1275 N_("Warn about printf/scanf/strftime/strfmon format anomalies") },
1276 { "-Wno-format", "" },
1277 { "-Wformat-y2k", "" },
1278 { "-Wno-format-y2k",
1279 N_("Don't warn about strftime formats yielding 2 digit years") },
1280 { "-Wformat-extra-args", "" },
1281 { "-Wno-format-extra-args",
1282 N_("Don't warn about too many arguments to format functions") },
1283 { "-Wformat-nonliteral",
1284 N_("Warn about non-string-literal format strings") },
1285 { "-Wno-format-nonliteral", "" },
1286 { "-Wformat-security",
1287 N_("Warn about possible security problems with format functions") },
1288 { "-Wno-format-security", "" },
1289 { "-Wimplicit-function-declaration",
1290 N_("Warn about implicit function declarations") },
1291 { "-Wno-implicit-function-declaration", "" },
1292 { "-Werror-implicit-function-declaration", "" },
1293 { "-Wimplicit-int",
1294 N_("Warn when a declaration does not specify a type") },
1295 { "-Wno-implicit-int", "" },
1296 { "-Wimplicit", "" },
1297 { "-Wno-implicit", "" },
1298 { "-Wimport",
1299 N_("Warn about the use of the #import directive") },
1300 { "-Wno-import", "" },
1301 { "-Wlong-long","" },
1302 { "-Wno-long-long",
1303 N_("Do not warn about using 'long long' when -pedantic") },
1304 { "-Wmain",
1305 N_("Warn about suspicious declarations of main") },
1306 { "-Wno-main", "" },
1307 { "-Wmissing-braces",
1308 N_("Warn about possibly missing braces around initialisers") },
1309 { "-Wno-missing-braces", "" },
1310 { "-Wmissing-declarations",
1311 N_("Warn about global funcs without previous declarations") },
1312 { "-Wno-missing-declarations", "" },
1313 { "-Wmissing-prototypes",
1314 N_("Warn about global funcs without prototypes") },
1315 { "-Wno-missing-prototypes", "" },
1316 { "-Wmultichar",
1317 N_("Warn about use of multicharacter literals") },
1318 { "-Wno-multichar", "" },
1319 { "-Wnested-externs",
1320 N_("Warn about externs not at file scope level") },
1321 { "-Wno-nested-externs", "" },
1322 { "-Wparentheses",
1323 N_("Warn about possible missing parentheses") },
1324 { "-Wno-parentheses", "" },
1325 { "-Wsequence-point",
1326 N_("Warn about possible violations of sequence point rules") },
1327 { "-Wno-sequence-point", "" },
1328 { "-Wpointer-arith",
1329 N_("Warn about function pointer arithmetic") },
1330 { "-Wno-pointer-arith", "" },
1331 { "-Wredundant-decls",
1332 N_("Warn about multiple declarations of the same object") },
1333 { "-Wno-redundant-decls", "" },
1334 { "-Wsign-compare",
1335 N_("Warn about signed/unsigned comparisons") },
1336 { "-Wno-sign-compare", "" },
1337 { "-Wfloat-equal",
1338 N_("Warn about testing equality of floating point numbers") },
1339 { "-Wno-float-equal", "" },
1340 { "-Wunknown-pragmas",
1341 N_("Warn about unrecognized pragmas") },
1342 { "-Wno-unknown-pragmas", "" },
1343 { "-Wstrict-prototypes",
1344 N_("Warn about non-prototyped function decls") },
1345 { "-Wno-strict-prototypes", "" },
1346 { "-Wtraditional",
1347 N_("Warn about constructs whose meaning change in ISO C") },
1348 { "-Wno-traditional", "" },
1349 { "-Wtrigraphs",
1350 N_("Warn when trigraphs are encountered") },
1351 { "-Wno-trigraphs", "" },
1352 { "-Wundef", "" },
1353 { "-Wno-undef", "" },
1354 { "-Wwrite-strings",
1355 N_("Mark strings as 'const char *'") },
1356 { "-Wno-write-strings", "" },
1358 #define DEFINE_LANG_NAME(NAME) { NULL, NAME },
1360 #include "options.h"
1364 /* Here is a table, controlled by the tm.h file, listing each -m switch
1365 and which bits in `target_switches' it should set or clear.
1366 If VALUE is positive, it is bits to set.
1367 If VALUE is negative, -VALUE is bits to clear.
1368 (The sign bit is not used so there is no confusion.) */
1370 static const struct
1372 const char *const name;
1373 const int value;
1374 const char *const description;
1376 target_switches [] = TARGET_SWITCHES;
1378 /* This table is similar, but allows the switch to have a value. */
1380 #ifdef TARGET_OPTIONS
1381 static const struct
1383 const char *const prefix;
1384 const char **const variable;
1385 const char *const description;
1387 target_options [] = TARGET_OPTIONS;
1388 #endif
1390 /* Options controlling warnings. */
1392 /* Don't print warning messages. -w. */
1394 int inhibit_warnings = 0;
1396 /* Don't suppress warnings from system headers. -Wsystem-headers. */
1398 int warn_system_headers = 0;
1400 /* Print various extra warnings. -W. */
1402 int extra_warnings = 0;
1404 /* Treat warnings as errors. -Werror. */
1406 int warnings_are_errors = 0;
1408 /* Nonzero to warn about unused variables, functions et.al. */
1410 int warn_unused_function;
1411 int warn_unused_label;
1412 int warn_unused_parameter;
1413 int warn_unused_variable;
1414 int warn_unused_value;
1416 /* Nonzero to warn about code which is never reached. */
1418 int warn_notreached;
1420 /* Nonzero to warn about variables used before they are initialized. */
1422 int warn_uninitialized;
1424 /* Nonzero means warn about all declarations which shadow others. */
1426 int warn_shadow;
1428 /* Warn if a switch on an enum fails to have a case for every enum value. */
1430 int warn_switch;
1432 /* Nonzero means warn about function definitions that default the return type
1433 or that use a null return and have a return-type other than void. */
1435 int warn_return_type;
1437 /* Nonzero means warn about pointer casts that increase the required
1438 alignment of the target type (and might therefore lead to a crash
1439 due to a misaligned access). */
1441 int warn_cast_align;
1443 /* Nonzero means warn about any objects definitions whose size is larger
1444 than N bytes. Also want about function definitions whose returned
1445 values are larger than N bytes. The value N is in `larger_than_size'. */
1447 int warn_larger_than;
1448 HOST_WIDE_INT larger_than_size;
1450 /* Nonzero means warn if inline function is too large. */
1452 int warn_inline;
1454 /* Warn if a function returns an aggregate,
1455 since there are often incompatible calling conventions for doing this. */
1457 int warn_aggregate_return;
1459 /* Warn if packed attribute on struct is unnecessary and inefficient. */
1461 int warn_packed;
1463 /* Warn when gcc pads a structure to an alignment boundary. */
1465 int warn_padded;
1467 /* Warn when an optimization pass is disabled. */
1469 int warn_disabled_optimization;
1471 /* Warn about functions which might be candidates for attribute noreturn. */
1473 int warn_missing_noreturn;
1475 /* Likewise for -W. */
1477 lang_independent_options W_options[] =
1479 {"unused-function", &warn_unused_function, 1,
1480 N_("Warn when a function is unused") },
1481 {"unused-label", &warn_unused_label, 1,
1482 N_("Warn when a label is unused") },
1483 {"unused-parameter", &warn_unused_parameter, 1,
1484 N_("Warn when a function parameter is unused") },
1485 {"unused-variable", &warn_unused_variable, 1,
1486 N_("Warn when a variable is unused") },
1487 {"unused-value", &warn_unused_value, 1,
1488 N_("Warn when an expression value is unused") },
1489 {"system-headers", &warn_system_headers, 1,
1490 N_("Do not suppress warnings from system headers") },
1491 {"error", &warnings_are_errors, 1,
1492 N_("Treat all warnings as errors") },
1493 {"shadow", &warn_shadow, 1,
1494 N_("Warn when one local variable shadows another") },
1495 {"switch", &warn_switch, 1,
1496 N_("Warn about enumerated switches missing a specific case") },
1497 {"aggregate-return", &warn_aggregate_return, 1,
1498 N_("Warn about returning structures, unions or arrays") },
1499 {"cast-align", &warn_cast_align, 1,
1500 N_("Warn about pointer casts which increase alignment") },
1501 {"unreachable-code", &warn_notreached, 1,
1502 N_("Warn about code that will never be executed") },
1503 {"uninitialized", &warn_uninitialized, 1,
1504 N_("Warn about uninitialized automatic variables") },
1505 {"inline", &warn_inline, 1,
1506 N_("Warn when an inlined function cannot be inlined") },
1507 {"packed", &warn_packed, 1,
1508 N_("Warn when the packed attribute has no effect on struct layout") },
1509 {"padded", &warn_padded, 1,
1510 N_("Warn when padding is required to align struct members") },
1511 {"disabled-optimization", &warn_disabled_optimization, 1,
1512 N_("Warn when an optimization pass is disabled") },
1513 {"missing-noreturn", &warn_missing_noreturn, 1,
1514 N_("Warn about functions which might be candidates for attribute noreturn") }
1517 void
1518 set_Wunused (setting)
1519 int setting;
1521 warn_unused_function = setting;
1522 warn_unused_label = setting;
1523 /* Unused function parameter warnings are reported when either ``-W
1524 -Wunused'' or ``-Wunused-parameter'' is specified. Differentiate
1525 -Wunused by setting WARN_UNUSED_PARAMETER to -1. */
1526 if (!setting)
1527 warn_unused_parameter = 0;
1528 else if (!warn_unused_parameter)
1529 warn_unused_parameter = -1;
1530 warn_unused_variable = setting;
1531 warn_unused_value = setting;
1534 /* The following routines are useful in setting all the flags that
1535 -ffast-math and -fno-fast-math imply. */
1537 void
1538 set_fast_math_flags ()
1540 flag_trapping_math = 0;
1541 flag_unsafe_math_optimizations = 1;
1542 flag_errno_math = 0;
1545 void
1546 set_no_fast_math_flags ()
1548 flag_trapping_math = 1;
1549 flag_unsafe_math_optimizations = 0;
1550 flag_errno_math = 1;
1554 /* Output files for assembler code (real compiler output)
1555 and debugging dumps. */
1557 FILE *asm_out_file;
1558 FILE *aux_info_file;
1559 FILE *rtl_dump_file = NULL;
1561 /* Decode the string P as an integral parameter.
1562 If the string is indeed an integer return its numeric value else
1563 issue an Invalid Option error for the option PNAME and return DEFVAL.
1564 If PNAME is zero just return DEFVAL, do not call error. */
1567 read_integral_parameter (p, pname, defval)
1568 const char *p;
1569 const char *pname;
1570 const int defval;
1572 const char *endp = p;
1574 while (*endp)
1576 if (ISDIGIT (*endp))
1577 endp++;
1578 else
1579 break;
1582 if (*endp != 0)
1584 if (pname != 0)
1585 error ("invalid option `%s'", pname);
1586 return defval;
1589 return atoi (p);
1593 /* This is the default decl_printable_name function. */
1595 static const char *
1596 decl_name (decl, verbosity)
1597 tree decl;
1598 int verbosity ATTRIBUTE_UNUSED;
1600 return IDENTIFIER_POINTER (DECL_NAME (decl));
1604 /* This calls abort and is used to avoid problems when abort if a macro.
1605 It is used when we need to pass the address of abort. */
1607 void
1608 do_abort ()
1610 abort ();
1613 /* When `malloc.c' is compiled with `rcheck' defined,
1614 it calls this function to report clobberage. */
1616 void
1617 botch (s)
1618 const char *s ATTRIBUTE_UNUSED;
1620 abort ();
1623 /* Return the logarithm of X, base 2, considering X unsigned,
1624 if X is a power of 2. Otherwise, returns -1.
1626 This should be used via the `exact_log2' macro. */
1629 exact_log2_wide (x)
1630 unsigned HOST_WIDE_INT x;
1632 int log = 0;
1633 /* Test for 0 or a power of 2. */
1634 if (x == 0 || x != (x & -x))
1635 return -1;
1636 while ((x >>= 1) != 0)
1637 log++;
1638 return log;
1641 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1642 If X is 0, return -1.
1644 This should be used via the floor_log2 macro. */
1647 floor_log2_wide (x)
1648 unsigned HOST_WIDE_INT x;
1650 int log = -1;
1651 while (x != 0)
1652 log++,
1653 x >>= 1;
1654 return log;
1657 static int float_handler_set;
1658 int float_handled;
1659 jmp_buf float_handler;
1661 /* Signals actually come here. */
1663 static void
1664 float_signal (signo)
1665 /* If this is missing, some compilers complain. */
1666 int signo ATTRIBUTE_UNUSED;
1668 if (float_handled == 0)
1669 crash_signal (signo);
1670 float_handled = 0;
1672 /* On System-V derived systems, we must reinstall the signal handler.
1673 This is harmless on BSD-derived systems. */
1674 signal (SIGFPE, float_signal);
1675 longjmp (float_handler, 1);
1678 /* Specify where to longjmp to when a floating arithmetic error happens.
1679 If HANDLER is 0, it means don't handle the errors any more. */
1681 static void
1682 set_float_handler (handler)
1683 jmp_buf handler;
1685 float_handled = (handler != 0);
1686 if (handler)
1687 memcpy (float_handler, handler, sizeof (float_handler));
1689 if (float_handled && ! float_handler_set)
1691 signal (SIGFPE, float_signal);
1692 float_handler_set = 1;
1696 /* This is a wrapper function for code which might elicit an
1697 arithmetic exception. That code should be passed in as a function
1698 pointer FN, and one argument DATA. DATA is usually a struct which
1699 contains the real input and output for function FN. This function
1700 returns 0 (failure) if longjmp was called (i.e. an exception
1701 occurred.) It returns 1 (success) otherwise. */
1704 do_float_handler (fn, data)
1705 void (*fn) PARAMS ((PTR));
1706 PTR data;
1708 jmp_buf buf;
1710 if (setjmp (buf))
1712 /* We got here via longjmp () caused by an exception in function
1713 fn (). */
1714 set_float_handler (NULL);
1715 return 0;
1718 set_float_handler (buf);
1719 (*fn)(data);
1720 set_float_handler (NULL);
1721 return 1;
1724 /* Handler for fatal signals, such as SIGSEGV. These are transformed
1725 into ICE messages, which is much more user friendly. */
1727 static void
1728 crash_signal (signo)
1729 int signo;
1731 internal_error ("internal error: %s", strsignal (signo));
1734 /* Strip off a legitimate source ending from the input string NAME of
1735 length LEN. Rather than having to know the names used by all of
1736 our front ends, we strip off an ending of a period followed by
1737 up to five characters. (Java uses ".class".) */
1739 void
1740 strip_off_ending (name, len)
1741 char *name;
1742 int len;
1744 int i;
1745 for (i = 2; i < 6 && len > i; i++)
1747 if (name[len - i] == '.')
1749 name[len - i] = '\0';
1750 break;
1755 /* Output a quoted string. */
1757 void
1758 output_quoted_string (asm_file, string)
1759 FILE *asm_file;
1760 const char *string;
1762 #ifdef OUTPUT_QUOTED_STRING
1763 OUTPUT_QUOTED_STRING (asm_file, string);
1764 #else
1765 char c;
1767 putc ('\"', asm_file);
1768 while ((c = *string++) != 0)
1770 if (c == '\"' || c == '\\')
1771 putc ('\\', asm_file);
1772 putc (c, asm_file);
1774 putc ('\"', asm_file);
1775 #endif
1778 /* Output a file name in the form wanted by System V. */
1780 void
1781 output_file_directive (asm_file, input_name)
1782 FILE *asm_file;
1783 const char *input_name;
1785 int len = strlen (input_name);
1786 const char *na = input_name + len;
1788 /* NA gets INPUT_NAME sans directory names. */
1789 while (na > input_name)
1791 if (IS_DIR_SEPARATOR (na[-1]))
1792 break;
1793 na--;
1796 #ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
1797 ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file, na);
1798 #else
1799 #ifdef ASM_OUTPUT_SOURCE_FILENAME
1800 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
1801 #else
1802 fprintf (asm_file, "\t.file\t");
1803 output_quoted_string (asm_file, na);
1804 fputc ('\n', asm_file);
1805 #endif
1806 #endif
1809 /* Routine to open a dump file. Return true if the dump file is enabled. */
1811 static int
1812 open_dump_file (index, decl)
1813 enum dump_file_index index;
1814 tree decl;
1816 char *dump_name;
1817 const char *open_arg;
1818 char seq[16];
1820 if (! dump_file[index].enabled)
1821 return 0;
1823 timevar_push (TV_DUMP);
1824 if (rtl_dump_file != NULL)
1825 fclose (rtl_dump_file);
1827 sprintf (seq, DUMPFILE_FORMAT, index);
1829 if (! dump_file[index].initialized)
1831 /* If we've not initialized the files, do so now. */
1832 if (graph_dump_format != no_graph
1833 && dump_file[index].graph_dump_p)
1835 dump_name = concat (seq, dump_file[index].extension, NULL);
1836 clean_graph_dump_file (dump_base_name, dump_name);
1837 free (dump_name);
1839 dump_file[index].initialized = 1;
1840 open_arg = "w";
1842 else
1843 open_arg = "a";
1845 dump_name = concat (dump_base_name, seq,
1846 dump_file[index].extension, NULL);
1848 rtl_dump_file = fopen (dump_name, open_arg);
1849 if (rtl_dump_file == NULL)
1850 fatal_io_error ("can't open %s", dump_name);
1852 free (dump_name);
1854 if (decl)
1855 fprintf (rtl_dump_file, "\n;; Function %s\n\n",
1856 decl_printable_name (decl, 2));
1858 timevar_pop (TV_DUMP);
1859 return 1;
1862 /* Routine to close a dump file. */
1864 static void
1865 close_dump_file (index, func, insns)
1866 enum dump_file_index index;
1867 void (*func) PARAMS ((FILE *, rtx));
1868 rtx insns;
1870 if (! rtl_dump_file)
1871 return;
1873 timevar_push (TV_DUMP);
1874 if (insns
1875 && graph_dump_format != no_graph
1876 && dump_file[index].graph_dump_p)
1878 char seq[16];
1879 char *suffix;
1881 sprintf (seq, DUMPFILE_FORMAT, index);
1882 suffix = concat (seq, dump_file[index].extension, NULL);
1883 print_rtl_graph_with_bb (dump_base_name, suffix, insns);
1884 free (suffix);
1887 if (func && insns)
1888 func (rtl_dump_file, insns);
1890 fflush (rtl_dump_file);
1891 fclose (rtl_dump_file);
1893 rtl_dump_file = NULL;
1894 timevar_pop (TV_DUMP);
1897 /* Do any final processing required for the declarations in VEC, of
1898 which there are LEN. We write out inline functions and variables
1899 that have been deferred until this point, but which are required.
1900 Returns non-zero if anything was put out. */
1903 wrapup_global_declarations (vec, len)
1904 tree *vec;
1905 int len;
1907 tree decl;
1908 int i;
1909 int reconsider;
1910 int output_something = 0;
1912 for (i = 0; i < len; i++)
1914 decl = vec[i];
1916 /* We're not deferring this any longer. */
1917 DECL_DEFER_OUTPUT (decl) = 0;
1919 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0
1920 && incomplete_decl_finalize_hook != 0)
1921 (*incomplete_decl_finalize_hook) (decl);
1924 /* Now emit any global variables or functions that we have been
1925 putting off. We need to loop in case one of the things emitted
1926 here references another one which comes earlier in the list. */
1929 reconsider = 0;
1930 for (i = 0; i < len; i++)
1932 decl = vec[i];
1934 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
1935 continue;
1937 /* Don't write out static consts, unless we still need them.
1939 We also keep static consts if not optimizing (for debugging),
1940 unless the user specified -fno-keep-static-consts.
1941 ??? They might be better written into the debug information.
1942 This is possible when using DWARF.
1944 A language processor that wants static constants to be always
1945 written out (even if it is not used) is responsible for
1946 calling rest_of_decl_compilation itself. E.g. the C front-end
1947 calls rest_of_decl_compilation from finish_decl.
1948 One motivation for this is that is conventional in some
1949 environments to write things like:
1950 static const char rcsid[] = "... version string ...";
1951 intending to force the string to be in the executable.
1953 A language processor that would prefer to have unneeded
1954 static constants "optimized away" would just defer writing
1955 them out until here. E.g. C++ does this, because static
1956 constants are often defined in header files.
1958 ??? A tempting alternative (for both C and C++) would be
1959 to force a constant to be written if and only if it is
1960 defined in a main file, as opposed to an include file. */
1962 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
1963 && (((! TREE_READONLY (decl) || TREE_PUBLIC (decl))
1964 && !DECL_COMDAT (decl))
1965 || (!optimize
1966 && flag_keep_static_consts
1967 && !DECL_ARTIFICIAL (decl))
1968 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1970 reconsider = 1;
1971 rest_of_decl_compilation (decl, NULL, 1, 1);
1974 if (TREE_CODE (decl) == FUNCTION_DECL
1975 && DECL_INITIAL (decl) != 0
1976 && DECL_SAVED_INSNS (decl) != 0
1977 && (flag_keep_inline_functions
1978 || (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1979 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1981 reconsider = 1;
1982 output_inline_function (decl);
1986 if (reconsider)
1987 output_something = 1;
1989 while (reconsider);
1991 return output_something;
1994 /* Issue appropriate warnings for the global declarations in VEC (of
1995 which there are LEN). Output debugging information for them. */
1997 void
1998 check_global_declarations (vec, len)
1999 tree *vec;
2000 int len;
2002 tree decl;
2003 int i;
2005 for (i = 0; i < len; i++)
2007 decl = vec[i];
2009 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
2010 && ! TREE_ASM_WRITTEN (decl))
2011 /* Cancel the RTL for this decl so that, if debugging info
2012 output for global variables is still to come,
2013 this one will be omitted. */
2014 SET_DECL_RTL (decl, NULL_RTX);
2016 /* Warn about any function
2017 declared static but not defined.
2018 We don't warn about variables,
2019 because many programs have static variables
2020 that exist only to get some text into the object file. */
2021 if (TREE_CODE (decl) == FUNCTION_DECL
2022 && (warn_unused_function
2023 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2024 && DECL_INITIAL (decl) == 0
2025 && DECL_EXTERNAL (decl)
2026 && ! DECL_ARTIFICIAL (decl)
2027 && ! TREE_PUBLIC (decl))
2029 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2030 pedwarn_with_decl (decl,
2031 "`%s' used but never defined");
2032 else
2033 warning_with_decl (decl,
2034 "`%s' declared `static' but never defined");
2035 /* This symbol is effectively an "extern" declaration now. */
2036 TREE_PUBLIC (decl) = 1;
2037 assemble_external (decl);
2040 /* Warn about static fns or vars defined but not used,
2041 but not about inline functions or static consts
2042 since defining those in header files is normal practice. */
2043 if (((warn_unused_function
2044 && TREE_CODE (decl) == FUNCTION_DECL && ! DECL_INLINE (decl))
2045 || (warn_unused_variable
2046 && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
2047 && ! DECL_IN_SYSTEM_HEADER (decl)
2048 && ! DECL_EXTERNAL (decl)
2049 && ! TREE_PUBLIC (decl)
2050 && ! TREE_USED (decl)
2051 && (TREE_CODE (decl) == FUNCTION_DECL || ! DECL_REGISTER (decl))
2052 /* The TREE_USED bit for file-scope decls
2053 is kept in the identifier, to handle multiple
2054 external decls in different scopes. */
2055 && ! TREE_USED (DECL_NAME (decl)))
2056 warning_with_decl (decl, "`%s' defined but not used");
2058 timevar_push (TV_SYMOUT);
2059 (*debug_hooks->global_decl) (decl);
2060 timevar_pop (TV_SYMOUT);
2064 /* Save the current INPUT_FILENAME and LINENO on the top entry in the
2065 INPUT_FILE_STACK. Push a new entry for FILE and LINE, and set the
2066 INPUT_FILENAME and LINENO accordingly. */
2068 void
2069 push_srcloc (file, line)
2070 const char *file;
2071 int line;
2073 struct file_stack *fs;
2075 if (input_file_stack)
2077 input_file_stack->name = input_filename;
2078 input_file_stack->line = lineno;
2081 fs = (struct file_stack *) xmalloc (sizeof (struct file_stack));
2082 fs->name = input_filename = file;
2083 fs->line = lineno = line;
2084 fs->indent_level = 0;
2085 fs->next = input_file_stack;
2086 input_file_stack = fs;
2087 input_file_stack_tick++;
2090 /* Pop the top entry off the stack of presently open source files.
2091 Restore the INPUT_FILENAME and LINENO from the new topmost entry on
2092 the stack. */
2094 void
2095 pop_srcloc ()
2097 struct file_stack *fs;
2099 fs = input_file_stack;
2100 input_file_stack = fs->next;
2101 free (fs);
2102 input_file_stack_tick++;
2103 /* The initial source file is never popped. */
2104 if (!input_file_stack)
2105 abort ();
2106 input_filename = input_file_stack->name;
2107 lineno = input_file_stack->line;
2110 /* Compile an entire translation unit. Write a file of assembly
2111 output and various debugging dumps. */
2113 static void
2114 compile_file ()
2116 tree globals;
2118 /* Initialize yet another pass. */
2120 init_final (main_input_filename);
2121 init_branch_prob (dump_base_name);
2123 timevar_push (TV_PARSE);
2125 /* Call the parser, which parses the entire file
2126 (calling rest_of_compilation for each function). */
2127 yyparse ();
2129 /* In case there were missing block closers,
2130 get us back to the global binding level. */
2131 (*lang_hooks.clear_binding_stack) ();
2133 /* Compilation is now finished except for writing
2134 what's left of the symbol table output. */
2136 timevar_pop (TV_PARSE);
2138 if (flag_syntax_only)
2139 return;
2141 globals = getdecls ();
2143 /* Really define vars that have had only a tentative definition.
2144 Really output inline functions that must actually be callable
2145 and have not been output so far. */
2148 int len = list_length (globals);
2149 tree *vec = (tree *) xmalloc (sizeof (tree) * len);
2150 int i;
2151 tree decl;
2153 /* Process the decls in reverse order--earliest first.
2154 Put them into VEC from back to front, then take out from front. */
2156 for (i = 0, decl = globals; i < len; i++, decl = TREE_CHAIN (decl))
2157 vec[len - i - 1] = decl;
2159 wrapup_global_declarations (vec, len);
2161 /* This must occur after the loop to output deferred functions. Else
2162 the profiler initializer would not be emitted if all the functions
2163 in this compilation unit were deferred.
2165 output_func_start_profiler can not cause any additional functions or
2166 data to need to be output, so it need not be in the deferred function
2167 loop above. */
2168 output_func_start_profiler ();
2170 check_global_declarations (vec, len);
2172 /* Clean up. */
2173 free (vec);
2176 /* Write out any pending weak symbol declarations. */
2178 weak_finish ();
2180 /* Do dbx symbols. */
2181 timevar_push (TV_SYMOUT);
2183 #ifdef DWARF2_UNWIND_INFO
2184 if (dwarf2out_do_frame ())
2185 dwarf2out_frame_finish ();
2186 #endif
2188 (*debug_hooks->finish) (main_input_filename);
2189 timevar_pop (TV_SYMOUT);
2191 /* Output some stuff at end of file if nec. */
2193 dw2_output_indirect_constants ();
2195 end_final (dump_base_name);
2197 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
2199 timevar_push (TV_DUMP);
2200 open_dump_file (DFI_bp, NULL);
2202 end_branch_prob ();
2204 close_dump_file (DFI_bp, NULL, NULL_RTX);
2205 timevar_pop (TV_DUMP);
2208 #ifdef ASM_FILE_END
2209 ASM_FILE_END (asm_out_file);
2210 #endif
2212 /* Attach a special .ident directive to the end of the file to identify
2213 the version of GCC which compiled this code. The format of the .ident
2214 string is patterned after the ones produced by native SVR4 compilers. */
2215 #ifdef IDENT_ASM_OP
2216 if (!flag_no_ident)
2217 fprintf (asm_out_file, "%s\"GCC: (GNU) %s\"\n",
2218 IDENT_ASM_OP, version_string);
2219 #endif
2221 if (optimize > 0 && open_dump_file (DFI_combine, NULL))
2223 timevar_push (TV_DUMP);
2224 dump_combine_total_stats (rtl_dump_file);
2225 close_dump_file (DFI_combine, NULL, NULL_RTX);
2226 timevar_pop (TV_DUMP);
2230 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
2231 and TYPE_DECL nodes.
2233 This does nothing for local (non-static) variables, unless the
2234 variable is a register variable with an ASMSPEC. In that case, or
2235 if the variable is not an automatic, it sets up the RTL and
2236 outputs any assembler code (label definition, storage allocation
2237 and initialization).
2239 DECL is the declaration. If ASMSPEC is nonzero, it specifies
2240 the assembler symbol name to be used. TOP_LEVEL is nonzero
2241 if this declaration is not within a function. */
2243 void
2244 rest_of_decl_compilation (decl, asmspec, top_level, at_end)
2245 tree decl;
2246 const char *asmspec;
2247 int top_level;
2248 int at_end;
2250 /* Declarations of variables, and of functions defined elsewhere. */
2252 /* The most obvious approach, to put an #ifndef around where
2253 this macro is used, doesn't work since it's inside a macro call. */
2254 #ifndef ASM_FINISH_DECLARE_OBJECT
2255 #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP, END)
2256 #endif
2258 /* Forward declarations for nested functions are not "external",
2259 but we need to treat them as if they were. */
2260 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
2261 || TREE_CODE (decl) == FUNCTION_DECL)
2263 timevar_push (TV_VARCONST);
2264 if (asmspec)
2265 make_decl_rtl (decl, asmspec);
2266 /* Don't output anything
2267 when a tentative file-scope definition is seen.
2268 But at end of compilation, do output code for them. */
2269 if (at_end || !DECL_DEFER_OUTPUT (decl))
2270 assemble_variable (decl, top_level, at_end, 0);
2271 if (decl == last_assemble_variable_decl)
2273 ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
2274 top_level, at_end);
2276 timevar_pop (TV_VARCONST);
2278 else if (DECL_REGISTER (decl) && asmspec != 0)
2280 if (decode_reg_name (asmspec) >= 0)
2282 SET_DECL_RTL (decl, NULL_RTX);
2283 make_decl_rtl (decl, asmspec);
2285 else
2287 error ("invalid register name `%s' for register variable", asmspec);
2288 DECL_REGISTER (decl) = 0;
2289 if (!top_level)
2290 expand_decl (decl);
2293 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2294 else if ((write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2295 && TREE_CODE (decl) == TYPE_DECL)
2297 timevar_push (TV_SYMOUT);
2298 dbxout_symbol (decl, 0);
2299 timevar_pop (TV_SYMOUT);
2301 #endif
2302 #ifdef SDB_DEBUGGING_INFO
2303 else if (write_symbols == SDB_DEBUG && top_level
2304 && TREE_CODE (decl) == TYPE_DECL)
2306 timevar_push (TV_SYMOUT);
2307 sdbout_symbol (decl, 0);
2308 timevar_pop (TV_SYMOUT);
2310 #endif
2313 /* Called after finishing a record, union or enumeral type. */
2315 void
2316 rest_of_type_compilation (type, toplev)
2317 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO) || defined (SDB_DEBUGGING_INFO)
2318 tree type;
2319 int toplev;
2320 #else
2321 tree type ATTRIBUTE_UNUSED;
2322 int toplev ATTRIBUTE_UNUSED;
2323 #endif
2325 timevar_push (TV_SYMOUT);
2326 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2327 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2328 dbxout_symbol (TYPE_STUB_DECL (type), !toplev);
2329 #endif
2330 #ifdef SDB_DEBUGGING_INFO
2331 if (write_symbols == SDB_DEBUG)
2332 sdbout_symbol (TYPE_STUB_DECL (type), !toplev);
2333 #endif
2334 #ifdef DWARF2_DEBUGGING_INFO
2335 if ((write_symbols == DWARF2_DEBUG
2336 || write_symbols == VMS_AND_DWARF2_DEBUG)
2337 && toplev)
2338 dwarf2out_decl (TYPE_STUB_DECL (type));
2339 #endif
2340 timevar_pop (TV_SYMOUT);
2343 /* This is called from finish_function (within yyparse)
2344 after each top-level definition is parsed.
2345 It is supposed to compile that function or variable
2346 and output the assembler code for it.
2347 After we return, the tree storage is freed. */
2349 void
2350 rest_of_compilation (decl)
2351 tree decl;
2353 rtx insns;
2354 int tem;
2355 int failure = 0;
2356 int rebuild_label_notes_after_reload;
2357 int register_life_up_to_date;
2359 timevar_push (TV_REST_OF_COMPILATION);
2361 /* Now that we're out of the frontend, we shouldn't have any more
2362 CONCATs anywhere. */
2363 generating_concat_p = 0;
2365 /* When processing delayed functions, prepare_function_start() won't
2366 have been run to re-initialize it. */
2367 cse_not_expected = ! optimize;
2369 /* First, make sure that NOTE_BLOCK is set correctly for each
2370 NOTE_INSN_BLOCK_BEG/NOTE_INSN_BLOCK_END note. */
2371 if (!cfun->x_whole_function_mode_p)
2372 identify_blocks ();
2374 /* Then remove any notes we don't need. That will make iterating
2375 over the instruction sequence faster, and allow the garbage
2376 collector to reclaim the memory used by the notes. */
2377 remove_unnecessary_notes ();
2379 /* In function-at-a-time mode, we do not attempt to keep the BLOCK
2380 tree in sensible shape. So, we just recalculate it here. */
2381 if (cfun->x_whole_function_mode_p)
2382 reorder_blocks ();
2384 init_flow ();
2386 /* If we are reconsidering an inline function
2387 at the end of compilation, skip the stuff for making it inline. */
2389 if (DECL_SAVED_INSNS (decl) == 0)
2391 int inlinable = 0;
2392 tree parent;
2393 const char *lose;
2395 /* If this is nested inside an inlined external function, pretend
2396 it was only declared. Since we cannot inline such functions,
2397 generating code for this one is not only not necessary but will
2398 confuse some debugging output writers. */
2399 for (parent = DECL_CONTEXT (current_function_decl);
2400 parent != NULL_TREE;
2401 parent = get_containing_scope (parent))
2402 if (TREE_CODE (parent) == FUNCTION_DECL
2403 && DECL_INLINE (parent) && DECL_EXTERNAL (parent))
2405 DECL_INITIAL (decl) = 0;
2406 goto exit_rest_of_compilation;
2409 /* If requested, consider whether to make this function inline. */
2410 if ((DECL_INLINE (decl) && !flag_no_inline)
2411 || flag_inline_functions)
2413 timevar_push (TV_INTEGRATION);
2414 lose = function_cannot_inline_p (decl);
2415 timevar_pop (TV_INTEGRATION);
2416 if (lose || ! optimize)
2418 if (warn_inline && DECL_INLINE (decl))
2419 warning_with_decl (decl, lose);
2420 DECL_ABSTRACT_ORIGIN (decl) = 0;
2421 /* Don't really compile an extern inline function.
2422 If we can't make it inline, pretend
2423 it was only declared. */
2424 if (DECL_EXTERNAL (decl))
2426 DECL_INITIAL (decl) = 0;
2427 goto exit_rest_of_compilation;
2430 else
2431 /* ??? Note that this has the effect of making it look
2432 like "inline" was specified for a function if we choose
2433 to inline it. This isn't quite right, but it's
2434 probably not worth the trouble to fix. */
2435 inlinable = DECL_INLINE (decl) = 1;
2438 insns = get_insns ();
2440 /* Dump the rtl code if we are dumping rtl. */
2442 if (open_dump_file (DFI_rtl, decl))
2444 if (DECL_SAVED_INSNS (decl))
2445 fprintf (rtl_dump_file, ";; (integrable)\n\n");
2446 close_dump_file (DFI_rtl, print_rtl, insns);
2449 /* Convert from NOTE_INSN_EH_REGION style notes, and do other
2450 sorts of eh initialization. Delay this until after the
2451 initial rtl dump so that we can see the original nesting. */
2452 convert_from_eh_region_ranges ();
2454 /* If function is inline, and we don't yet know whether to
2455 compile it by itself, defer decision till end of compilation.
2456 finish_compilation will call rest_of_compilation again
2457 for those functions that need to be output. Also defer those
2458 functions that we are supposed to defer. */
2460 if (inlinable
2461 || (DECL_INLINE (decl)
2462 && ((! TREE_PUBLIC (decl) && ! TREE_ADDRESSABLE (decl)
2463 && ! flag_keep_inline_functions)
2464 || DECL_EXTERNAL (decl))))
2465 DECL_DEFER_OUTPUT (decl) = 1;
2467 if (DECL_INLINE (decl))
2468 /* DWARF wants separate debugging info for abstract and
2469 concrete instances of all inline functions, including those
2470 declared inline but not inlined, and those inlined even
2471 though they weren't declared inline. Conveniently, that's
2472 what DECL_INLINE means at this point. */
2473 (*debug_hooks->deferred_inline_function) (decl);
2475 if (DECL_DEFER_OUTPUT (decl))
2477 /* If -Wreturn-type, we have to do a bit of compilation. We just
2478 want to call cleanup the cfg to figure out whether or not we can
2479 fall off the end of the function; we do the minimum amount of
2480 work necessary to make that safe. */
2481 if (warn_return_type)
2483 int saved_optimize = optimize;
2485 optimize = 0;
2486 rebuild_jump_labels (insns);
2487 find_exception_handler_labels ();
2488 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2489 cleanup_cfg (CLEANUP_PRE_SIBCALL | CLEANUP_PRE_LOOP);
2490 optimize = saved_optimize;
2492 /* CFG is no longer maintained up-to-date. */
2493 free_bb_for_insn ();
2496 current_function_nothrow = nothrow_function_p ();
2497 if (current_function_nothrow)
2498 /* Now we know that this can't throw; set the flag for the benefit
2499 of other functions later in this translation unit. */
2500 TREE_NOTHROW (current_function_decl) = 1;
2502 timevar_push (TV_INTEGRATION);
2503 save_for_inline (decl);
2504 timevar_pop (TV_INTEGRATION);
2505 DECL_SAVED_INSNS (decl)->inlinable = inlinable;
2506 goto exit_rest_of_compilation;
2509 /* If specified extern inline but we aren't inlining it, we are
2510 done. This goes for anything that gets here with DECL_EXTERNAL
2511 set, not just things with DECL_INLINE. */
2512 if (DECL_EXTERNAL (decl))
2513 goto exit_rest_of_compilation;
2516 ggc_collect ();
2518 /* Initialize some variables used by the optimizers. */
2519 init_function_for_compilation ();
2521 if (! DECL_DEFER_OUTPUT (decl))
2522 TREE_ASM_WRITTEN (decl) = 1;
2524 /* Now that integrate will no longer see our rtl, we need not
2525 distinguish between the return value of this function and the
2526 return value of called functions. Also, we can remove all SETs
2527 of subregs of hard registers; they are only here because of
2528 integrate. Also, we can now initialize pseudos intended to
2529 carry magic hard reg data throughout the function. */
2530 rtx_equal_function_value_matters = 0;
2531 purge_hard_subreg_sets (get_insns ());
2532 emit_initial_value_sets ();
2534 /* Don't return yet if -Wreturn-type; we need to do cleanup_cfg. */
2535 if ((rtl_dump_and_exit || flag_syntax_only) && !warn_return_type)
2536 goto exit_rest_of_compilation;
2538 /* We may have potential sibling or tail recursion sites. Select one
2539 (of possibly multiple) methods of performing the call. */
2540 if (flag_optimize_sibling_calls)
2542 timevar_push (TV_JUMP);
2543 open_dump_file (DFI_sibling, decl);
2545 optimize_sibling_and_tail_recursive_calls ();
2547 close_dump_file (DFI_sibling, print_rtl, get_insns ());
2548 timevar_pop (TV_JUMP);
2551 /* Complete generation of exception handling code. */
2552 find_exception_handler_labels ();
2553 if (doing_eh (0))
2555 timevar_push (TV_JUMP);
2556 open_dump_file (DFI_eh, decl);
2558 finish_eh_generation ();
2560 close_dump_file (DFI_eh, print_rtl, get_insns ());
2561 timevar_pop (TV_JUMP);
2564 #ifdef FINALIZE_PIC
2565 /* If we are doing position-independent code generation, now
2566 is the time to output special prologues and epilogues.
2567 We do not want to do this earlier, because it just clutters
2568 up inline functions with meaningless insns. */
2569 if (flag_pic)
2570 FINALIZE_PIC;
2571 #endif
2573 insns = get_insns ();
2575 /* Copy any shared structure that should not be shared. */
2576 unshare_all_rtl (current_function_decl, insns);
2578 #ifdef SETJMP_VIA_SAVE_AREA
2579 /* This must be performed before virtual register instantiation. */
2580 if (current_function_calls_alloca)
2581 optimize_save_area_alloca (insns);
2582 #endif
2584 /* Instantiate all virtual registers. */
2585 instantiate_virtual_regs (current_function_decl, insns);
2587 open_dump_file (DFI_jump, decl);
2589 /* Always do one jump optimization pass to ensure that JUMP_LABEL fields
2590 are initialized and to compute whether control can drop off the end
2591 of the function. */
2593 timevar_push (TV_JUMP);
2594 /* Turn NOTE_INSN_EXPECTED_VALUE into REG_BR_PROB. Do this
2595 before jump optimization switches branch directions. */
2596 expected_value_to_br_prob ();
2598 reg_scan (insns, max_reg_num (), 0);
2599 rebuild_jump_labels (insns);
2600 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2601 cleanup_cfg ((optimize ? CLEANUP_EXPENSIVE : 0) | CLEANUP_PRE_LOOP);
2603 /* CFG is no longer maintained up-to-date. */
2604 free_bb_for_insn ();
2605 copy_loop_headers (insns);
2606 purge_line_number_notes (insns);
2608 timevar_pop (TV_JUMP);
2610 /* Now is when we stop if -fsyntax-only and -Wreturn-type. */
2611 if (rtl_dump_and_exit || flag_syntax_only || DECL_DEFER_OUTPUT (decl))
2613 close_dump_file (DFI_jump, print_rtl, insns);
2614 goto exit_rest_of_compilation;
2617 /* Long term, this should probably move before the jump optimizer too,
2618 but I didn't want to disturb the rtl_dump_and_exit and related
2619 stuff at this time. */
2620 if (optimize > 0 && flag_ssa)
2622 /* Convert to SSA form. */
2624 timevar_push (TV_TO_SSA);
2625 open_dump_file (DFI_ssa, decl);
2627 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2628 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2629 convert_to_ssa ();
2631 close_dump_file (DFI_ssa, print_rtl_with_bb, insns);
2632 timevar_pop (TV_TO_SSA);
2634 /* Perform sparse conditional constant propagation, if requested. */
2635 if (flag_ssa_ccp)
2637 timevar_push (TV_SSA_CCP);
2638 open_dump_file (DFI_ssa_ccp, decl);
2640 ssa_const_prop ();
2642 close_dump_file (DFI_ssa_ccp, print_rtl_with_bb, get_insns ());
2643 timevar_pop (TV_SSA_CCP);
2646 /* It would be useful to cleanup the CFG at this point, but block
2647 merging and possibly other transformations might leave a PHI
2648 node in the middle of a basic block, which is a strict no-no. */
2650 /* The SSA implementation uses basic block numbers in its phi
2651 nodes. Thus, changing the control-flow graph or the basic
2652 blocks, e.g., calling find_basic_blocks () or cleanup_cfg (),
2653 may cause problems. */
2655 if (flag_ssa_dce)
2657 /* Remove dead code. */
2659 timevar_push (TV_SSA_DCE);
2660 open_dump_file (DFI_ssa_dce, decl);
2662 insns = get_insns ();
2663 ssa_eliminate_dead_code();
2665 close_dump_file (DFI_ssa_dce, print_rtl_with_bb, insns);
2666 timevar_pop (TV_SSA_DCE);
2669 /* Convert from SSA form. */
2671 timevar_push (TV_FROM_SSA);
2672 open_dump_file (DFI_ussa, decl);
2674 convert_from_ssa ();
2675 /* New registers have been created. Rescan their usage. */
2676 reg_scan (insns, max_reg_num (), 1);
2678 close_dump_file (DFI_ussa, print_rtl_with_bb, insns);
2679 timevar_pop (TV_FROM_SSA);
2681 ggc_collect ();
2682 /* CFG is no longer maintained up-to-date. */
2683 free_bb_for_insn ();
2686 timevar_push (TV_JUMP);
2688 if (optimize > 0)
2690 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2691 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2693 /* ??? Run if-conversion before delete_null_pointer_checks,
2694 since the later does not preserve the CFG. This should
2695 be changed -- no since converting if's that are going to
2696 be deleted. */
2697 timevar_push (TV_IFCVT);
2698 if_convert (0);
2699 timevar_pop (TV_IFCVT);
2701 /* CFG is no longer maintained up-to-date. */
2702 free_bb_for_insn ();
2703 /* Try to identify useless null pointer tests and delete them. */
2704 if (flag_delete_null_pointer_checks)
2705 delete_null_pointer_checks (insns);
2708 /* Jump optimization, and the removal of NULL pointer checks, may
2709 have reduced the number of instructions substantially. CSE, and
2710 future passes, allocate arrays whose dimensions involve the
2711 maximum instruction UID, so if we can reduce the maximum UID
2712 we'll save big on memory. */
2713 renumber_insns (rtl_dump_file);
2714 timevar_pop (TV_JUMP);
2716 close_dump_file (DFI_jump, print_rtl, insns);
2718 ggc_collect ();
2720 /* Perform common subexpression elimination.
2721 Nonzero value from `cse_main' means that jumps were simplified
2722 and some code may now be unreachable, so do
2723 jump optimization again. */
2725 if (optimize > 0)
2727 open_dump_file (DFI_cse, decl);
2728 timevar_push (TV_CSE);
2730 reg_scan (insns, max_reg_num (), 1);
2732 if (flag_thread_jumps)
2734 timevar_push (TV_JUMP);
2735 thread_jumps (insns, max_reg_num (), 1);
2736 timevar_pop (TV_JUMP);
2739 tem = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2741 /* If we are not running more CSE passes, then we are no longer
2742 expecting CSE to be run. But always rerun it in a cheap mode. */
2743 cse_not_expected = !flag_rerun_cse_after_loop && !flag_gcse;
2745 if (tem || optimize > 1)
2747 timevar_push (TV_JUMP);
2748 rebuild_jump_labels (insns);
2749 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2750 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2751 timevar_pop (TV_JUMP);
2752 /* CFG is no longer maintained up-to-date. */
2753 free_bb_for_insn ();
2756 /* Run this after jump optmizations remove all the unreachable code
2757 so that unreachable code will not keep values live. */
2758 delete_trivially_dead_insns (insns, max_reg_num (), 0);
2760 /* Try to identify useless null pointer tests and delete them. */
2761 if (flag_delete_null_pointer_checks)
2763 timevar_push (TV_JUMP);
2764 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2766 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2768 delete_null_pointer_checks (insns);
2769 /* CFG is no longer maintained up-to-date. */
2770 free_bb_for_insn ();
2771 timevar_pop (TV_JUMP);
2774 /* The second pass of jump optimization is likely to have
2775 removed a bunch more instructions. */
2776 renumber_insns (rtl_dump_file);
2778 timevar_pop (TV_CSE);
2779 close_dump_file (DFI_cse, print_rtl, insns);
2782 open_dump_file (DFI_addressof, decl);
2784 purge_addressof (insns);
2785 reg_scan (insns, max_reg_num (), 1);
2787 close_dump_file (DFI_addressof, print_rtl, insns);
2789 ggc_collect ();
2791 /* Perform global cse. */
2793 if (optimize > 0 && flag_gcse)
2795 int save_csb, save_cfj;
2796 int tem2 = 0;
2798 timevar_push (TV_GCSE);
2799 open_dump_file (DFI_gcse, decl);
2801 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2802 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2803 tem = gcse_main (insns, rtl_dump_file);
2805 save_csb = flag_cse_skip_blocks;
2806 save_cfj = flag_cse_follow_jumps;
2807 flag_cse_skip_blocks = flag_cse_follow_jumps = 0;
2809 /* CFG is no longer maintained up-to-date. */
2810 free_bb_for_insn ();
2811 /* If -fexpensive-optimizations, re-run CSE to clean up things done
2812 by gcse. */
2813 if (flag_expensive_optimizations)
2815 timevar_push (TV_CSE);
2816 reg_scan (insns, max_reg_num (), 1);
2817 tem2 = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2818 timevar_pop (TV_CSE);
2819 cse_not_expected = !flag_rerun_cse_after_loop;
2822 /* If gcse or cse altered any jumps, rerun jump optimizations to clean
2823 things up. Then possibly re-run CSE again. */
2824 while (tem || tem2)
2826 tem = tem2 = 0;
2827 timevar_push (TV_JUMP);
2828 rebuild_jump_labels (insns);
2829 delete_trivially_dead_insns (insns, max_reg_num (), 0);
2830 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2831 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2832 /* CFG is no longer maintained up-to-date. */
2833 free_bb_for_insn ();
2834 timevar_pop (TV_JUMP);
2836 if (flag_expensive_optimizations)
2838 timevar_push (TV_CSE);
2839 reg_scan (insns, max_reg_num (), 1);
2840 tem2 = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2841 timevar_pop (TV_CSE);
2845 close_dump_file (DFI_gcse, print_rtl, insns);
2846 timevar_pop (TV_GCSE);
2848 ggc_collect ();
2849 flag_cse_skip_blocks = save_csb;
2850 flag_cse_follow_jumps = save_cfj;
2853 /* Move constant computations out of loops. */
2855 if (optimize > 0)
2857 timevar_push (TV_LOOP);
2858 open_dump_file (DFI_loop, decl);
2859 free_bb_for_insn ();
2861 if (flag_rerun_loop_opt)
2863 cleanup_barriers ();
2865 /* We only want to perform unrolling once. */
2867 loop_optimize (insns, rtl_dump_file, 0);
2869 /* The first call to loop_optimize makes some instructions
2870 trivially dead. We delete those instructions now in the
2871 hope that doing so will make the heuristics in loop work
2872 better and possibly speed up compilation. */
2873 delete_trivially_dead_insns (insns, max_reg_num (), 0);
2875 /* The regscan pass is currently necessary as the alias
2876 analysis code depends on this information. */
2877 reg_scan (insns, max_reg_num (), 1);
2879 cleanup_barriers ();
2880 loop_optimize (insns, rtl_dump_file,
2881 (flag_unroll_loops ? LOOP_UNROLL : 0) | LOOP_BCT);
2883 close_dump_file (DFI_loop, print_rtl, insns);
2884 timevar_pop (TV_LOOP);
2886 ggc_collect ();
2889 if (optimize > 0)
2891 timevar_push (TV_CSE2);
2892 open_dump_file (DFI_cse2, decl);
2894 if (flag_rerun_cse_after_loop)
2896 /* Running another jump optimization pass before the second
2897 cse pass sometimes simplifies the RTL enough to allow
2898 the second CSE pass to do a better job. Jump_optimize can change
2899 max_reg_num so we must rerun reg_scan afterwards.
2900 ??? Rework to not call reg_scan so often. */
2901 timevar_push (TV_JUMP);
2903 /* The previous call to loop_optimize makes some instructions
2904 trivially dead. We delete those instructions now in the
2905 hope that doing so will make the heuristics in jump work
2906 better and possibly speed up compilation. */
2907 delete_trivially_dead_insns (insns, max_reg_num (), 0);
2909 reg_scan (insns, max_reg_num (), 0);
2911 timevar_push (TV_IFCVT);
2913 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2914 cleanup_cfg (CLEANUP_EXPENSIVE);
2915 if_convert (0);
2917 timevar_pop(TV_IFCVT);
2919 timevar_pop (TV_JUMP);
2921 /* CFG is no longer maintained up-to-date. */
2922 free_bb_for_insn ();
2923 reg_scan (insns, max_reg_num (), 0);
2924 tem = cse_main (insns, max_reg_num (), 1, rtl_dump_file);
2926 if (tem)
2928 timevar_push (TV_JUMP);
2929 rebuild_jump_labels (insns);
2930 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2931 cleanup_cfg (CLEANUP_EXPENSIVE);
2932 /* CFG is no longer maintained up-to-date. */
2933 free_bb_for_insn ();
2934 timevar_pop (TV_JUMP);
2938 if (flag_thread_jumps)
2940 /* This pass of jump threading straightens out code
2941 that was kinked by loop optimization. */
2942 timevar_push (TV_JUMP);
2943 reg_scan (insns, max_reg_num (), 0);
2944 thread_jumps (insns, max_reg_num (), 0);
2945 timevar_pop (TV_JUMP);
2948 close_dump_file (DFI_cse2, print_rtl, insns);
2949 timevar_pop (TV_CSE2);
2951 ggc_collect ();
2954 cse_not_expected = 1;
2956 regclass_init ();
2958 /* Do control and data flow analysis; wrote some of the results to
2959 the dump file. */
2961 timevar_push (TV_FLOW);
2962 open_dump_file (DFI_cfg, decl);
2964 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2965 cleanup_cfg (optimize ? CLEANUP_EXPENSIVE : 0);
2966 check_function_return_warnings ();
2968 /* It may make more sense to mark constant functions after dead code is
2969 eliminated by life_analyzis, but we need to do it early, as -fprofile-arcs
2970 may insert code making function non-constant, but we still must consider
2971 it as constant, otherwise -fbranch-probabilities will not read data back.
2973 life_analyzis rarely eliminates modification of external memory.
2975 mark_constant_function ();
2977 close_dump_file (DFI_cfg, print_rtl_with_bb, insns);
2979 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
2981 timevar_push (TV_BRANCH_PROB);
2982 open_dump_file (DFI_bp, decl);
2984 branch_prob ();
2986 close_dump_file (DFI_bp, print_rtl_with_bb, insns);
2987 timevar_pop (TV_BRANCH_PROB);
2990 open_dump_file (DFI_life, decl);
2991 if (optimize)
2993 struct loops loops;
2995 /* Discover and record the loop depth at the head of each basic
2996 block. The loop infrastructure does the real job for us. */
2997 flow_loops_find (&loops, LOOP_TREE);
2999 /* Estimate using heuristics if no profiling info is available. */
3000 if (flag_guess_branch_prob)
3001 estimate_probability (&loops);
3003 if (rtl_dump_file)
3004 flow_loops_dump (&loops, rtl_dump_file, NULL, 0);
3006 flow_loops_free (&loops);
3008 life_analysis (insns, rtl_dump_file, PROP_FINAL);
3009 timevar_pop (TV_FLOW);
3011 no_new_pseudos = 1;
3013 if (warn_uninitialized || extra_warnings)
3015 uninitialized_vars_warning (DECL_INITIAL (decl));
3016 if (extra_warnings)
3017 setjmp_args_warning ();
3020 close_dump_file (DFI_life, print_rtl_with_bb, insns);
3022 ggc_collect ();
3024 /* If -opt, try combining insns through substitution. */
3026 if (optimize > 0)
3028 int rebuild_jump_labels_after_combine = 0;
3030 timevar_push (TV_COMBINE);
3031 open_dump_file (DFI_combine, decl);
3033 rebuild_jump_labels_after_combine
3034 = combine_instructions (insns, max_reg_num ());
3036 /* Always purge dead edges, as we may eliminate an insn throwing
3037 exception. */
3038 rebuild_jump_labels_after_combine |= purge_all_dead_edges (true);
3040 /* Combining insns may have turned an indirect jump into a
3041 direct jump. Rebuid the JUMP_LABEL fields of jumping
3042 instructions. */
3043 if (rebuild_jump_labels_after_combine)
3045 timevar_push (TV_JUMP);
3046 rebuild_jump_labels (insns);
3047 timevar_pop (TV_JUMP);
3049 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_UPDATE_LIFE);
3052 close_dump_file (DFI_combine, print_rtl_with_bb, insns);
3053 timevar_pop (TV_COMBINE);
3055 ggc_collect ();
3058 /* Rerun if-conversion, as combine may have simplified things enough to
3059 now meet sequence length restrictions. */
3060 if (optimize > 0)
3062 timevar_push (TV_IFCVT);
3063 open_dump_file (DFI_ce, decl);
3065 no_new_pseudos = 0;
3066 if_convert (1);
3067 no_new_pseudos = 1;
3069 close_dump_file (DFI_ce, print_rtl_with_bb, insns);
3070 timevar_pop (TV_IFCVT);
3073 /* Register allocation pre-pass, to reduce number of moves
3074 necessary for two-address machines. */
3075 if (optimize > 0 && (flag_regmove || flag_expensive_optimizations))
3077 timevar_push (TV_REGMOVE);
3078 open_dump_file (DFI_regmove, decl);
3080 regmove_optimize (insns, max_reg_num (), rtl_dump_file);
3082 close_dump_file (DFI_regmove, print_rtl_with_bb, insns);
3083 timevar_pop (TV_REGMOVE);
3085 ggc_collect ();
3088 /* Do unconditional splitting before register allocation to allow machine
3089 description to add extra information not needed previously. */
3090 split_all_insns (1);
3092 /* Any of the several passes since flow1 will have munged register
3093 lifetime data a bit. */
3094 register_life_up_to_date = 0;
3096 #ifdef OPTIMIZE_MODE_SWITCHING
3097 timevar_push (TV_MODE_SWITCH);
3099 no_new_pseudos = 0;
3100 if (optimize_mode_switching (NULL))
3102 /* We did work, and so had to regenerate global life information.
3103 Take advantage of this and don't re-recompute register life
3104 information below. */
3105 register_life_up_to_date = 1;
3107 no_new_pseudos = 1;
3109 timevar_pop (TV_MODE_SWITCH);
3110 #endif
3112 timevar_push (TV_SCHED);
3114 #ifdef INSN_SCHEDULING
3116 /* Print function header into sched dump now
3117 because doing the sched analysis makes some of the dump. */
3118 if (optimize > 0 && flag_schedule_insns)
3120 open_dump_file (DFI_sched, decl);
3122 /* Do control and data sched analysis,
3123 and write some of the results to dump file. */
3125 schedule_insns (rtl_dump_file);
3127 close_dump_file (DFI_sched, print_rtl_with_bb, insns);
3129 /* Register lifetime information was updated as part of verifying
3130 the schedule. */
3131 register_life_up_to_date = 1;
3133 #endif
3134 timevar_pop (TV_SCHED);
3136 ggc_collect ();
3138 /* Determine if the current function is a leaf before running reload
3139 since this can impact optimizations done by the prologue and
3140 epilogue thus changing register elimination offsets. */
3141 current_function_is_leaf = leaf_function_p ();
3143 timevar_push (TV_LOCAL_ALLOC);
3144 open_dump_file (DFI_lreg, decl);
3146 /* Allocate pseudo-regs that are used only within 1 basic block.
3148 RUN_JUMP_AFTER_RELOAD records whether or not we need to rerun the
3149 jump optimizer after register allocation and reloading are finished. */
3151 if (! register_life_up_to_date)
3152 recompute_reg_usage (insns, ! optimize_size);
3154 /* Allocate the reg_renumber array. */
3155 allocate_reg_info (max_regno, FALSE, TRUE);
3157 /* And the reg_equiv_memory_loc array. */
3158 reg_equiv_memory_loc = (rtx *) xcalloc (max_regno, sizeof (rtx));
3160 allocate_initial_values (reg_equiv_memory_loc);
3162 regclass (insns, max_reg_num (), rtl_dump_file);
3163 rebuild_label_notes_after_reload = local_alloc ();
3165 timevar_pop (TV_LOCAL_ALLOC);
3167 if (dump_file[DFI_lreg].enabled)
3169 timevar_push (TV_DUMP);
3171 dump_flow_info (rtl_dump_file);
3172 dump_local_alloc (rtl_dump_file);
3174 close_dump_file (DFI_lreg, print_rtl_with_bb, insns);
3175 timevar_pop (TV_DUMP);
3178 ggc_collect ();
3180 timevar_push (TV_GLOBAL_ALLOC);
3181 open_dump_file (DFI_greg, decl);
3183 /* If optimizing, allocate remaining pseudo-regs. Do the reload
3184 pass fixing up any insns that are invalid. */
3186 if (optimize)
3187 failure = global_alloc (rtl_dump_file);
3188 else
3190 build_insn_chain (insns);
3191 failure = reload (insns, 0);
3194 timevar_pop (TV_GLOBAL_ALLOC);
3196 if (dump_file[DFI_greg].enabled)
3198 timevar_push (TV_DUMP);
3200 dump_global_regs (rtl_dump_file);
3202 close_dump_file (DFI_greg, print_rtl_with_bb, insns);
3203 timevar_pop (TV_DUMP);
3206 if (failure)
3207 goto exit_rest_of_compilation;
3209 ggc_collect ();
3211 open_dump_file (DFI_postreload, decl);
3213 /* Do a very simple CSE pass over just the hard registers. */
3214 if (optimize > 0)
3216 timevar_push (TV_RELOAD_CSE_REGS);
3217 reload_cse_regs (insns);
3218 timevar_pop (TV_RELOAD_CSE_REGS);
3221 /* Register allocation and reloading may have turned an indirect jump into
3222 a direct jump. If so, we must rebuild the JUMP_LABEL fields of
3223 jumping instructions. */
3224 if (rebuild_label_notes_after_reload)
3226 timevar_push (TV_JUMP);
3228 rebuild_jump_labels (insns);
3230 timevar_pop (TV_JUMP);
3233 close_dump_file (DFI_postreload, print_rtl_with_bb, insns);
3235 /* Re-create the death notes which were deleted during reload. */
3236 timevar_push (TV_FLOW2);
3237 open_dump_file (DFI_flow2, decl);
3239 #ifdef ENABLE_CHECKING
3240 verify_flow_info ();
3241 #endif
3243 /* If optimizing, then go ahead and split insns now. */
3244 if (optimize > 0)
3245 split_all_insns (0);
3247 cleanup_cfg (optimize ? CLEANUP_EXPENSIVE : 0);
3249 /* On some machines, the prologue and epilogue code, or parts thereof,
3250 can be represented as RTL. Doing so lets us schedule insns between
3251 it and the rest of the code and also allows delayed branch
3252 scheduling to operate in the epilogue. */
3253 thread_prologue_and_epilogue_insns (insns);
3255 if (optimize)
3257 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_CROSSJUMP);
3258 life_analysis (insns, rtl_dump_file, PROP_FINAL);
3260 /* This is kind of a heuristic. We need to run combine_stack_adjustments
3261 even for machines with possibly nonzero RETURN_POPS_ARGS
3262 and ACCUMULATE_OUTGOING_ARGS. We expect that only ports having
3263 push instructions will have popping returns. */
3264 #ifndef PUSH_ROUNDING
3265 if (!ACCUMULATE_OUTGOING_ARGS)
3266 #endif
3267 combine_stack_adjustments ();
3269 ggc_collect ();
3272 flow2_completed = 1;
3274 close_dump_file (DFI_flow2, print_rtl_with_bb, insns);
3275 timevar_pop (TV_FLOW2);
3277 #ifdef HAVE_peephole2
3278 if (optimize > 0 && flag_peephole2)
3280 timevar_push (TV_PEEPHOLE2);
3281 open_dump_file (DFI_peephole2, decl);
3283 peephole2_optimize (rtl_dump_file);
3285 close_dump_file (DFI_peephole2, print_rtl_with_bb, insns);
3286 timevar_pop (TV_PEEPHOLE2);
3288 #endif
3290 if (optimize > 0 && flag_rename_registers)
3292 timevar_push (TV_RENAME_REGISTERS);
3293 open_dump_file (DFI_rnreg, decl);
3295 regrename_optimize ();
3297 close_dump_file (DFI_rnreg, print_rtl_with_bb, insns);
3298 timevar_pop (TV_RENAME_REGISTERS);
3301 if (optimize > 0)
3303 timevar_push (TV_IFCVT2);
3304 open_dump_file (DFI_ce2, decl);
3306 if_convert (1);
3308 close_dump_file (DFI_ce2, print_rtl_with_bb, insns);
3309 timevar_pop (TV_IFCVT2);
3311 #ifdef STACK_REGS
3312 if (optimize)
3313 split_all_insns (1);
3314 #endif
3316 #ifdef INSN_SCHEDULING
3317 if (optimize > 0 && flag_schedule_insns_after_reload)
3319 timevar_push (TV_SCHED2);
3320 open_dump_file (DFI_sched2, decl);
3322 /* Do control and data sched analysis again,
3323 and write some more of the results to dump file. */
3325 split_all_insns (1);
3327 schedule_insns (rtl_dump_file);
3329 close_dump_file (DFI_sched2, print_rtl_with_bb, insns);
3330 timevar_pop (TV_SCHED2);
3332 ggc_collect ();
3334 #endif
3336 #ifdef LEAF_REGISTERS
3337 current_function_uses_only_leaf_regs
3338 = optimize > 0 && only_leaf_regs_used () && leaf_function_p ();
3339 #endif
3341 #ifdef STACK_REGS
3342 timevar_push (TV_REG_STACK);
3343 open_dump_file (DFI_stack, decl);
3345 reg_to_stack (insns, rtl_dump_file);
3347 close_dump_file (DFI_stack, print_rtl_with_bb, insns);
3348 timevar_pop (TV_REG_STACK);
3350 ggc_collect ();
3351 #endif
3352 if (optimize > 0)
3354 timevar_push (TV_REORDER_BLOCKS);
3355 open_dump_file (DFI_bbro, decl);
3357 /* Last attempt to optimize CFG, as life analyzis possibly removed
3358 some instructions. */
3359 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_POST_REGSTACK
3360 | CLEANUP_CROSSJUMP);
3361 if (flag_reorder_blocks)
3363 reorder_basic_blocks ();
3364 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_POST_REGSTACK);
3367 close_dump_file (DFI_bbro, print_rtl_with_bb, insns);
3368 timevar_pop (TV_REORDER_BLOCKS);
3370 compute_alignments ();
3372 /* CFG is no longer maintained up-to-date. */
3373 free_bb_for_insn ();
3375 /* If a machine dependent reorganization is needed, call it. */
3376 #ifdef MACHINE_DEPENDENT_REORG
3377 timevar_push (TV_MACH_DEP);
3378 open_dump_file (DFI_mach, decl);
3380 MACHINE_DEPENDENT_REORG (insns);
3382 close_dump_file (DFI_mach, print_rtl, insns);
3383 timevar_pop (TV_MACH_DEP);
3385 ggc_collect ();
3386 #endif
3388 purge_line_number_notes (insns);
3389 cleanup_barriers ();
3391 /* If a scheduling pass for delayed branches is to be done,
3392 call the scheduling code. */
3394 #ifdef DELAY_SLOTS
3395 if (optimize > 0 && flag_delayed_branch)
3397 timevar_push (TV_DBR_SCHED);
3398 open_dump_file (DFI_dbr, decl);
3400 dbr_schedule (insns, rtl_dump_file);
3402 close_dump_file (DFI_dbr, print_rtl, insns);
3403 timevar_pop (TV_DBR_SCHED);
3405 ggc_collect ();
3407 #endif
3409 #if defined (HAVE_ATTR_length) && !defined (STACK_REGS)
3410 timevar_push (TV_SHORTEN_BRANCH);
3411 split_all_insns_noflow ();
3412 timevar_pop (TV_SHORTEN_BRANCH);
3413 #endif
3415 convert_to_eh_region_ranges ();
3417 /* Shorten branches. */
3418 timevar_push (TV_SHORTEN_BRANCH);
3419 shorten_branches (get_insns ());
3420 timevar_pop (TV_SHORTEN_BRANCH);
3422 current_function_nothrow = nothrow_function_p ();
3423 if (current_function_nothrow)
3424 /* Now we know that this can't throw; set the flag for the benefit
3425 of other functions later in this translation unit. */
3426 TREE_NOTHROW (current_function_decl) = 1;
3428 /* Now turn the rtl into assembler code. */
3430 timevar_push (TV_FINAL);
3432 rtx x;
3433 const char *fnname;
3435 /* Get the function's name, as described by its RTL. This may be
3436 different from the DECL_NAME name used in the source file. */
3438 x = DECL_RTL (decl);
3439 if (GET_CODE (x) != MEM)
3440 abort ();
3441 x = XEXP (x, 0);
3442 if (GET_CODE (x) != SYMBOL_REF)
3443 abort ();
3444 fnname = XSTR (x, 0);
3446 assemble_start_function (decl, fnname);
3447 final_start_function (insns, asm_out_file, optimize);
3448 final (insns, asm_out_file, optimize, 0);
3449 final_end_function ();
3451 #ifdef IA64_UNWIND_INFO
3452 /* ??? The IA-64 ".handlerdata" directive must be issued before
3453 the ".endp" directive that closes the procedure descriptor. */
3454 output_function_exception_table ();
3455 #endif
3457 assemble_end_function (decl, fnname);
3459 #ifndef IA64_UNWIND_INFO
3460 /* Otherwise, it feels unclean to switch sections in the middle. */
3461 output_function_exception_table ();
3462 #endif
3464 if (! quiet_flag)
3465 fflush (asm_out_file);
3467 /* Release all memory allocated by flow. */
3468 free_basic_block_vars (0);
3470 /* Release all memory held by regsets now. */
3471 regset_release_memory ();
3473 timevar_pop (TV_FINAL);
3475 ggc_collect ();
3477 /* Write DBX symbols if requested. */
3479 /* Note that for those inline functions where we don't initially
3480 know for certain that we will be generating an out-of-line copy,
3481 the first invocation of this routine (rest_of_compilation) will
3482 skip over this code by doing a `goto exit_rest_of_compilation;'.
3483 Later on, finish_compilation will call rest_of_compilation again
3484 for those inline functions that need to have out-of-line copies
3485 generated. During that call, we *will* be routed past here. */
3487 timevar_push (TV_SYMOUT);
3488 (*debug_hooks->function_decl) (decl);
3489 timevar_pop (TV_SYMOUT);
3491 exit_rest_of_compilation:
3493 /* In case the function was not output,
3494 don't leave any temporary anonymous types
3495 queued up for sdb output. */
3496 #ifdef SDB_DEBUGGING_INFO
3497 if (write_symbols == SDB_DEBUG)
3498 sdbout_types (NULL_TREE);
3499 #endif
3501 reload_completed = 0;
3502 flow2_completed = 0;
3503 no_new_pseudos = 0;
3505 timevar_push (TV_FINAL);
3507 /* Clear out the insn_length contents now that they are no
3508 longer valid. */
3509 init_insn_lengths ();
3511 /* Clear out the real_constant_chain before some of the rtx's
3512 it runs through become garbage. */
3513 clear_const_double_mem ();
3515 /* Show no temporary slots allocated. */
3516 init_temp_slots ();
3518 free_basic_block_vars (0);
3519 free_bb_for_insn ();
3521 timevar_pop (TV_FINAL);
3523 /* Make sure volatile mem refs aren't considered valid operands for
3524 arithmetic insns. We must call this here if this is a nested inline
3525 function, since the above code leaves us in the init_recog state
3526 (from final.c), and the function context push/pop code does not
3527 save/restore volatile_ok.
3529 ??? Maybe it isn't necessary for expand_start_function to call this
3530 anymore if we do it here? */
3532 init_recog_no_volatile ();
3534 /* We're done with this function. Free up memory if we can. */
3535 free_after_parsing (cfun);
3536 if (! DECL_DEFER_OUTPUT (decl))
3538 free_after_compilation (cfun);
3540 /* Clear integrate.c's pointer to the cfun structure we just
3541 destroyed. */
3542 DECL_SAVED_INSNS (decl) = 0;
3544 cfun = 0;
3546 ggc_collect ();
3548 timevar_pop (TV_REST_OF_COMPILATION);
3551 static void
3552 display_help ()
3554 int undoc;
3555 unsigned long i;
3556 const char *lang;
3558 printf (_(" -ffixed-<register> Mark <register> as being unavailable to the compiler\n"));
3559 printf (_(" -fcall-used-<register> Mark <register> as being corrupted by function calls\n"));
3560 printf (_(" -fcall-saved-<register> Mark <register> as being preserved across functions\n"));
3561 printf (_(" -finline-limit=<number> Limits the size of inlined functions to <number>\n"));
3562 printf (_(" -fmessage-length=<number> Limits diagnostics messages lengths to <number> characters per line. 0 suppresses line-wrapping\n"));
3563 printf (_(" -fdiagnostics-show-location=[once | every-line] Indicates how often source location information should be emitted, as prefix, at the beginning of diagnostics when line-wrapping\n"));
3565 for (i = ARRAY_SIZE (f_options); i--;)
3567 const char *description = f_options[i].description;
3569 if (description != NULL && * description != 0)
3570 printf (" -f%-21s %s\n",
3571 f_options[i].string, _(description));
3574 printf (_(" -O[number] Set optimisation level to [number]\n"));
3575 printf (_(" -Os Optimise for space rather than speed\n"));
3576 for (i = LAST_PARAM; i--;)
3578 const char *description = compiler_params[i].help;
3579 const int length = 21-strlen(compiler_params[i].option);
3581 if (description != NULL && * description != 0)
3582 printf (" --param %s=<value>%.*s%s\n",
3583 compiler_params[i].option,
3584 length > 0 ? length : 1, " ",
3585 _(description));
3587 printf (_(" -pedantic Issue warnings needed by strict compliance to ISO C\n"));
3588 printf (_(" -pedantic-errors Like -pedantic except that errors are produced\n"));
3589 printf (_(" -w Suppress warnings\n"));
3590 printf (_(" -W Enable extra warnings\n"));
3592 for (i = ARRAY_SIZE (W_options); i--;)
3594 const char *description = W_options[i].description;
3596 if (description != NULL && * description != 0)
3597 printf (" -W%-21s %s\n",
3598 W_options[i].string, _(description));
3601 printf (_(" -Wunused Enable unused warnings\n"));
3602 printf (_(" -Wlarger-than-<number> Warn if an object is larger than <number> bytes\n"));
3603 printf (_(" -p Enable function profiling\n"));
3604 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER)
3605 printf (_(" -a Enable block profiling \n"));
3606 #endif
3607 #if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER) || defined FUNCTION_BLOCK_PROFILER_EXIT
3608 printf (_(" -ax Enable jump profiling \n"));
3609 #endif
3610 printf (_(" -o <file> Place output into <file> \n"));
3611 printf (_("\
3612 -G <number> Put global and static data smaller than <number>\n\
3613 bytes into a special section (on some targets)\n"));
3615 for (i = ARRAY_SIZE (debug_args); i--;)
3617 if (debug_args[i].description != NULL)
3618 printf (" -g%-21s %s\n",
3619 debug_args[i].arg, _(debug_args[i].description));
3622 printf (_(" -aux-info <file> Emit declaration info into <file>\n"));
3623 printf (_(" -quiet Do not display functions compiled or elapsed time\n"));
3624 printf (_(" -version Display the compiler's version\n"));
3625 printf (_(" -d[letters] Enable dumps from specific passes of the compiler\n"));
3626 printf (_(" -dumpbase <file> Base name to be used for dumps from specific passes\n"));
3627 #if defined INSN_SCHEDULING
3628 printf (_(" -fsched-verbose=<number> Set the verbosity level of the scheduler\n"));
3629 #endif
3630 printf (_(" --help Display this information\n"));
3632 undoc = 0;
3633 lang = "language";
3635 /* Display descriptions of language specific options.
3636 If there is no description, note that there is an undocumented option.
3637 If the description is empty, do not display anything. (This allows
3638 options to be deliberately undocumented, for whatever reason).
3639 If the option string is missing, then this is a marker, indicating
3640 that the description string is in fact the name of a language, whose
3641 language specific options are to follow. */
3643 if (ARRAY_SIZE (documented_lang_options) > 1)
3645 printf (_("\nLanguage specific options:\n"));
3647 for (i = 0; i < ARRAY_SIZE (documented_lang_options); i++)
3649 const char *description = documented_lang_options[i].description;
3650 const char *option = documented_lang_options[i].option;
3652 if (description == NULL)
3654 undoc = 1;
3656 if (extra_warnings)
3657 printf (_(" %-23.23s [undocumented]\n"), option);
3659 else if (*description == 0)
3660 continue;
3661 else if (option == NULL)
3663 if (undoc)
3664 printf
3665 (_("\nThere are undocumented %s specific options as well.\n"),
3666 lang);
3667 undoc = 0;
3669 printf (_("\n Options for %s:\n"), description);
3671 lang = description;
3673 else
3674 printf (" %-23.23s %s\n", option, _(description));
3678 if (undoc)
3679 printf (_("\nThere are undocumented %s specific options as well.\n"),
3680 lang);
3682 display_target_options ();
3685 static void
3686 display_target_options ()
3688 int undoc,i;
3690 if (ARRAY_SIZE (target_switches) > 1
3691 #ifdef TARGET_OPTIONS
3692 || ARRAY_SIZE (target_options) > 1
3693 #endif
3696 int doc = 0;
3698 undoc = 0;
3700 printf (_("\nTarget specific options:\n"));
3702 for (i = ARRAY_SIZE (target_switches); i--;)
3704 const char *option = target_switches[i].name;
3705 const char *description = target_switches[i].description;
3707 if (option == NULL || *option == 0)
3708 continue;
3709 else if (description == NULL)
3711 undoc = 1;
3713 if (extra_warnings)
3714 printf (_(" -m%-23.23s [undocumented]\n"), option);
3716 else if (* description != 0)
3717 doc += printf (" -m%-23.23s %s\n", option, _(description));
3720 #ifdef TARGET_OPTIONS
3721 for (i = ARRAY_SIZE (target_options); i--;)
3723 const char *option = target_options[i].prefix;
3724 const char *description = target_options[i].description;
3726 if (option == NULL || *option == 0)
3727 continue;
3728 else if (description == NULL)
3730 undoc = 1;
3732 if (extra_warnings)
3733 printf (_(" -m%-23.23s [undocumented]\n"), option);
3735 else if (* description != 0)
3736 doc += printf (" -m%-23.23s %s\n", option, _(description));
3738 #endif
3739 if (undoc)
3741 if (doc)
3742 printf (_("\nThere are undocumented target specific options as well.\n"));
3743 else
3744 printf (_(" They exist, but they are not documented.\n"));
3749 /* Parse a -d... command line switch. */
3751 static void
3752 decode_d_option (arg)
3753 const char *arg;
3755 int i, c, matched;
3757 while (*arg)
3758 switch (c = *arg++)
3760 case 'a':
3761 for (i = 0; i < (int) DFI_MAX; ++i)
3762 dump_file[i].enabled = 1;
3763 break;
3764 case 'A':
3765 flag_debug_asm = 1;
3766 break;
3767 case 'p':
3768 flag_print_asm_name = 1;
3769 break;
3770 case 'P':
3771 flag_dump_rtl_in_asm = 1;
3772 flag_print_asm_name = 1;
3773 break;
3774 case 'v':
3775 graph_dump_format = vcg;
3776 break;
3777 case 'x':
3778 rtl_dump_and_exit = 1;
3779 break;
3780 case 'y':
3781 (*lang_hooks.set_yydebug) (1);
3782 break;
3783 case 'D': /* These are handled by the preprocessor. */
3784 case 'I':
3785 break;
3787 default:
3788 matched = 0;
3789 for (i = 0; i < (int) DFI_MAX; ++i)
3790 if (c == dump_file[i].debug_switch)
3792 dump_file[i].enabled = 1;
3793 matched = 1;
3796 if (! matched)
3797 warning ("unrecognized gcc debugging option: %c", c);
3798 break;
3802 /* Parse a -f... command line switch. ARG is the value after the -f.
3803 It is safe to access 'ARG - 2' to generate the full switch name.
3804 Return the number of strings consumed. */
3806 static int
3807 decode_f_option (arg)
3808 const char *arg;
3810 int j;
3811 const char *option_value = NULL;
3813 /* Search for the option in the table of binary f options. */
3814 for (j = ARRAY_SIZE (f_options); j--;)
3816 if (!strcmp (arg, f_options[j].string))
3818 *f_options[j].variable = f_options[j].on_value;
3819 return 1;
3822 if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
3823 && ! strcmp (arg + 3, f_options[j].string))
3825 *f_options[j].variable = ! f_options[j].on_value;
3826 return 1;
3830 if (!strcmp (arg, "fast-math"))
3831 set_fast_math_flags();
3832 else if (!strcmp (arg, "no-fast-math"))
3833 set_no_fast_math_flags();
3834 else if ((option_value = skip_leading_substring (arg, "inline-limit-"))
3835 || (option_value = skip_leading_substring (arg, "inline-limit=")))
3837 int val =
3838 read_integral_parameter (option_value, arg - 2,
3839 MAX_INLINE_INSNS);
3840 set_param_value ("max-inline-insns", val);
3842 #ifdef INSN_SCHEDULING
3843 else if ((option_value = skip_leading_substring (arg, "sched-verbose=")))
3844 fix_sched_param ("verbose", option_value);
3845 #endif
3846 else if ((option_value = skip_leading_substring (arg, "fixed-")))
3847 fix_register (option_value, 1, 1);
3848 else if ((option_value = skip_leading_substring (arg, "call-used-")))
3849 fix_register (option_value, 0, 1);
3850 else if ((option_value = skip_leading_substring (arg, "call-saved-")))
3851 fix_register (option_value, 0, 0);
3852 else if ((option_value = skip_leading_substring (arg, "align-loops=")))
3853 align_loops = read_integral_parameter (option_value, arg - 2, align_loops);
3854 else if ((option_value = skip_leading_substring (arg, "align-functions=")))
3855 align_functions
3856 = read_integral_parameter (option_value, arg - 2, align_functions);
3857 else if ((option_value = skip_leading_substring (arg, "align-jumps=")))
3858 align_jumps = read_integral_parameter (option_value, arg - 2, align_jumps);
3859 else if ((option_value = skip_leading_substring (arg, "align-labels=")))
3860 align_labels
3861 = read_integral_parameter (option_value, arg - 2, align_labels);
3862 else if ((option_value
3863 = skip_leading_substring (arg, "stack-limit-register=")))
3865 int reg = decode_reg_name (option_value);
3866 if (reg < 0)
3867 error ("unrecognized register name `%s'", option_value);
3868 else
3869 stack_limit_rtx = gen_rtx_REG (Pmode, reg);
3871 else if ((option_value
3872 = skip_leading_substring (arg, "stack-limit-symbol=")))
3874 const char *nm;
3875 nm = ggc_strdup (option_value);
3876 stack_limit_rtx = gen_rtx_SYMBOL_REF (Pmode, nm);
3878 else if ((option_value
3879 = skip_leading_substring (arg, "message-length=")))
3880 output_set_maximum_length
3881 (&global_dc->buffer, read_integral_parameter
3882 (option_value, arg - 2, diagnostic_line_cutoff (global_dc)));
3883 else if ((option_value
3884 = skip_leading_substring (arg, "diagnostics-show-location=")))
3886 if (!strcmp (option_value, "once"))
3887 diagnostic_prefixing_rule (global_dc) = DIAGNOSTICS_SHOW_PREFIX_ONCE;
3888 else if (!strcmp (option_value, "every-line"))
3889 diagnostic_prefixing_rule (global_dc)
3890 = DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE;
3891 else
3892 error ("unrecognized option `%s'", arg - 2);
3894 else if (!strcmp (arg, "no-stack-limit"))
3895 stack_limit_rtx = NULL_RTX;
3896 else if (!strcmp (arg, "preprocessed"))
3897 /* Recognise this switch but do nothing. This prevents warnings
3898 about an unrecognized switch if cpplib has not been linked in. */
3900 else
3901 return 0;
3903 return 1;
3906 /* Parse a -W... command line switch. ARG is the value after the -W.
3907 It is safe to access 'ARG - 2' to generate the full switch name.
3908 Return the number of strings consumed. */
3910 static int
3911 decode_W_option (arg)
3912 const char *arg;
3914 const char *option_value = NULL;
3915 int j;
3917 /* Search for the option in the table of binary W options. */
3919 for (j = ARRAY_SIZE (W_options); j--;)
3921 if (!strcmp (arg, W_options[j].string))
3923 *W_options[j].variable = W_options[j].on_value;
3924 return 1;
3927 if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
3928 && ! strcmp (arg + 3, W_options[j].string))
3930 *W_options[j].variable = ! W_options[j].on_value;
3931 return 1;
3935 if ((option_value = skip_leading_substring (arg, "id-clash-")))
3936 warning ("-Wid-clash-LEN is no longer supported");
3937 else if ((option_value = skip_leading_substring (arg, "larger-than-")))
3939 larger_than_size = read_integral_parameter (option_value, arg - 2, -1);
3941 warn_larger_than = larger_than_size != -1;
3943 else if (!strcmp (arg, "unused"))
3945 set_Wunused (1);
3947 else if (!strcmp (arg, "no-unused"))
3949 set_Wunused (0);
3951 else
3952 return 0;
3954 return 1;
3957 /* Parse a -g... command line switch. ARG is the value after the -g.
3958 It is safe to access 'ARG - 2' to generate the full switch name.
3959 Return the number of strings consumed. */
3961 static int
3962 decode_g_option (arg)
3963 const char *arg;
3965 static unsigned level=0;
3966 /* A lot of code assumes write_symbols == NO_DEBUG if the
3967 debugging level is 0 (thus -gstabs1 -gstabs0 would lose track
3968 of what debugging type has been selected). This records the
3969 selected type. It is an error to specify more than one
3970 debugging type. */
3971 static enum debug_info_type selected_debug_type = NO_DEBUG;
3972 /* Non-zero if debugging format has been explicitly set.
3973 -g and -ggdb don't explicitly set the debugging format so
3974 -gdwarf -g3 is equivalent to -gdwarf3. */
3975 static int type_explicitly_set_p = 0;
3976 /* Indexed by enum debug_info_type. */
3977 static const char *const debug_type_names[] =
3979 "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff", "vms"
3982 /* The maximum admissible debug level value. */
3983 static const unsigned max_debug_level = 3;
3985 /* Look up ARG in the table. */
3986 for (da = debug_args; da->arg; da++)
3988 const int da_len = strlen (da->arg);
3990 if (da_len == 0 || ! strncmp (arg, da->arg, da_len))
3992 enum debug_info_type type = da->debug_type;
3993 const char *p = arg + da_len;
3995 if (*p && ! ISDIGIT (*p))
3996 continue;
3998 /* A debug flag without a level defaults to level 2.
3999 Note we do not want to call read_integral_parameter
4000 for that case since it will call atoi which
4001 will return zero.
4003 ??? We may want to generalize the interface to
4004 read_integral_parameter to better handle this case
4005 if this case shows up often. */
4006 if (*p)
4007 level = read_integral_parameter (p, 0, max_debug_level + 1);
4008 else
4009 level = (level == 0) ? 2 : level;
4011 if (da_len > 1 && *p && !strncmp (arg, "dwarf", da_len))
4013 error ("use -gdwarf -g%d for DWARF v1, level %d",
4014 level, level);
4015 if (level == 2)
4016 error ("use -gdwarf-2 for DWARF v2");
4019 if (level > max_debug_level)
4021 warning ("\
4022 ignoring option `%s' due to invalid debug level specification",
4023 arg - 2);
4024 level = debug_info_level;
4027 if (type == NO_DEBUG)
4029 type = PREFERRED_DEBUGGING_TYPE;
4031 if (da_len > 1 && strncmp (arg, "gdb", da_len) == 0)
4033 #if defined (DWARF2_DEBUGGING_INFO) && !defined (LINKER_DOES_NOT_WORK_WITH_DWARF2)
4034 type = DWARF2_DEBUG;
4035 #else
4036 #ifdef DBX_DEBUGGING_INFO
4037 type = DBX_DEBUG;
4038 #endif
4039 #endif
4043 if (type == NO_DEBUG)
4044 warning ("`%s': unknown or unsupported -g option", arg - 2);
4046 /* Does it conflict with an already selected type? */
4047 if (type_explicitly_set_p
4048 /* -g/-ggdb don't conflict with anything. */
4049 && da->debug_type != NO_DEBUG
4050 && type != selected_debug_type)
4051 warning ("`%s' ignored, conflicts with `-g%s'",
4052 arg - 2, debug_type_names[(int) selected_debug_type]);
4053 else
4055 /* If the format has already been set, -g/-ggdb
4056 only change the debug level. */
4057 if (type_explicitly_set_p && da->debug_type == NO_DEBUG)
4058 /* Don't change debugging type. */
4060 else
4062 selected_debug_type = type;
4063 type_explicitly_set_p = da->debug_type != NO_DEBUG;
4066 write_symbols = (level == 0
4067 ? NO_DEBUG
4068 : selected_debug_type);
4069 use_gnu_debug_info_extensions = da->use_extensions_p;
4070 debug_info_level = (enum debug_info_level) level;
4073 break;
4077 if (! da->arg)
4078 return 0;
4080 return 1;
4083 /* Decode the first argument in the argv as a language-independent option.
4084 Return the number of strings consumed. */
4086 static unsigned int
4087 independent_decode_option (argc, argv)
4088 int argc;
4089 char **argv;
4091 char *arg = argv[0];
4093 if (arg[0] != '-' || arg[1] == 0)
4095 if (arg[0] == '+')
4096 return 0;
4098 filename = arg;
4100 return 1;
4103 arg++;
4105 if (!strcmp (arg, "-help"))
4107 display_help ();
4108 exit_after_options = 1;
4111 if (!strcmp (arg, "-target-help"))
4113 display_target_options ();
4114 exit_after_options = 1;
4117 if (!strcmp (arg, "-version"))
4119 print_version (stderr, "");
4120 exit_after_options = 1;
4123 /* Handle '--param <name>=<value>'. */
4124 if (strcmp (arg, "-param") == 0)
4126 char *equal;
4128 if (argc == 1)
4130 error ("-param option missing argument");
4131 return 1;
4134 /* Get the '<name>=<value>' parameter. */
4135 arg = argv[1];
4136 /* Look for the `='. */
4137 equal = strchr (arg, '=');
4138 if (!equal)
4139 error ("invalid --param option: %s", arg);
4140 else
4142 int val;
4144 /* Zero out the `=' sign so that we get two separate strings. */
4145 *equal = '\0';
4146 /* Figure out what value is specified. */
4147 val = read_integral_parameter (equal + 1, NULL, INVALID_PARAM_VAL);
4148 if (val != INVALID_PARAM_VAL)
4149 set_param_value (arg, val);
4150 else
4151 error ("invalid parameter value `%s'", equal + 1);
4154 return 2;
4157 if (*arg == 'Y')
4158 arg++;
4160 switch (*arg)
4162 default:
4163 return 0;
4165 case 'O':
4166 /* Already been treated in main (). Do nothing. */
4167 break;
4169 case 'm':
4170 set_target_switch (arg + 1);
4171 break;
4173 case 'f':
4174 return decode_f_option (arg + 1);
4176 case 'g':
4177 return decode_g_option (arg + 1);
4179 case 'd':
4180 if (!strcmp (arg, "dumpbase"))
4182 if (argc == 1)
4183 return 0;
4185 dump_base_name = argv[1];
4186 return 2;
4188 else
4189 decode_d_option (arg + 1);
4190 break;
4192 case 'p':
4193 if (!strcmp (arg, "pedantic"))
4194 pedantic = 1;
4195 else if (!strcmp (arg, "pedantic-errors"))
4196 flag_pedantic_errors = pedantic = 1;
4197 else if (arg[1] == 0)
4198 profile_flag = 1;
4199 else
4200 return 0;
4201 break;
4203 case 'q':
4204 if (!strcmp (arg, "quiet"))
4205 quiet_flag = 1;
4206 else
4207 return 0;
4208 break;
4210 case 'v':
4211 if (!strcmp (arg, "version"))
4212 version_flag = 1;
4213 else
4214 return 0;
4215 break;
4217 case 'w':
4218 if (arg[1] == 0)
4219 inhibit_warnings = 1;
4220 else
4221 return 0;
4222 break;
4224 case 'W':
4225 if (arg[1] == 0)
4227 extra_warnings = 1;
4228 /* We save the value of warn_uninitialized, since if they put
4229 -Wuninitialized on the command line, we need to generate a
4230 warning about not using it without also specifying -O. */
4231 if (warn_uninitialized != 1)
4232 warn_uninitialized = 2;
4234 else
4235 return decode_W_option (arg + 1);
4236 break;
4238 case 'a':
4239 if (arg[1] == 0)
4241 #if !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4242 warning ("`-a' option (basic block profile) not supported");
4243 #else
4244 profile_block_flag = (profile_block_flag < 2) ? 1 : 3;
4245 #endif
4247 else if (!strcmp (arg, "ax"))
4249 #if !defined (FUNCTION_BLOCK_PROFILER_EXIT) || !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4250 warning ("`-ax' option (jump profiling) not supported");
4251 #else
4252 profile_block_flag = (!profile_block_flag
4253 || profile_block_flag == 2) ? 2 : 3;
4254 #endif
4256 else if (!strncmp (arg, "aux-info", 8))
4258 if (arg[8] == '\0')
4260 if (argc == 1)
4261 return 0;
4263 aux_info_file_name = argv[1];
4264 flag_gen_aux_info = 1;
4265 return 2;
4267 else if (arg[8] == '=')
4269 aux_info_file_name = arg + 9;
4270 flag_gen_aux_info = 1;
4272 else
4273 return 0;
4275 else
4276 return 0;
4277 break;
4279 case 'o':
4280 if (arg[1] == 0)
4282 if (argc == 1)
4283 return 0;
4285 asm_file_name = argv[1];
4286 return 2;
4288 return 0;
4290 case 'G':
4292 int g_switch_val;
4293 int return_val;
4295 if (arg[1] == 0)
4297 if (argc == 1)
4298 return 0;
4300 g_switch_val = read_integral_parameter (argv[1], 0, -1);
4301 return_val = 2;
4303 else
4305 g_switch_val = read_integral_parameter (arg + 1, 0, -1);
4306 return_val = 1;
4309 if (g_switch_val == -1)
4310 return_val = 0;
4311 else
4313 g_switch_set = TRUE;
4314 g_switch_value = g_switch_val;
4317 return return_val;
4321 return 1;
4324 /* Decode -m switches. */
4325 /* Decode the switch -mNAME. */
4327 static void
4328 set_target_switch (name)
4329 const char *name;
4331 size_t j;
4332 int valid_target_option = 0;
4334 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
4335 if (!strcmp (target_switches[j].name, name))
4337 if (target_switches[j].value < 0)
4338 target_flags &= ~-target_switches[j].value;
4339 else
4340 target_flags |= target_switches[j].value;
4341 valid_target_option = 1;
4344 #ifdef TARGET_OPTIONS
4345 if (!valid_target_option)
4346 for (j = 0; j < ARRAY_SIZE (target_options); j++)
4348 int len = strlen (target_options[j].prefix);
4349 if (!strncmp (target_options[j].prefix, name, len))
4351 *target_options[j].variable = name + len;
4352 valid_target_option = 1;
4355 #endif
4357 if (!valid_target_option)
4358 error ("invalid option `%s'", name);
4361 /* Print version information to FILE.
4362 Each line begins with INDENT (for the case where FILE is the
4363 assembler output file). */
4365 static void
4366 print_version (file, indent)
4367 FILE *file;
4368 const char *indent;
4370 #ifndef __VERSION__
4371 #define __VERSION__ "[?]"
4372 #endif
4373 fnotice (file,
4374 #ifdef __GNUC__
4375 "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
4376 #else
4377 "%s%s%s version %s (%s) compiled by CC.\n"
4378 #endif
4379 , indent, *indent != 0 ? " " : "",
4380 lang_hooks.name, version_string, TARGET_NAME,
4381 indent, __VERSION__);
4384 /* Print an option value and return the adjusted position in the line.
4385 ??? We don't handle error returns from fprintf (disk full); presumably
4386 other code will catch a disk full though. */
4388 static int
4389 print_single_switch (file, pos, max, indent, sep, term, type, name)
4390 FILE *file;
4391 int pos, max;
4392 const char *indent, *sep, *term, *type, *name;
4394 /* The ultrix fprintf returns 0 on success, so compute the result we want
4395 here since we need it for the following test. */
4396 int len = strlen (sep) + strlen (type) + strlen (name);
4398 if (pos != 0
4399 && pos + len > max)
4401 fprintf (file, "%s", term);
4402 pos = 0;
4404 if (pos == 0)
4406 fprintf (file, "%s", indent);
4407 pos = strlen (indent);
4409 fprintf (file, "%s%s%s", sep, type, name);
4410 pos += len;
4411 return pos;
4414 /* Print active target switches to FILE.
4415 POS is the current cursor position and MAX is the size of a "line".
4416 Each line begins with INDENT and ends with TERM.
4417 Each switch is separated from the next by SEP. */
4419 static void
4420 print_switch_values (file, pos, max, indent, sep, term)
4421 FILE *file;
4422 int pos, max;
4423 const char *indent, *sep, *term;
4425 size_t j;
4426 char **p;
4428 /* Print the options as passed. */
4430 pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
4431 _("options passed: "), "");
4433 for (p = &save_argv[1]; *p != NULL; p++)
4434 if (**p == '-')
4436 /* Ignore these. */
4437 if (strcmp (*p, "-o") == 0)
4439 if (p[1] != NULL)
4440 p++;
4441 continue;
4443 if (strcmp (*p, "-quiet") == 0)
4444 continue;
4445 if (strcmp (*p, "-version") == 0)
4446 continue;
4447 if ((*p)[1] == 'd')
4448 continue;
4450 pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
4452 if (pos > 0)
4453 fprintf (file, "%s", term);
4455 /* Print the -f and -m options that have been enabled.
4456 We don't handle language specific options but printing argv
4457 should suffice. */
4459 pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
4460 _("options enabled: "), "");
4462 for (j = 0; j < ARRAY_SIZE (f_options); j++)
4463 if (*f_options[j].variable == f_options[j].on_value)
4464 pos = print_single_switch (file, pos, max, indent, sep, term,
4465 "-f", f_options[j].string);
4467 /* Print target specific options. */
4469 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
4470 if (target_switches[j].name[0] != '\0'
4471 && target_switches[j].value > 0
4472 && ((target_switches[j].value & target_flags)
4473 == target_switches[j].value))
4475 pos = print_single_switch (file, pos, max, indent, sep, term,
4476 "-m", target_switches[j].name);
4479 #ifdef TARGET_OPTIONS
4480 for (j = 0; j < ARRAY_SIZE (target_options); j++)
4481 if (*target_options[j].variable != NULL)
4483 char prefix[256];
4484 sprintf (prefix, "-m%s", target_options[j].prefix);
4485 pos = print_single_switch (file, pos, max, indent, sep, term,
4486 prefix, *target_options[j].variable);
4488 #endif
4490 fprintf (file, "%s", term);
4493 /* Open assembly code output file. Do this even if -fsyntax-only is
4494 on, because then the driver will have provided the name of a
4495 temporary file or bit bucket for us. NAME is the file specified on
4496 the command line, possibly NULL. */
4497 static void
4498 init_asm_output (name)
4499 const char *name;
4501 if (name == NULL && asm_file_name == 0)
4502 asm_out_file = stdout;
4503 else
4505 if (asm_file_name == 0)
4507 int len = strlen (dump_base_name);
4508 char *dumpname = (char *) xmalloc (len + 6);
4509 memcpy (dumpname, dump_base_name, len + 1);
4510 strip_off_ending (dumpname, len);
4511 strcat (dumpname, ".s");
4512 asm_file_name = dumpname;
4514 if (!strcmp (asm_file_name, "-"))
4515 asm_out_file = stdout;
4516 else
4517 asm_out_file = fopen (asm_file_name, "w");
4518 if (asm_out_file == 0)
4519 fatal_io_error ("can't open %s for writing", asm_file_name);
4522 #ifdef IO_BUFFER_SIZE
4523 setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
4524 _IOFBF, IO_BUFFER_SIZE);
4525 #endif
4527 if (!flag_syntax_only)
4529 #ifdef ASM_FILE_START
4530 ASM_FILE_START (asm_out_file);
4531 #endif
4533 #ifdef ASM_COMMENT_START
4534 if (flag_verbose_asm)
4536 /* Print the list of options in effect. */
4537 print_version (asm_out_file, ASM_COMMENT_START);
4538 print_switch_values (asm_out_file, 0, MAX_LINE,
4539 ASM_COMMENT_START, " ", "\n");
4540 /* Add a blank line here so it appears in assembler output but not
4541 screen output. */
4542 fprintf (asm_out_file, "\n");
4544 #endif
4548 /* Initialization of the front end environment, before command line
4549 options are parsed. Signal handlers, internationalization etc.
4550 ARGV0 is main's argv[0]. */
4551 static void
4552 general_init (argv0)
4553 char *argv0;
4555 char *p;
4557 p = argv0 + strlen (argv0);
4558 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
4559 --p;
4560 progname = p;
4562 xmalloc_set_program_name (progname);
4564 gcc_init_libintl ();
4566 /* Install handler for SIGFPE, which may be received while we do
4567 compile-time floating point arithmetic. */
4568 signal (SIGFPE, float_signal);
4570 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
4571 #ifdef SIGSEGV
4572 signal (SIGSEGV, crash_signal);
4573 #endif
4574 #ifdef SIGILL
4575 signal (SIGILL, crash_signal);
4576 #endif
4577 #ifdef SIGBUS
4578 signal (SIGBUS, crash_signal);
4579 #endif
4580 #ifdef SIGABRT
4581 signal (SIGABRT, crash_signal);
4582 #endif
4583 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
4584 signal (SIGIOT, crash_signal);
4585 #endif
4587 /* Initialize the diagnostics reporting machinery, so option parsing
4588 can give warnings and errors. */
4589 diagnostic_initialize (global_dc);
4592 /* Parse command line options and set default flag values, called
4593 after language-independent option-independent initialization. Do
4594 minimal options processing. Outputting diagnostics is OK, but GC
4595 and identifier hashtables etc. are not initialized yet. */
4596 static void
4597 parse_options_and_default_flags (argc, argv)
4598 int argc;
4599 char **argv;
4601 int i;
4603 /* Save in case md file wants to emit args as a comment. */
4604 save_argc = argc;
4605 save_argv = argv;
4607 /* Initialize register usage now so switches may override. */
4608 init_reg_sets ();
4610 /* Register the language-independent parameters. */
4611 add_params (lang_independent_params, LAST_PARAM);
4613 /* Perform language-specific options initialization. */
4614 (*lang_hooks.init_options) ();
4616 /* Scan to see what optimization level has been specified. That will
4617 determine the default value of many flags. */
4618 for (i = 1; i < argc; i++)
4620 if (!strcmp (argv[i], "-O"))
4622 optimize = 1;
4623 optimize_size = 0;
4625 else if (argv[i][0] == '-' && argv[i][1] == 'O')
4627 /* Handle -Os, -O2, -O3, -O69, ... */
4628 char *p = &argv[i][2];
4630 if ((p[0] == 's') && (p[1] == 0))
4632 optimize_size = 1;
4634 /* Optimizing for size forces optimize to be 2. */
4635 optimize = 2;
4637 else
4639 const int optimize_val = read_integral_parameter (p, p - 2, -1);
4640 if (optimize_val != -1)
4642 optimize = optimize_val;
4643 optimize_size = 0;
4649 if (!optimize)
4651 flag_merge_constants = 0;
4654 if (optimize >= 1)
4656 flag_defer_pop = 1;
4657 flag_thread_jumps = 1;
4658 #ifdef DELAY_SLOTS
4659 flag_delayed_branch = 1;
4660 #endif
4661 #ifdef CAN_DEBUG_WITHOUT_FP
4662 flag_omit_frame_pointer = 1;
4663 #endif
4664 flag_guess_branch_prob = 1;
4667 if (optimize >= 2)
4669 flag_optimize_sibling_calls = 1;
4670 flag_cse_follow_jumps = 1;
4671 flag_cse_skip_blocks = 1;
4672 flag_gcse = 1;
4673 flag_expensive_optimizations = 1;
4674 flag_strength_reduce = 1;
4675 flag_rerun_cse_after_loop = 1;
4676 flag_rerun_loop_opt = 1;
4677 flag_caller_saves = 1;
4678 flag_force_mem = 1;
4679 flag_peephole2 = 1;
4680 #ifdef INSN_SCHEDULING
4681 flag_schedule_insns = 1;
4682 flag_schedule_insns_after_reload = 1;
4683 #endif
4684 flag_regmove = 1;
4685 flag_strict_aliasing = 1;
4686 flag_delete_null_pointer_checks = 1;
4687 flag_reorder_blocks = 1;
4690 if (optimize >= 3)
4692 flag_inline_functions = 1;
4693 flag_rename_registers = 1;
4696 if (optimize < 2 || optimize_size)
4698 align_loops = 1;
4699 align_jumps = 1;
4700 align_labels = 1;
4701 align_functions = 1;
4704 /* Initialize whether `char' is signed. */
4705 flag_signed_char = DEFAULT_SIGNED_CHAR;
4706 #ifdef DEFAULT_SHORT_ENUMS
4707 /* Initialize how much space enums occupy, by default. */
4708 flag_short_enums = DEFAULT_SHORT_ENUMS;
4709 #endif
4711 /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
4712 modify it. */
4713 target_flags = 0;
4714 set_target_switch ("");
4716 /* Unwind tables are always present in an ABI-conformant IA-64
4717 object file, so the default should be ON. */
4718 #ifdef IA64_UNWIND_INFO
4719 flag_unwind_tables = IA64_UNWIND_INFO;
4720 #endif
4722 #ifdef OPTIMIZATION_OPTIONS
4723 /* Allow default optimizations to be specified on a per-machine basis. */
4724 OPTIMIZATION_OPTIONS (optimize, optimize_size);
4725 #endif
4727 /* Perform normal command line switch decoding. */
4728 for (i = 1; i < argc;)
4730 int lang_processed;
4731 int indep_processed;
4733 /* Give the language a chance to decode the option for itself. */
4734 lang_processed = (*lang_hooks.decode_option) (argc - i, argv + i);
4736 if (lang_processed >= 0)
4737 /* Now see if the option also has a language independent meaning.
4738 Some options are both language specific and language independent,
4739 eg --help. */
4740 indep_processed = independent_decode_option (argc - i, argv + i);
4741 else
4743 lang_processed = -lang_processed;
4744 indep_processed = 0;
4747 if (lang_processed || indep_processed)
4748 i += MAX (lang_processed, indep_processed);
4749 else
4751 const char *option = NULL;
4752 const char *lang = NULL;
4753 unsigned int j;
4755 /* It is possible that the command line switch is not valid for the
4756 current language, but it is valid for another language. In order
4757 to be compatible with previous versions of the compiler (which
4758 did not issue an error message in this case) we check for this
4759 possibility here. If we do find a match, then if extra_warnings
4760 is set we generate a warning message, otherwise we will just
4761 ignore the option. */
4762 for (j = 0; j < ARRAY_SIZE (documented_lang_options); j++)
4764 option = documented_lang_options[j].option;
4766 if (option == NULL)
4767 lang = documented_lang_options[j].description;
4768 else if (! strncmp (argv[i], option, strlen (option)))
4769 break;
4772 if (j != ARRAY_SIZE (documented_lang_options))
4774 if (extra_warnings)
4776 warning ("ignoring command line option '%s'", argv[i]);
4777 if (lang)
4778 warning
4779 ("(it is valid for %s but not the selected language)",
4780 lang);
4783 else if (argv[i][0] == '-' && argv[i][1] == 'g')
4784 warning ("`%s': unknown or unsupported -g option", &argv[i][2]);
4785 else
4786 error ("unrecognized option `%s'", argv[i]);
4788 i++;
4792 /* All command line options have been parsed; allow the front end to
4793 perform consistency checks, etc. */
4794 (*lang_hooks.post_options) ();
4797 /* Process the options that have been parsed. */
4798 static void
4799 process_options ()
4801 /* Checker uses the frame pointer. */
4802 if (flag_check_memory_usage)
4803 flag_omit_frame_pointer = 0;
4805 if (optimize == 0)
4807 /* Inlining does not work if not optimizing,
4808 so force it not to be done. */
4809 flag_no_inline = 1;
4810 warn_inline = 0;
4812 /* The c_decode_option function and decode_option hook set
4813 this to `2' if -Wall is used, so we can avoid giving out
4814 lots of errors for people who don't realize what -Wall does. */
4815 if (warn_uninitialized == 1)
4816 warning ("-Wuninitialized is not supported without -O");
4819 #ifdef OVERRIDE_OPTIONS
4820 /* Some machines may reject certain combinations of options. */
4821 OVERRIDE_OPTIONS;
4822 #endif
4824 /* Set up the align_*_log variables, defaulting them to 1 if they
4825 were still unset. */
4826 if (align_loops <= 0) align_loops = 1;
4827 if (align_loops_max_skip > align_loops || !align_loops)
4828 align_loops_max_skip = align_loops - 1;
4829 align_loops_log = floor_log2 (align_loops * 2 - 1);
4830 if (align_jumps <= 0) align_jumps = 1;
4831 if (align_jumps_max_skip > align_jumps || !align_jumps)
4832 align_jumps_max_skip = align_jumps - 1;
4833 align_jumps_log = floor_log2 (align_jumps * 2 - 1);
4834 if (align_labels <= 0) align_labels = 1;
4835 align_labels_log = floor_log2 (align_labels * 2 - 1);
4836 if (align_labels_max_skip > align_labels || !align_labels)
4837 align_labels_max_skip = align_labels - 1;
4838 if (align_functions <= 0) align_functions = 1;
4839 align_functions_log = floor_log2 (align_functions * 2 - 1);
4841 if (profile_block_flag == 3)
4843 warning ("`-ax' and `-a' are conflicting options. `-a' ignored");
4844 profile_block_flag = 2;
4847 /* Unrolling all loops implies that standard loop unrolling must also
4848 be done. */
4849 if (flag_unroll_all_loops)
4850 flag_unroll_loops = 1;
4851 /* Loop unrolling requires that strength_reduction be on also. Silently
4852 turn on strength reduction here if it isn't already on. Also, the loop
4853 unrolling code assumes that cse will be run after loop, so that must
4854 be turned on also. */
4855 if (flag_unroll_loops)
4857 flag_strength_reduce = 1;
4858 flag_rerun_cse_after_loop = 1;
4861 if (flag_non_call_exceptions)
4862 flag_asynchronous_unwind_tables = 1;
4863 if (flag_asynchronous_unwind_tables)
4864 flag_unwind_tables = 1;
4866 /* Warn about options that are not supported on this machine. */
4867 #ifndef INSN_SCHEDULING
4868 if (flag_schedule_insns || flag_schedule_insns_after_reload)
4869 warning ("instruction scheduling not supported on this target machine");
4870 #endif
4871 #ifndef DELAY_SLOTS
4872 if (flag_delayed_branch)
4873 warning ("this target machine does not have delayed branches");
4874 #endif
4876 /* Some operating systems do not allow profiling without a frame
4877 pointer. */
4878 if (!TARGET_ALLOWS_PROFILING_WITHOUT_FRAME_POINTER
4879 && profile_flag
4880 && flag_omit_frame_pointer)
4882 error ("profiling does not work without a frame pointer");
4883 flag_omit_frame_pointer = 0;
4886 user_label_prefix = USER_LABEL_PREFIX;
4887 if (flag_leading_underscore != -1)
4889 /* If the default prefix is more complicated than "" or "_",
4890 issue a warning and ignore this option. */
4891 if (user_label_prefix[0] == 0 ||
4892 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
4894 user_label_prefix = flag_leading_underscore ? "_" : "";
4896 else
4897 warning ("-f%sleading-underscore not supported on this target machine",
4898 flag_leading_underscore ? "" : "no-");
4901 /* If we are in verbose mode, write out the version and maybe all the
4902 option flags in use. */
4903 if (version_flag)
4905 print_version (stderr, "");
4906 if (! quiet_flag)
4907 print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
4910 if (! quiet_flag)
4911 time_report = 1;
4913 if (flag_syntax_only)
4915 write_symbols = NO_DEBUG;
4916 profile_flag = 0;
4917 profile_block_flag = 0;
4920 /* Now we know write_symbols, set up the debug hooks based on it.
4921 By default we do nothing for debug output. */
4922 #if defined(DBX_DEBUGGING_INFO)
4923 if (write_symbols == DBX_DEBUG)
4924 debug_hooks = &dbx_debug_hooks;
4925 #endif
4926 #if defined(XCOFF_DEBUGGING_INFO)
4927 if (write_symbols == XCOFF_DEBUG)
4928 debug_hooks = &xcoff_debug_hooks;
4929 #endif
4930 #ifdef SDB_DEBUGGING_INFO
4931 if (write_symbols == SDB_DEBUG)
4932 debug_hooks = &sdb_debug_hooks;
4933 #endif
4934 #ifdef DWARF_DEBUGGING_INFO
4935 if (write_symbols == DWARF_DEBUG)
4936 debug_hooks = &dwarf_debug_hooks;
4937 #endif
4938 #ifdef DWARF2_DEBUGGING_INFO
4939 if (write_symbols == DWARF2_DEBUG)
4940 debug_hooks = &dwarf2_debug_hooks;
4941 #endif
4942 #ifdef VMS_DEBUGGING_INFO
4943 if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
4944 debug_hooks = &vmsdbg_debug_hooks;
4945 #endif
4947 /* If auxiliary info generation is desired, open the output file.
4948 This goes in the same directory as the source file--unlike
4949 all the other output files. */
4950 if (flag_gen_aux_info)
4952 aux_info_file = fopen (aux_info_file_name, "w");
4953 if (aux_info_file == 0)
4954 fatal_io_error ("can't open %s", aux_info_file_name);
4957 if (! targetm.have_named_sections)
4959 if (flag_function_sections)
4961 warning ("-ffunction-sections not supported for this target");
4962 flag_function_sections = 0;
4964 if (flag_data_sections)
4966 warning ("-fdata-sections not supported for this target");
4967 flag_data_sections = 0;
4971 if (flag_function_sections
4972 && (profile_flag || profile_block_flag))
4974 warning ("-ffunction-sections disabled; it makes profiling impossible");
4975 flag_function_sections = 0;
4978 #ifndef OBJECT_FORMAT_ELF
4979 if (flag_function_sections && write_symbols != NO_DEBUG)
4980 warning ("-ffunction-sections may affect debugging on some targets");
4981 #endif
4984 /* Language-independent initialization, before language-dependent
4985 initialization. */
4986 static void
4987 lang_independent_init ()
4989 decl_printable_name = decl_name;
4990 lang_expand_expr = (lang_expand_expr_t) do_abort;
4992 /* Set the language-dependent identifier size. */
4993 tree_code_length[(int) IDENTIFIER_NODE]
4994 = ((lang_hooks.identifier_size - sizeof (struct tree_common))
4995 / sizeof (tree));
4997 /* Initialize the garbage-collector, and string pools. */
4998 init_ggc ();
4999 ggc_add_rtx_root (&stack_limit_rtx, 1);
5000 ggc_add_tree_root (&current_function_decl, 1);
5001 ggc_add_tree_root (&current_function_func_begin_label, 1);
5003 init_stringpool ();
5004 init_obstacks ();
5006 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
5007 || debug_info_level == DINFO_LEVEL_VERBOSE
5008 #ifdef VMS_DEBUGGING_INFO
5009 /* Enable line number info for traceback */
5010 || debug_info_level > DINFO_LEVEL_NONE
5011 #endif
5012 || flag_test_coverage
5013 || warn_notreached);
5014 init_regs ();
5015 init_alias_once ();
5016 init_stmt ();
5017 init_loop ();
5018 init_reload ();
5019 init_function_once ();
5020 init_stor_layout_once ();
5021 init_varasm_once ();
5022 init_EXPR_INSN_LIST_cache ();
5024 /* The following initialization functions need to generate rtl, so
5025 provide a dummy function context for them. */
5026 init_dummy_function_start ();
5027 init_expmed ();
5028 init_expr_once ();
5029 if (flag_caller_saves)
5030 init_caller_save ();
5031 expand_dummy_function_end ();
5034 /* Language-dependent initialization. Returns non-zero on success. */
5035 static int
5036 lang_dependent_init (name)
5037 const char *name;
5039 if (dump_base_name == 0)
5040 dump_base_name = name ? name : "gccdump";
5042 /* Front-end initialization. This hook can assume that GC,
5043 identifier hashes etc. are set up, but debug initialization is
5044 not done yet. This routine must return the original filename
5045 (e.g. foo.i -> foo.c) so can correctly initialize debug output. */
5046 name = (*lang_hooks.init) (name);
5047 if (name == NULL)
5048 return 0;
5050 /* Is this duplication necessary? */
5051 name = ggc_strdup (name);
5052 main_input_filename = input_filename = name;
5053 init_asm_output (name);
5055 /* These create various _DECL nodes, so need to be called after the
5056 front end is initialized. */
5057 init_eh ();
5058 init_optabs ();
5060 /* Put an entry on the input file stack for the main input file. */
5061 push_srcloc (input_filename, 0);
5063 /* If dbx symbol table desired, initialize writing it and output the
5064 predefined types. */
5065 timevar_push (TV_SYMOUT);
5067 #ifdef DWARF2_UNWIND_INFO
5068 if (dwarf2out_do_frame ())
5069 dwarf2out_frame_init ();
5070 #endif
5072 /* Now we have the correct original filename, we can initialize
5073 debug output. */
5074 (*debug_hooks->init) (name);
5076 timevar_pop (TV_SYMOUT);
5078 return 1;
5081 /* Clean up: close opened files, etc. */
5083 static void
5084 finalize ()
5086 /* Close the dump files. */
5087 if (flag_gen_aux_info)
5089 fclose (aux_info_file);
5090 if (errorcount)
5091 unlink (aux_info_file_name);
5094 /* Close non-debugging input and output files. Take special care to note
5095 whether fclose returns an error, since the pages might still be on the
5096 buffer chain while the file is open. */
5098 if (asm_out_file)
5100 if (ferror (asm_out_file) != 0)
5101 fatal_io_error ("error writing to %s", asm_file_name);
5102 if (fclose (asm_out_file) != 0)
5103 fatal_io_error ("error closing %s", asm_file_name);
5106 /* Do whatever is necessary to finish printing the graphs. */
5107 if (graph_dump_format != no_graph)
5109 int i;
5111 for (i = 0; i < (int) DFI_MAX; ++i)
5112 if (dump_file[i].initialized && dump_file[i].graph_dump_p)
5114 char seq[16];
5115 char *suffix;
5117 sprintf (seq, DUMPFILE_FORMAT, i);
5118 suffix = concat (seq, dump_file[i].extension, NULL);
5119 finish_graph_dump_file (dump_base_name, suffix);
5120 free (suffix);
5124 if (mem_report)
5126 ggc_print_statistics ();
5127 stringpool_statistics ();
5128 dump_tree_statistics ();
5131 /* Free up memory for the benefit of leak detectors. */
5132 free_reg_info ();
5134 /* Language-specific end of compilation actions. */
5135 (*lang_hooks.finish) ();
5138 /* Initialize the compiler, and compile the input file. */
5139 static void
5140 do_compile ()
5142 /* The bulk of command line switch processing. */
5143 process_options ();
5145 /* We cannot start timing until after options are processed since that
5146 says if we run timers or not. */
5147 init_timevar ();
5148 timevar_start (TV_TOTAL);
5150 /* Language-independent initialization. Also sets up GC, identifier
5151 hashes etc. */
5152 lang_independent_init ();
5154 /* Language-dependent initialization. Returns true on success. */
5155 if (lang_dependent_init (filename))
5156 compile_file ();
5158 finalize ();
5160 /* Stop timing and print the times. */
5161 timevar_stop (TV_TOTAL);
5162 timevar_print (stderr);
5165 /* Entry point of cc1, cc1plus, jc1, f771, etc.
5166 Decode command args, then call compile_file.
5167 Exit code is FATAL_EXIT_CODE if can't open files or if there were
5168 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
5170 It is not safe to call this function more than once. */
5173 toplev_main (argc, argv)
5174 int argc;
5175 char **argv;
5177 /* Initialization of GCC's environment, and diagnostics. */
5178 general_init (argv [0]);
5180 /* Parse the options and do minimal processing; basically just
5181 enough to default flags appropriately. */
5182 parse_options_and_default_flags (argc, argv);
5184 /* Exit early if we can (e.g. -help). */
5185 if (!exit_after_options)
5186 do_compile ();
5188 if (errorcount || sorrycount)
5189 return (FATAL_EXIT_CODE);
5191 return (SUCCESS_EXIT_CODE);