atomicity.h (_Atomic_add_mutex): Fix declaration.
[official-gcc.git] / gcc / toplev.c
blob0e05323503e81705c9f9078e4dac70fa3ed355f3
1 /* Top level of GNU C compiler
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003 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 "coretypes.h"
32 #include "tm.h"
33 #include <signal.h>
35 #ifdef HAVE_SYS_RESOURCE_H
36 # include <sys/resource.h>
37 #endif
39 #ifdef HAVE_SYS_TIMES_H
40 # include <sys/times.h>
41 #endif
43 #include "input.h"
44 #include "tree.h"
45 #include "rtl.h"
46 #include "tm_p.h"
47 #include "flags.h"
48 #include "insn-attr.h"
49 #include "insn-config.h"
50 #include "insn-flags.h"
51 #include "hard-reg-set.h"
52 #include "recog.h"
53 #include "output.h"
54 #include "except.h"
55 #include "function.h"
56 #include "toplev.h"
57 #include "expr.h"
58 #include "basic-block.h"
59 #include "intl.h"
60 #include "ggc.h"
61 #include "graph.h"
62 #include "loop.h"
63 #include "regs.h"
64 #include "timevar.h"
65 #include "diagnostic.h"
66 #include "ssa.h"
67 #include "params.h"
68 #include "reload.h"
69 #include "dwarf2asm.h"
70 #include "integrate.h"
71 #include "real.h"
72 #include "debug.h"
73 #include "target.h"
74 #include "langhooks.h"
75 #include "cfglayout.h"
76 #include "cfgloop.h"
77 #include "hosthooks.h"
79 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
80 #include "dwarf2out.h"
81 #endif
83 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
84 #include "dbxout.h"
85 #endif
87 #ifdef SDB_DEBUGGING_INFO
88 #include "sdbout.h"
89 #endif
91 #ifdef XCOFF_DEBUGGING_INFO
92 #include "xcoffout.h" /* Needed for external data
93 declarations for e.g. AIX 4.x. */
94 #endif
96 /* Carry information from ASM_DECLARE_OBJECT_NAME
97 to ASM_FINISH_DECLARE_OBJECT. */
99 extern int size_directive_output;
100 extern tree last_assemble_variable_decl;
102 extern void reg_alloc PARAMS ((void));
104 static void general_init PARAMS ((char *));
105 static void parse_options_and_default_flags PARAMS ((int, char **));
106 static void do_compile PARAMS ((void));
107 static void process_options PARAMS ((void));
108 static void backend_init PARAMS ((void));
109 static int lang_dependent_init PARAMS ((const char *));
110 static void init_asm_output PARAMS ((const char *));
111 static void finalize PARAMS ((void));
113 static void set_target_switch PARAMS ((const char *));
115 static void crash_signal PARAMS ((int)) ATTRIBUTE_NORETURN;
116 static void setup_core_dumping PARAMS ((void));
117 static void compile_file PARAMS ((void));
118 static void display_help PARAMS ((void));
119 static void display_target_options PARAMS ((void));
121 static void decode_d_option PARAMS ((const char *));
122 static int decode_f_option PARAMS ((const char *));
123 static int decode_W_option PARAMS ((const char *));
124 static int decode_g_option PARAMS ((const char *));
125 static unsigned int independent_decode_option PARAMS ((int, char **));
127 static void print_version PARAMS ((FILE *, const char *));
128 static int print_single_switch PARAMS ((FILE *, int, int, const char *,
129 const char *, const char *,
130 const char *, const char *));
131 static void print_switch_values PARAMS ((FILE *, int, int, const char *,
132 const char *, const char *));
134 /* Nonzero to dump debug info whilst parsing (-dy option). */
135 static int set_yydebug;
137 /* Length of line when printing switch values. */
138 #define MAX_LINE 75
140 /* Name of program invoked, sans directories. */
142 const char *progname;
144 /* Copy of arguments to toplev_main. */
145 int save_argc;
146 char **save_argv;
148 /* Name of current original source file (what was input to cpp).
149 This comes from each #-command in the actual input. */
151 const char *input_filename;
153 /* Name of top-level original source file (what was input to cpp).
154 This comes from the #-command at the beginning of the actual input.
155 If there isn't any there, then this is the cc1 input file name. */
157 const char *main_input_filename;
159 /* Current line number in real source file. */
161 int lineno;
163 /* Nonzero if it is unsafe to create any new pseudo registers. */
164 int no_new_pseudos;
166 /* Stack of currently pending input files. */
168 struct file_stack *input_file_stack;
170 /* Incremented on each change to input_file_stack. */
171 int input_file_stack_tick;
173 /* Name to use as base of names for dump output files. */
175 const char *dump_base_name;
177 /* Name to use as a base for auxiliary output files. */
179 const char *aux_base_name;
181 /* Format to use to print dumpfile index value */
182 #ifndef DUMPFILE_FORMAT
183 #define DUMPFILE_FORMAT ".%02d."
184 #endif
186 /* Bit flags that specify the machine subtype we are compiling for.
187 Bits are tested using macros TARGET_... defined in the tm.h file
188 and set by `-m...' switches. Must be defined in rtlanal.c. */
190 extern int target_flags;
192 /* A mask of target_flags that includes bit X if X was set or cleared
193 on the command line. */
195 int target_flags_explicit;
197 /* Debug hooks - dependent upon command line options. */
199 const struct gcc_debug_hooks *debug_hooks = &do_nothing_debug_hooks;
201 /* Describes a dump file. */
203 struct dump_file_info
205 /* The unique extension to apply, e.g. ".jump". */
206 const char *const extension;
208 /* The -d<c> character that enables this dump file. */
209 char const debug_switch;
211 /* True if there is a corresponding graph dump file. */
212 char const graph_dump_p;
214 /* True if the user selected this dump. */
215 char enabled;
217 /* True if the files have been initialized (ie truncated). */
218 char initialized;
221 /* Enumerate the extant dump files. */
223 enum dump_file_index
225 DFI_rtl,
226 DFI_sibling,
227 DFI_eh,
228 DFI_jump,
229 DFI_ssa,
230 DFI_ssa_ccp,
231 DFI_ssa_dce,
232 DFI_ussa,
233 DFI_null,
234 DFI_cse,
235 DFI_addressof,
236 DFI_gcse,
237 DFI_loop,
238 DFI_bypass,
239 DFI_cfg,
240 DFI_bp,
241 DFI_ce1,
242 DFI_tracer,
243 DFI_loop2,
244 DFI_cse2,
245 DFI_life,
246 DFI_combine,
247 DFI_ce2,
248 DFI_regmove,
249 DFI_sched,
250 DFI_lreg,
251 DFI_greg,
252 DFI_postreload,
253 DFI_flow2,
254 DFI_peephole2,
255 DFI_rnreg,
256 DFI_ce3,
257 DFI_sched2,
258 DFI_stack,
259 DFI_bbro,
260 DFI_mach,
261 DFI_dbr,
262 DFI_MAX
265 /* Describes all the dump files. Should be kept in order of the
266 pass and in sync with dump_file_index above.
268 Remaining -d letters:
270 " o q "
271 " H JK OPQ TUV YZ"
274 static struct dump_file_info dump_file[DFI_MAX] =
276 { "rtl", 'r', 0, 0, 0 },
277 { "sibling", 'i', 0, 0, 0 },
278 { "eh", 'h', 0, 0, 0 },
279 { "jump", 'j', 0, 0, 0 },
280 { "ssa", 'e', 1, 0, 0 },
281 { "ssaccp", 'W', 1, 0, 0 },
282 { "ssadce", 'X', 1, 0, 0 },
283 { "ussa", 'e', 1, 0, 0 }, /* Yes, duplicate enable switch. */
284 { "null", 'u', 0, 0, 0 },
285 { "cse", 's', 0, 0, 0 },
286 { "addressof", 'F', 0, 0, 0 },
287 { "gcse", 'G', 1, 0, 0 },
288 { "loop", 'L', 1, 0, 0 },
289 { "bypass", 'G', 1, 0, 0 }, /* Yes, duplicate enable switch. */
290 { "cfg", 'f', 1, 0, 0 },
291 { "bp", 'b', 1, 0, 0 },
292 { "ce1", 'C', 1, 0, 0 },
293 { "tracer", 'T', 1, 0, 0 },
294 { "loop2", 'L', 1, 0, 0 },
295 { "cse2", 't', 1, 0, 0 },
296 { "life", 'f', 1, 0, 0 }, /* Yes, duplicate enable switch. */
297 { "combine", 'c', 1, 0, 0 },
298 { "ce2", 'C', 1, 0, 0 },
299 { "regmove", 'N', 1, 0, 0 },
300 { "sched", 'S', 1, 0, 0 },
301 { "lreg", 'l', 1, 0, 0 },
302 { "greg", 'g', 1, 0, 0 },
303 { "postreload", 'o', 1, 0, 0 },
304 { "flow2", 'w', 1, 0, 0 },
305 { "peephole2", 'z', 1, 0, 0 },
306 { "rnreg", 'n', 1, 0, 0 },
307 { "ce3", 'E', 1, 0, 0 },
308 { "sched2", 'R', 1, 0, 0 },
309 { "stack", 'k', 1, 0, 0 },
310 { "bbro", 'B', 1, 0, 0 },
311 { "mach", 'M', 1, 0, 0 },
312 { "dbr", 'd', 0, 0, 0 },
315 static int open_dump_file PARAMS ((enum dump_file_index, tree));
316 static void close_dump_file PARAMS ((enum dump_file_index,
317 void (*) (FILE *, rtx), rtx));
319 /* Other flags saying which kinds of debugging dump have been requested. */
321 int rtl_dump_and_exit;
322 int flag_print_asm_name;
323 static int version_flag;
324 static char *filename;
325 enum graph_dump_types graph_dump_format;
327 /* Name for output file of assembly code, specified with -o. */
329 char *asm_file_name;
331 /* Value of the -G xx switch, and whether it was passed or not. */
332 int g_switch_value;
333 int g_switch_set;
335 /* Type(s) of debugging information we are producing (if any).
336 See flags.h for the definitions of the different possible
337 types of debugging information. */
338 enum debug_info_type write_symbols = NO_DEBUG;
340 /* Level of debugging information we are producing. See flags.h
341 for the definitions of the different possible levels. */
342 enum debug_info_level debug_info_level = DINFO_LEVEL_NONE;
344 /* Nonzero means use GNU-only extensions in the generated symbolic
345 debugging information. */
346 /* Currently, this only has an effect when write_symbols is set to
347 DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG. */
348 int use_gnu_debug_info_extensions = 0;
350 /* Nonzero means do optimizations. -O.
351 Particular numeric values stand for particular amounts of optimization;
352 thus, -O2 stores 2 here. However, the optimizations beyond the basic
353 ones are not controlled directly by this variable. Instead, they are
354 controlled by individual `flag_...' variables that are defaulted
355 based on this variable. */
357 int optimize = 0;
359 /* Nonzero means optimize for size. -Os.
360 The only valid values are zero and nonzero. When optimize_size is
361 nonzero, optimize defaults to 2, but certain individual code
362 bloating optimizations are disabled. */
364 int optimize_size = 0;
366 /* Nonzero if we should exit after parsing options. */
367 static int exit_after_options = 0;
369 /* The FUNCTION_DECL for the function currently being compiled,
370 or 0 if between functions. */
371 tree current_function_decl;
373 /* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
374 if none. */
375 tree current_function_func_begin_label;
377 /* Nonzero if doing dwarf2 duplicate elimination. */
379 int flag_eliminate_dwarf2_dups = 0;
381 /* Nonzero if generating code to do profiling. */
383 int profile_flag = 0;
385 /* Nonzero if generating code to profile program flow graph arcs. */
387 int profile_arc_flag = 0;
389 /* Nonzero if generating info for gcov to calculate line test coverage. */
391 int flag_test_coverage = 0;
393 /* Nonzero indicates that branch taken probabilities should be calculated. */
395 int flag_branch_probabilities = 0;
397 /* Nonzero if basic blocks should be reordered. */
399 int flag_reorder_blocks = 0;
401 /* Nonzero if functions should be reordered. */
403 int flag_reorder_functions = 0;
405 /* Nonzero if registers should be renamed. */
407 int flag_rename_registers = 0;
408 int flag_cprop_registers = 0;
410 /* Nonzero for -pedantic switch: warn about anything
411 that standard spec forbids. */
413 int pedantic = 0;
415 /* Temporarily suppress certain warnings.
416 This is set while reading code from a system header file. */
418 int in_system_header = 0;
420 /* Don't print functions as they are compiled. -quiet. */
422 int quiet_flag = 0;
424 /* Print times taken by the various passes. -ftime-report. */
426 int time_report = 0;
428 /* Print memory still in use at end of compilation (which may have little
429 to do with peak memory consumption). -fmem-report. */
431 int mem_report = 0;
433 /* Nonzero means to collect statistics which might be expensive
434 and to print them when we are done. */
435 int flag_detailed_statistics = 0;
438 /* -f flags. */
440 /* Nonzero means `char' should be signed. */
442 int flag_signed_char;
444 /* Nonzero means give an enum type only as many bytes as it needs. */
446 int flag_short_enums;
448 /* Nonzero for -fcaller-saves: allocate values in regs that need to
449 be saved across function calls, if that produces overall better code.
450 Optional now, so people can test it. */
452 #ifdef DEFAULT_CALLER_SAVES
453 int flag_caller_saves = 1;
454 #else
455 int flag_caller_saves = 0;
456 #endif
458 /* Nonzero if structures and unions should be returned in memory.
460 This should only be defined if compatibility with another compiler or
461 with an ABI is needed, because it results in slower code. */
463 #ifndef DEFAULT_PCC_STRUCT_RETURN
464 #define DEFAULT_PCC_STRUCT_RETURN 1
465 #endif
467 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
469 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
471 /* Nonzero for -fforce-mem: load memory value into a register
472 before arithmetic on it. This makes better cse but slower compilation. */
474 int flag_force_mem = 0;
476 /* Nonzero for -fforce-addr: load memory address into a register before
477 reference to memory. This makes better cse but slower compilation. */
479 int flag_force_addr = 0;
481 /* Nonzero for -fdefer-pop: don't pop args after each function call;
482 instead save them up to pop many calls' args with one insns. */
484 int flag_defer_pop = 0;
486 /* Nonzero for -ffloat-store: don't allocate floats and doubles
487 in extended-precision registers. */
489 int flag_float_store = 0;
491 /* Nonzero for -fcse-follow-jumps:
492 have cse follow jumps to do a more extensive job. */
494 int flag_cse_follow_jumps;
496 /* Nonzero for -fcse-skip-blocks:
497 have cse follow a branch around a block. */
498 int flag_cse_skip_blocks;
500 /* Nonzero for -fexpensive-optimizations:
501 perform miscellaneous relatively-expensive optimizations. */
502 int flag_expensive_optimizations;
504 /* Nonzero for -fthread-jumps:
505 have jump optimize output of loop. */
507 int flag_thread_jumps;
509 /* Nonzero enables strength-reduction in loop.c. */
511 int flag_strength_reduce = 0;
513 /* Nonzero enables loop unrolling in unroll.c. Only loops for which the
514 number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
515 UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
516 unrolled. */
518 int flag_unroll_loops;
520 /* Nonzero enables loop unrolling in unroll.c. All loops are unrolled.
521 This is generally not a win. */
523 int flag_unroll_all_loops;
525 /* Nonzero enables loop unswitching. */
526 int flag_unswitch_loops;
528 /* Nonzero enables prefetch optimizations for arrays in loops. */
530 int flag_prefetch_loop_arrays;
532 /* Nonzero forces all invariant computations in loops to be moved
533 outside the loop. */
535 int flag_move_all_movables = 0;
537 /* Nonzero forces all general induction variables in loops to be
538 strength reduced. */
540 int flag_reduce_all_givs = 0;
542 /* Nonzero to perform full register move optimization passes. This is the
543 default for -O2. */
545 int flag_regmove = 0;
547 /* Nonzero for -fwritable-strings:
548 store string constants in data segment and don't uniquize them. */
550 int flag_writable_strings = 0;
552 /* Nonzero means don't put addresses of constant functions in registers.
553 Used for compiling the Unix kernel, where strange substitutions are
554 done on the assembly output. */
556 int flag_no_function_cse = 0;
558 /* Nonzero for -fomit-frame-pointer:
559 don't make a frame pointer in simple functions that don't require one. */
561 int flag_omit_frame_pointer = 0;
563 /* Nonzero means place each function into its own section on those platforms
564 which support arbitrary section names and unlimited numbers of sections. */
566 int flag_function_sections = 0;
568 /* ... and similar for data. */
570 int flag_data_sections = 0;
572 /* Nonzero to inhibit use of define_optimization peephole opts. */
574 int flag_no_peephole = 0;
576 /* Nonzero allows GCC to optimize sibling and tail recursive calls. */
578 int flag_optimize_sibling_calls = 0;
580 /* Nonzero means the front end generally wants `errno' maintained by math
581 operations, like built-in SQRT. */
583 int flag_errno_math = 1;
585 /* Nonzero means that unsafe floating-point math optimizations are allowed
586 for the sake of speed. IEEE compliance is not guaranteed, and operations
587 are allowed to assume that their arguments and results are "normal"
588 (e.g., nonnegative for SQRT). */
590 int flag_unsafe_math_optimizations = 0;
592 /* Nonzero means that no NaNs or +-Infs are expected. */
594 int flag_finite_math_only = 0;
596 /* Zero means that floating-point math operations cannot generate a
597 (user-visible) trap. This is the case, for example, in nonstop
598 IEEE 754 arithmetic. Trapping conditions include division by zero,
599 overflow, underflow, invalid and inexact, but does not include
600 operations on signaling NaNs (see below). */
602 int flag_trapping_math = 1;
604 /* Nonzero means disable transformations observable by signaling NaNs.
605 This option implies that any operation on a IEEE signaling NaN can
606 generate a (user-visible) trap. */
608 int flag_signaling_nans = 0;
610 /* 0 means straightforward implementation of complex divide acceptable.
611 1 means wide ranges of inputs must work for complex divide.
612 2 means C99-like requirements for complex divide (not yet implemented). */
614 int flag_complex_divide_method = 0;
616 /* Nonzero means just do syntax checking; don't output anything. */
618 int flag_syntax_only = 0;
620 /* Nonzero means perform loop optimizer. */
622 static int flag_loop_optimize;
624 /* Nonzero means perform crossjumping. */
626 static int flag_crossjumping;
628 /* Nonzero means perform if conversion. */
630 static int flag_if_conversion;
632 /* Nonzero means perform if conversion after reload. */
634 static int flag_if_conversion2;
636 /* Nonzero means to use global dataflow analysis to eliminate
637 useless null pointer tests. */
639 static int flag_delete_null_pointer_checks;
641 /* Nonzero means perform global CSE. */
643 int flag_gcse = 0;
645 /* Nonzero means to do the enhanced load motion during gcse, which trys
646 to hoist loads by not killing them when a store to the same location
647 is seen. */
649 int flag_gcse_lm = 1;
651 /* Nonzero means to perform store motion after gcse, which will try to
652 move stores closer to the exit block. Its not very effective without
653 flag_gcse_lm. */
655 int flag_gcse_sm = 1;
657 /* Nonzero means to rerun cse after loop optimization. This increases
658 compilation time about 20% and picks up a few more common expressions. */
660 static int flag_rerun_cse_after_loop;
662 /* Nonzero means to run loop optimizations twice. */
664 int flag_rerun_loop_opt;
666 /* Nonzero for -finline-functions: ok to inline functions that look like
667 good inline candidates. */
669 int flag_inline_functions;
671 /* Nonzero for -fkeep-inline-functions: even if we make a function
672 go inline everywhere, keep its definition around for debugging
673 purposes. */
675 int flag_keep_inline_functions;
677 /* Nonzero means that functions will not be inlined. */
679 int flag_no_inline = 2;
681 /* Nonzero means that we don't want inlining by virtue of -fno-inline,
682 not just because the tree inliner turned us off. */
684 int flag_really_no_inline = 2;
686 /* Nonzero means that we should emit static const variables
687 regardless of whether or not optimization is turned on. */
689 int flag_keep_static_consts = 1;
691 /* Nonzero means we should be saving declaration info into a .X file. */
693 int flag_gen_aux_info = 0;
695 /* Specified name of aux-info file. */
697 static char *aux_info_file_name;
699 /* Nonzero means make the text shared if supported. */
701 int flag_shared_data;
703 /* Nonzero means schedule into delayed branch slots if supported. */
705 int flag_delayed_branch;
707 /* Nonzero if we are compiling pure (sharable) code.
708 Value is 1 if we are doing "small" pic; value is 2 if we're doing
709 "large" pic. */
711 int flag_pic;
713 /* Set to the default thread-local storage (tls) model to use. */
715 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
717 /* Nonzero means generate extra code for exception handling and enable
718 exception handling. */
720 int flag_exceptions;
722 /* Nonzero means generate frame unwind info table when supported. */
724 int flag_unwind_tables = 0;
726 /* Nonzero means generate frame unwind info table exact at each insn boundary */
728 int flag_asynchronous_unwind_tables = 0;
730 /* Nonzero means don't place uninitialized global data in common storage
731 by default. */
733 int flag_no_common;
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 across 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 /* Nonzero means put zero initialized data in the bss section. */
807 int flag_zero_initialized_in_bss = 1;
809 /* Enable SSA. */
810 int flag_ssa = 0;
812 /* Enable ssa conditional constant propagation. */
813 int flag_ssa_ccp = 0;
815 /* Enable ssa aggressive dead code elimination. */
816 int flag_ssa_dce = 0;
818 /* Tag all structures with __attribute__(packed). */
819 int flag_pack_struct = 0;
821 /* Emit code to check for stack overflow; also may cause large objects
822 to be allocated dynamically. */
823 int flag_stack_check;
825 /* When non-NULL, indicates that whenever space is allocated on the
826 stack, the resulting stack pointer must not pass this
827 address---that is, for stacks that grow downward, the stack pointer
828 must always be greater than or equal to this address; for stacks
829 that grow upward, the stack pointer must be less than this address.
830 At present, the rtx may be either a REG or a SYMBOL_REF, although
831 the support provided depends on the backend. */
832 rtx stack_limit_rtx;
834 /* 0 if pointer arguments may alias each other. True in C.
835 1 if pointer arguments may not alias each other but may alias
836 global variables.
837 2 if pointer arguments may not alias each other and may not
838 alias global variables. True in Fortran.
839 This defaults to 0 for C. */
840 int flag_argument_noalias = 0;
842 /* Nonzero if we should do (language-dependent) alias analysis.
843 Typically, this analysis will assume that expressions of certain
844 types do not alias expressions of certain other types. Only used
845 if alias analysis (in general) is enabled. */
846 int flag_strict_aliasing = 0;
848 /* Instrument functions with calls at entry and exit, for profiling. */
849 int flag_instrument_function_entry_exit = 0;
851 /* Nonzero means ignore `#ident' directives. 0 means handle them.
852 On SVR4 targets, it also controls whether or not to emit a
853 string identifying the compiler. */
855 int flag_no_ident = 0;
857 /* This will perform a peephole pass before sched2. */
858 int flag_peephole2 = 0;
860 /* This will try to guess branch probabilities. */
861 int flag_guess_branch_prob = 0;
863 /* -fcheck-bounds causes gcc to generate array bounds checks.
864 For C, C++, ObjC: defaults to off.
865 For Java: defaults to on.
866 For Fortran: defaults to off. */
867 int flag_bounds_check = 0;
869 /* This will attempt to merge constant section constants, if 1 only
870 string constants and constants from constant pool, if 2 also constant
871 variables. */
872 int flag_merge_constants = 1;
874 /* If one, renumber instruction UIDs to reduce the number of
875 unused UIDs if there are a lot of instructions. If greater than
876 one, unconditionally renumber instruction UIDs. */
877 int flag_renumber_insns = 1;
879 /* If nonzero, use the graph coloring register allocator. */
880 int flag_new_regalloc = 0;
882 /* Nonzero if we perform superblock formation. */
884 int flag_tracer = 0;
886 /* Nonzero if we perform whole unit at a time compilation. */
888 int flag_unit_at_a_time = 0;
890 /* Values of the -falign-* flags: how much to align labels in code.
891 0 means `use default', 1 means `don't align'.
892 For each variable, there is an _log variant which is the power
893 of two not less than the variable, for .align output. */
895 int align_loops;
896 int align_loops_log;
897 int align_loops_max_skip;
898 int align_jumps;
899 int align_jumps_log;
900 int align_jumps_max_skip;
901 int align_labels;
902 int align_labels_log;
903 int align_labels_max_skip;
904 int align_functions;
905 int align_functions_log;
907 /* Like align_functions_log above, but used by front-ends to force the
908 minimum function alignment. Zero means no alignment is forced. */
909 int force_align_functions_log;
911 /* Table of supported debugging formats. */
912 static const struct
914 const char *const arg;
915 /* Since PREFERRED_DEBUGGING_TYPE isn't necessarily a
916 constant expression, we use NO_DEBUG in its place. */
917 const enum debug_info_type debug_type;
918 const int use_extensions_p;
919 const char *const description;
920 } *da,
921 debug_args[] =
923 { "", NO_DEBUG, DEFAULT_GDB_EXTENSIONS,
924 N_("Generate debugging info in default format") },
925 { "gdb", NO_DEBUG, 1, N_("Generate debugging info in default extended format") },
926 #ifdef DBX_DEBUGGING_INFO
927 { "stabs", DBX_DEBUG, 0, N_("Generate STABS format debug info") },
928 { "stabs+", DBX_DEBUG, 1, N_("Generate extended STABS format debug info") },
929 #endif
930 #ifdef DWARF_DEBUGGING_INFO
931 { "dwarf", DWARF_DEBUG, 0, N_("Generate DWARF-1 format debug info") },
932 { "dwarf+", DWARF_DEBUG, 1,
933 N_("Generate extended DWARF-1 format debug info") },
934 #endif
935 #ifdef DWARF2_DEBUGGING_INFO
936 { "dwarf-2", DWARF2_DEBUG, 0, N_("Generate DWARF-2 debug info") },
937 #endif
938 #ifdef XCOFF_DEBUGGING_INFO
939 { "xcoff", XCOFF_DEBUG, 0, N_("Generate XCOFF format debug info") },
940 { "xcoff+", XCOFF_DEBUG, 1, N_("Generate extended XCOFF format debug info") },
941 #endif
942 #ifdef SDB_DEBUGGING_INFO
943 { "coff", SDB_DEBUG, 0, N_("Generate COFF format debug info") },
944 #endif
945 #ifdef VMS_DEBUGGING_INFO
946 { "vms", VMS_DEBUG, 0, N_("Generate VMS format debug info") },
947 #endif
948 { 0, 0, 0, 0 }
951 typedef struct
953 const char *const string;
954 int *const variable;
955 const int on_value;
956 const char *const description;
958 lang_independent_options;
960 int flag_trapv = 0;
962 /* Add or remove a leading underscore from user symbols. */
963 int flag_leading_underscore = -1;
965 /* The user symbol prefix after having resolved same. */
966 const char *user_label_prefix;
968 static const param_info lang_independent_params[] = {
969 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
970 { OPTION, DEFAULT, HELP },
971 #include "params.def"
972 #undef DEFPARAM
973 { NULL, 0, NULL }
976 /* Table of language-independent -f options.
977 STRING is the option name. VARIABLE is the address of the variable.
978 ON_VALUE is the value to store in VARIABLE
979 if `-fSTRING' is seen as an option.
980 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
982 static const lang_independent_options f_options[] =
984 {"eliminate-dwarf2-dups", &flag_eliminate_dwarf2_dups, 1,
985 N_("Perform DWARF2 duplicate elimination") },
986 {"float-store", &flag_float_store, 1,
987 N_("Do not store floats in registers") },
988 {"defer-pop", &flag_defer_pop, 1,
989 N_("Defer popping functions args from stack until later") },
990 {"omit-frame-pointer", &flag_omit_frame_pointer, 1,
991 N_("When possible do not generate stack frames") },
992 {"optimize-sibling-calls", &flag_optimize_sibling_calls, 1,
993 N_("Optimize sibling and tail recursive calls") },
994 {"tracer", &flag_tracer, 1,
995 N_("Perform superblock formation via tail duplication") },
996 {"unit-at-a-time", &flag_unit_at_a_time, 1,
997 N_("Compile whole compilation unit at a time") },
998 {"cse-follow-jumps", &flag_cse_follow_jumps, 1,
999 N_("When running CSE, follow jumps to their targets") },
1000 {"cse-skip-blocks", &flag_cse_skip_blocks, 1,
1001 N_("When running CSE, follow conditional jumps") },
1002 {"expensive-optimizations", &flag_expensive_optimizations, 1,
1003 N_("Perform a number of minor, expensive optimizations") },
1004 {"thread-jumps", &flag_thread_jumps, 1,
1005 N_("Perform jump threading optimizations") },
1006 {"strength-reduce", &flag_strength_reduce, 1,
1007 N_("Perform strength reduction optimizations") },
1008 {"unroll-loops", &flag_unroll_loops, 1,
1009 N_("Perform loop unrolling when iteration count is known") },
1010 {"unroll-all-loops", &flag_unroll_all_loops, 1,
1011 N_("Perform loop unrolling for all loops") },
1012 {"unswitch-loops", &flag_unswitch_loops, 1,
1013 N_("Perform loop unswitching") },
1014 {"prefetch-loop-arrays", &flag_prefetch_loop_arrays, 1,
1015 N_("Generate prefetch instructions, if available, for arrays in loops") },
1016 {"move-all-movables", &flag_move_all_movables, 1,
1017 N_("Force all loop invariant computations out of loops") },
1018 {"reduce-all-givs", &flag_reduce_all_givs, 1,
1019 N_("Strength reduce all loop general induction variables") },
1020 {"writable-strings", &flag_writable_strings, 1,
1021 N_("Store strings in writable data section") },
1022 {"peephole", &flag_no_peephole, 0,
1023 N_("Enable machine specific peephole optimizations") },
1024 {"force-mem", &flag_force_mem, 1,
1025 N_("Copy memory operands into registers before using") },
1026 {"force-addr", &flag_force_addr, 1,
1027 N_("Copy memory address constants into regs before using") },
1028 {"function-cse", &flag_no_function_cse, 0,
1029 N_("Allow function addresses to be held in registers") },
1030 {"inline-functions", &flag_inline_functions, 1,
1031 N_("Integrate simple functions into their callers") },
1032 {"keep-inline-functions", &flag_keep_inline_functions, 1,
1033 N_("Generate code for funcs even if they are fully inlined") },
1034 {"inline", &flag_no_inline, 0,
1035 N_("Pay attention to the 'inline' keyword") },
1036 {"keep-static-consts", &flag_keep_static_consts, 1,
1037 N_("Emit static const variables even if they are not used") },
1038 {"syntax-only", &flag_syntax_only, 1,
1039 N_("Check for syntax errors, then stop") },
1040 {"shared-data", &flag_shared_data, 1,
1041 N_("Mark data as shared rather than private") },
1042 {"caller-saves", &flag_caller_saves, 1,
1043 N_("Enable saving registers around function calls") },
1044 {"pcc-struct-return", &flag_pcc_struct_return, 1,
1045 N_("Return 'short' aggregates in memory, not registers") },
1046 {"reg-struct-return", &flag_pcc_struct_return, 0,
1047 N_("Return 'short' aggregates in registers") },
1048 {"delayed-branch", &flag_delayed_branch, 1,
1049 N_("Attempt to fill delay slots of branch instructions") },
1050 {"gcse", &flag_gcse, 1,
1051 N_("Perform the global common subexpression elimination") },
1052 {"gcse-lm", &flag_gcse_lm, 1,
1053 N_("Perform enhanced load motion during global subexpression elimination") },
1054 {"gcse-sm", &flag_gcse_sm, 1,
1055 N_("Perform store motion after global subexpression elimination") },
1056 {"loop-optimize", &flag_loop_optimize, 1,
1057 N_("Perform the loop optimizations") },
1058 {"crossjumping", &flag_crossjumping, 1,
1059 N_("Perform cross-jumping optimization") },
1060 {"if-conversion", &flag_if_conversion, 1,
1061 N_("Perform conversion of conditional jumps to branchless equivalents") },
1062 {"if-conversion2", &flag_if_conversion2, 1,
1063 N_("Perform conversion of conditional jumps to conditional execution") },
1064 {"rerun-cse-after-loop", &flag_rerun_cse_after_loop, 1,
1065 N_("Run CSE pass after loop optimizations") },
1066 {"rerun-loop-opt", &flag_rerun_loop_opt, 1,
1067 N_("Run the loop optimizer twice") },
1068 {"delete-null-pointer-checks", &flag_delete_null_pointer_checks, 1,
1069 N_("Delete useless null pointer checks") },
1070 {"schedule-insns", &flag_schedule_insns, 1,
1071 N_("Reschedule instructions before register allocation") },
1072 {"schedule-insns2", &flag_schedule_insns_after_reload, 1,
1073 N_("Reschedule instructions after register allocation") },
1074 {"sched-interblock",&flag_schedule_interblock, 1,
1075 N_("Enable scheduling across basic blocks") },
1076 {"sched-spec",&flag_schedule_speculative, 1,
1077 N_("Allow speculative motion of non-loads") },
1078 {"sched-spec-load",&flag_schedule_speculative_load, 1,
1079 N_("Allow speculative motion of some loads") },
1080 {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1,
1081 N_("Allow speculative motion of more loads") },
1082 {"branch-count-reg",&flag_branch_on_count_reg, 1,
1083 N_("Replace add,compare,branch with branch on count reg") },
1084 {"pic", &flag_pic, 1,
1085 N_("Generate position independent code, if possible") },
1086 {"PIC", &flag_pic, 2, ""},
1087 {"exceptions", &flag_exceptions, 1,
1088 N_("Enable exception handling") },
1089 {"unwind-tables", &flag_unwind_tables, 1,
1090 N_("Just generate unwind tables for exception handling") },
1091 {"asynchronous-unwind-tables", &flag_asynchronous_unwind_tables, 1,
1092 N_("Generate unwind tables exact at each instruction boundary") },
1093 {"non-call-exceptions", &flag_non_call_exceptions, 1,
1094 N_("Support synchronous non-call exceptions") },
1095 {"profile-arcs", &profile_arc_flag, 1,
1096 N_("Insert arc based program profiling code") },
1097 {"test-coverage", &flag_test_coverage, 1,
1098 N_("Create data files needed by gcov") },
1099 {"branch-probabilities", &flag_branch_probabilities, 1,
1100 N_("Use profiling information for branch probabilities") },
1101 {"profile", &profile_flag, 1,
1102 N_("Enable basic program profiling code") },
1103 {"reorder-blocks", &flag_reorder_blocks, 1,
1104 N_("Reorder basic blocks to improve code placement") },
1105 {"reorder-functions", &flag_reorder_functions, 1,
1106 N_("Reorder functions to improve code placement") },
1107 {"rename-registers", &flag_rename_registers, 1,
1108 N_("Do the register renaming optimization pass") },
1109 {"cprop-registers", &flag_cprop_registers, 1,
1110 N_("Do the register copy-propagation optimization pass") },
1111 {"common", &flag_no_common, 0,
1112 N_("Do not put uninitialized globals in the common section") },
1113 {"inhibit-size-directive", &flag_inhibit_size_directive, 1,
1114 N_("Do not generate .size directives") },
1115 {"function-sections", &flag_function_sections, 1,
1116 N_("place each function into its own section") },
1117 {"data-sections", &flag_data_sections, 1,
1118 N_("place data items into their own section") },
1119 {"verbose-asm", &flag_verbose_asm, 1,
1120 N_("Add extra commentry to assembler output") },
1121 {"gnu-linker", &flag_gnu_linker, 1,
1122 N_("Output GNU ld formatted global initializers") },
1123 {"regmove", &flag_regmove, 1,
1124 N_("Enables a register move optimization") },
1125 {"optimize-register-move", &flag_regmove, 1,
1126 N_("Do the full regmove optimization pass") },
1127 {"pack-struct", &flag_pack_struct, 1,
1128 N_("Pack structure members together without holes") },
1129 {"stack-check", &flag_stack_check, 1,
1130 N_("Insert stack checking code into the program") },
1131 {"argument-alias", &flag_argument_noalias, 0,
1132 N_("Specify that arguments may alias each other & globals") },
1133 {"argument-noalias", &flag_argument_noalias, 1,
1134 N_("Assume arguments may alias globals but not each other") },
1135 {"argument-noalias-global", &flag_argument_noalias, 2,
1136 N_("Assume arguments do not alias each other or globals") },
1137 {"strict-aliasing", &flag_strict_aliasing, 1,
1138 N_("Assume strict aliasing rules apply") },
1139 {"align-loops", &align_loops, 0,
1140 N_("Align the start of loops") },
1141 {"align-jumps", &align_jumps, 0,
1142 N_("Align labels which are only reached by jumping") },
1143 {"align-labels", &align_labels, 0,
1144 N_("Align all labels") },
1145 {"align-functions", &align_functions, 0,
1146 N_("Align the start of functions") },
1147 {"merge-constants", &flag_merge_constants, 1,
1148 N_("Attempt to merge identical constants accross compilation units") },
1149 {"merge-all-constants", &flag_merge_constants, 2,
1150 N_("Attempt to merge identical constants and constant variables") },
1151 {"dump-unnumbered", &flag_dump_unnumbered, 1,
1152 N_("Suppress output of instruction numbers and line number notes in debugging dumps") },
1153 {"instrument-functions", &flag_instrument_function_entry_exit, 1,
1154 N_("Instrument function entry/exit with profiling calls") },
1155 {"zero-initialized-in-bss", &flag_zero_initialized_in_bss, 1,
1156 N_("Put zero initialized data in the bss section") },
1157 {"ssa", &flag_ssa, 1,
1158 N_("Enable SSA optimizations") },
1159 {"ssa-ccp", &flag_ssa_ccp, 1,
1160 N_("Enable SSA conditional constant propagation") },
1161 {"ssa-dce", &flag_ssa_dce, 1,
1162 N_("Enable aggressive SSA dead code elimination") },
1163 {"leading-underscore", &flag_leading_underscore, 1,
1164 N_("External symbols have a leading underscore") },
1165 {"ident", &flag_no_ident, 0,
1166 N_("Process #ident directives") },
1167 { "peephole2", &flag_peephole2, 1,
1168 N_("Enables an rtl peephole pass run before sched2") },
1169 {"finite-math-only", &flag_finite_math_only, 1,
1170 N_("Assume no NaNs or +-Infs are generated") },
1171 { "guess-branch-probability", &flag_guess_branch_prob, 1,
1172 N_("Enables guessing of branch probabilities") },
1173 {"math-errno", &flag_errno_math, 1,
1174 N_("Set errno after built-in math functions") },
1175 {"trapping-math", &flag_trapping_math, 1,
1176 N_("Floating-point operations can trap") },
1177 {"unsafe-math-optimizations", &flag_unsafe_math_optimizations, 1,
1178 N_("Allow math optimizations that may violate IEEE or ANSI standards") },
1179 {"signaling-nans", &flag_signaling_nans, 1,
1180 N_("Disable optimizations observable by IEEE signaling NaNs") },
1181 {"bounds-check", &flag_bounds_check, 1,
1182 N_("Generate code to check bounds before indexing arrays") },
1183 {"single-precision-constant", &flag_single_precision_constant, 1,
1184 N_("Convert floating point constant to single precision constant") },
1185 {"time-report", &time_report, 1,
1186 N_("Report time taken by each compiler pass at end of run") },
1187 {"mem-report", &mem_report, 1,
1188 N_("Report on permanent memory allocation at end of run") },
1189 { "trapv", &flag_trapv, 1,
1190 N_("Trap for signed overflow in addition / subtraction / multiplication") },
1191 { "new-ra", &flag_new_regalloc, 1,
1192 N_("Use graph coloring register allocation.") },
1195 /* Table of language-specific options. */
1197 static const struct lang_opt
1199 const char *const option;
1200 const char *const description;
1202 documented_lang_options[] =
1204 /* In order not to overload the --help output, the convention
1205 used here is to only describe those options which are not
1206 enabled by default. */
1208 { "-ansi",
1209 N_("Compile just for ISO C90") },
1210 { "-std= ",
1211 N_("Determine language standard") },
1213 { "-fsigned-bitfields", "" },
1214 { "-funsigned-bitfields",
1215 N_("Make bit-fields by unsigned by default") },
1216 { "-fno-signed-bitfields", "" },
1217 { "-fno-unsigned-bitfields","" },
1218 { "-fsigned-char",
1219 N_("Make 'char' be signed by default") },
1220 { "-funsigned-char",
1221 N_("Make 'char' be unsigned by default") },
1222 { "-fno-signed-char", "" },
1223 { "-fno-unsigned-char", "" },
1225 { "-fasm", "" },
1226 { "-fno-asm",
1227 N_("Do not recognize the 'asm' keyword") },
1228 { "-fbuiltin", "" },
1229 { "-fno-builtin",
1230 N_("Do not recognize any built in functions") },
1231 { "-fhosted",
1232 N_("Assume normal C execution environment") },
1233 { "-fno-hosted", "" },
1234 { "-ffreestanding",
1235 N_("Assume that standard libraries & main might not exist") },
1236 { "-fno-freestanding", "" },
1237 { "-fcond-mismatch",
1238 N_("Allow different types as args of ? operator") },
1239 { "-fno-cond-mismatch", "" },
1240 { "-fdollars-in-identifiers",
1241 N_("Allow the use of $ inside identifiers") },
1242 { "-fno-dollars-in-identifiers", "" },
1243 { "-fpreprocessed", "" },
1244 { "-fno-preprocessed", "" },
1245 { "-fshort-double",
1246 N_("Use the same size for double as for float") },
1247 { "-fno-short-double", "" },
1248 { "-fshort-enums",
1249 N_("Use the smallest fitting integer to hold enums") },
1250 { "-fno-short-enums", "" },
1251 { "-fshort-wchar",
1252 N_("Override the underlying type for wchar_t to `unsigned short'") },
1253 { "-fno-short-wchar", "" },
1255 { "-Wall",
1256 N_("Enable most warning messages") },
1257 { "-Wbad-function-cast",
1258 N_("Warn about casting functions to incompatible types") },
1259 { "-Wno-bad-function-cast", "" },
1260 { "-Wmissing-format-attribute",
1261 N_("Warn about functions which might be candidates for format attributes") },
1262 { "-Wno-missing-format-attribute", "" },
1263 { "-Wcast-qual",
1264 N_("Warn about casts which discard qualifiers") },
1265 { "-Wno-cast-qual", "" },
1266 { "-Wchar-subscripts",
1267 N_("Warn about subscripts whose type is 'char'") },
1268 { "-Wno-char-subscripts", "" },
1269 { "-Wcomment",
1270 N_("Warn if nested comments are detected") },
1271 { "-Wno-comment", "" },
1272 { "-Wcomments",
1273 N_("Warn if nested comments are detected") },
1274 { "-Wno-comments", "" },
1275 { "-Wconversion",
1276 N_("Warn about possibly confusing type conversions") },
1277 { "-Wno-conversion", "" },
1278 { "-Wdiv-by-zero", "" },
1279 { "-Wno-div-by-zero",
1280 N_("Do not warn about compile-time integer division by zero") },
1281 { "-Wfloat-equal",
1282 N_("Warn about testing equality of floating point numbers") },
1283 { "-Wno-float-equal", "" },
1284 { "-Wformat",
1285 N_("Warn about printf/scanf/strftime/strfmon format anomalies") },
1286 { "-Wno-format", "" },
1287 { "-Wformat-extra-args", "" },
1288 { "-Wno-format-extra-args",
1289 N_("Don't warn about too many arguments to format functions") },
1290 { "-Wformat-nonliteral",
1291 N_("Warn about non-string-literal format strings") },
1292 { "-Wno-format-nonliteral", "" },
1293 { "-Wformat-security",
1294 N_("Warn about possible security problems with format functions") },
1295 { "-Wno-format-security", "" },
1296 { "-Wformat-y2k", "" },
1297 { "-Wno-format-y2k",
1298 N_("Don't warn about strftime formats yielding 2 digit years") },
1299 { "-Wimplicit-function-declaration",
1300 N_("Warn about implicit function declarations") },
1301 { "-Wno-implicit-function-declaration", "" },
1302 { "-Werror-implicit-function-declaration", "" },
1303 { "-Wimplicit-int",
1304 N_("Warn when a declaration does not specify a type") },
1305 { "-Wno-implicit-int", "" },
1306 { "-Wimplicit", "" },
1307 { "-Wno-implicit", "" },
1308 { "-Wimport",
1309 N_("Warn about the use of the #import directive") },
1310 { "-Wno-import", "" },
1311 { "-Winvalid-pch",
1312 N_("Warn about PCH files that are found but not used") },
1313 { "-Wlong-long","" },
1314 { "-Wno-long-long",
1315 N_("Do not warn about using 'long long' when -pedantic") },
1316 { "-Wmain",
1317 N_("Warn about suspicious declarations of main") },
1318 { "-Wno-main", "" },
1319 { "-Wmissing-braces",
1320 N_("Warn about possibly missing braces around initializers") },
1321 { "-Wno-missing-braces", "" },
1322 { "-Wmissing-declarations",
1323 N_("Warn about global funcs without previous declarations") },
1324 { "-Wno-missing-declarations", "" },
1325 { "-Wmissing-prototypes",
1326 N_("Warn about global funcs without prototypes") },
1327 { "-Wno-missing-prototypes", "" },
1328 { "-Wmultichar",
1329 N_("Warn about use of multicharacter literals") },
1330 { "-Wno-multichar", "" },
1331 { "-Wnested-externs",
1332 N_("Warn about externs not at file scope level") },
1333 { "-Wno-nested-externs", "" },
1334 { "-Wparentheses",
1335 N_("Warn about possible missing parentheses") },
1336 { "-Wno-parentheses", "" },
1337 { "-Wpointer-arith",
1338 N_("Warn about function pointer arithmetic") },
1339 { "-Wno-pointer-arith", "" },
1340 { "-Wredundant-decls",
1341 N_("Warn about multiple declarations of the same object") },
1342 { "-Wno-redundant-decls", "" },
1343 { "-Wreturn-type",
1344 N_("Warn whenever a function's return-type defaults to int") },
1345 { "-Wno-return-type", "" },
1346 { "-Wsequence-point",
1347 N_("Warn about possible violations of sequence point rules") },
1348 { "-Wno-sequence-point", "" },
1349 { "-Wsign-compare",
1350 N_("Warn about signed/unsigned comparisons") },
1351 { "-Wno-sign-compare", "" },
1352 { "-Wstrict-prototypes",
1353 N_("Warn about non-prototyped function decls") },
1354 { "-Wno-strict-prototypes", "" },
1355 { "-Wtraditional",
1356 N_("Warn about constructs whose meanings change in ISO C") },
1357 { "-Wno-traditional", "" },
1358 { "-Wtrigraphs",
1359 N_("Warn when trigraphs are encountered") },
1360 { "-Wno-trigraphs", "" },
1361 { "-Wundef", "" },
1362 { "-Wno-undef", "" },
1363 { "-Wunknown-pragmas",
1364 N_("Warn about unrecognized pragmas") },
1365 { "-Wno-unknown-pragmas", "" },
1366 { "-Wwrite-strings",
1367 N_("Mark strings as 'const char *'") },
1368 { "-Wno-write-strings", "" },
1370 #define DEFINE_LANG_NAME(NAME) { NULL, NAME },
1372 #include "options.h"
1376 /* Here is a table, controlled by the tm.h file, listing each -m switch
1377 and which bits in `target_switches' it should set or clear.
1378 If VALUE is positive, it is bits to set.
1379 If VALUE is negative, -VALUE is bits to clear.
1380 (The sign bit is not used so there is no confusion.) */
1382 static const struct
1384 const char *const name;
1385 const int value;
1386 const char *const description;
1388 target_switches[] = TARGET_SWITCHES;
1390 /* This table is similar, but allows the switch to have a value. */
1392 #ifdef TARGET_OPTIONS
1393 static const struct
1395 const char *const prefix;
1396 const char **const variable;
1397 const char *const description;
1399 target_options[] = TARGET_OPTIONS;
1400 #endif
1402 /* Options controlling warnings. */
1404 /* Don't print warning messages. -w. */
1406 int inhibit_warnings = 0;
1408 /* Don't suppress warnings from system headers. -Wsystem-headers. */
1410 int warn_system_headers = 0;
1412 /* Print various extra warnings. -W/-Wextra. */
1414 int extra_warnings = 0;
1416 /* Treat warnings as errors. -Werror. */
1418 int warnings_are_errors = 0;
1420 /* Nonzero to warn about unused variables, functions et.al. */
1422 int warn_unused_function;
1423 int warn_unused_label;
1424 int warn_unused_parameter;
1425 int warn_unused_variable;
1426 int warn_unused_value;
1428 /* Nonzero to warn about code which is never reached. */
1430 int warn_notreached;
1432 /* Nonzero to warn about variables used before they are initialized. */
1434 int warn_uninitialized;
1436 /* Nonzero means warn about all declarations which shadow others. */
1438 int warn_shadow;
1440 /* Warn if a switch on an enum, that does not have a default case,
1441 fails to have a case for every enum value. */
1443 int warn_switch;
1445 /* Warn if a switch does not have a default case. */
1447 int warn_switch_default;
1449 /* Warn if a switch on an enum fails to have a case for every enum
1450 value (regardless of the presence or otherwise of a default case). */
1452 int warn_switch_enum;
1454 /* Nonzero means warn about function definitions that default the return type
1455 or that use a null return and have a return-type other than void. */
1457 int warn_return_type;
1459 /* Nonzero means warn about pointer casts that increase the required
1460 alignment of the target type (and might therefore lead to a crash
1461 due to a misaligned access). */
1463 int warn_cast_align;
1465 /* Nonzero means warn about any objects definitions whose size is larger
1466 than N bytes. Also want about function definitions whose returned
1467 values are larger than N bytes. The value N is in `larger_than_size'. */
1469 int warn_larger_than;
1470 HOST_WIDE_INT larger_than_size;
1472 /* Nonzero means warn if inline function is too large. */
1474 int warn_inline;
1476 /* Warn if a function returns an aggregate,
1477 since there are often incompatible calling conventions for doing this. */
1479 int warn_aggregate_return;
1481 /* Warn if packed attribute on struct is unnecessary and inefficient. */
1483 int warn_packed;
1485 /* Warn when gcc pads a structure to an alignment boundary. */
1487 int warn_padded;
1489 /* Warn when an optimization pass is disabled. */
1491 int warn_disabled_optimization;
1493 /* Warn about functions which might be candidates for attribute noreturn. */
1495 int warn_missing_noreturn;
1497 /* Nonzero means warn about uses of __attribute__((deprecated))
1498 declarations. */
1500 int warn_deprecated_decl = 1;
1502 /* Nonzero means warn about constructs which might not be
1503 strict-aliasing safe. */
1505 int warn_strict_aliasing;
1507 /* Like f_options, but for -W. */
1509 static const lang_independent_options W_options[] =
1511 {"unused-function", &warn_unused_function, 1,
1512 N_("Warn when a function is unused") },
1513 {"unused-label", &warn_unused_label, 1,
1514 N_("Warn when a label is unused") },
1515 {"unused-parameter", &warn_unused_parameter, 1,
1516 N_("Warn when a function parameter is unused") },
1517 {"unused-variable", &warn_unused_variable, 1,
1518 N_("Warn when a variable is unused") },
1519 {"unused-value", &warn_unused_value, 1,
1520 N_("Warn when an expression value is unused") },
1521 {"system-headers", &warn_system_headers, 1,
1522 N_("Do not suppress warnings from system headers") },
1523 {"error", &warnings_are_errors, 1,
1524 N_("Treat all warnings as errors") },
1525 {"shadow", &warn_shadow, 1,
1526 N_("Warn when one local variable shadows another") },
1527 {"switch", &warn_switch, 1,
1528 N_("Warn about enumerated switches, with no default, missing a case") },
1529 {"switch-default", &warn_switch_default, 1,
1530 N_("Warn about enumerated switches missing a default case") },
1531 {"switch-enum", &warn_switch_enum, 1,
1532 N_("Warn about all enumerated switches missing a specific case") },
1533 {"aggregate-return", &warn_aggregate_return, 1,
1534 N_("Warn about returning structures, unions or arrays") },
1535 {"cast-align", &warn_cast_align, 1,
1536 N_("Warn about pointer casts which increase alignment") },
1537 {"unreachable-code", &warn_notreached, 1,
1538 N_("Warn about code that will never be executed") },
1539 {"uninitialized", &warn_uninitialized, 1,
1540 N_("Warn about uninitialized automatic variables") },
1541 {"inline", &warn_inline, 1,
1542 N_("Warn when an inlined function cannot be inlined") },
1543 {"packed", &warn_packed, 1,
1544 N_("Warn when the packed attribute has no effect on struct layout") },
1545 {"padded", &warn_padded, 1,
1546 N_("Warn when padding is required to align struct members") },
1547 {"disabled-optimization", &warn_disabled_optimization, 1,
1548 N_("Warn when an optimization pass is disabled") },
1549 {"deprecated-declarations", &warn_deprecated_decl, 1,
1550 N_("Warn about uses of __attribute__((deprecated)) declarations") },
1551 {"extra", &extra_warnings, 1,
1552 N_("Print extra (possibly unwanted) warnings") },
1553 {"missing-noreturn", &warn_missing_noreturn, 1,
1554 N_("Warn about functions which might be candidates for attribute noreturn") },
1555 {"strict-aliasing", &warn_strict_aliasing, 1,
1556 N_ ("Warn about code which might break the strict aliasing rules") }
1559 void
1560 set_Wunused (setting)
1561 int setting;
1563 warn_unused_function = setting;
1564 warn_unused_label = setting;
1565 /* Unused function parameter warnings are reported when either ``-W
1566 -Wunused'' or ``-Wunused-parameter'' is specified. Differentiate
1567 -Wunused by setting WARN_UNUSED_PARAMETER to -1. */
1568 if (!setting)
1569 warn_unused_parameter = 0;
1570 else if (!warn_unused_parameter)
1571 warn_unused_parameter = -1;
1572 warn_unused_variable = setting;
1573 warn_unused_value = setting;
1576 /* The following routines are useful in setting all the flags that
1577 -ffast-math and -fno-fast-math imply. */
1579 void
1580 set_fast_math_flags (set)
1581 int set;
1583 flag_trapping_math = !set;
1584 flag_unsafe_math_optimizations = set;
1585 flag_finite_math_only = set;
1586 flag_errno_math = !set;
1587 if (set)
1588 flag_signaling_nans = 0;
1591 /* Return true iff flags are set as if -ffast-math. */
1592 bool
1593 fast_math_flags_set_p ()
1595 return (!flag_trapping_math
1596 && flag_unsafe_math_optimizations
1597 && flag_finite_math_only
1598 && !flag_errno_math);
1602 /* Output files for assembler code (real compiler output)
1603 and debugging dumps. */
1605 FILE *asm_out_file;
1606 FILE *aux_info_file;
1607 FILE *rtl_dump_file = NULL;
1609 /* Decode the string P as an integral parameter.
1610 If the string is indeed an integer return its numeric value else
1611 issue an Invalid Option error for the option PNAME and return DEFVAL.
1612 If PNAME is zero just return DEFVAL, do not call error. */
1615 read_integral_parameter (p, pname, defval)
1616 const char *p;
1617 const char *pname;
1618 const int defval;
1620 const char *endp = p;
1622 while (*endp)
1624 if (ISDIGIT (*endp))
1625 endp++;
1626 else
1627 break;
1630 if (*endp != 0)
1632 if (pname != 0)
1633 error ("invalid option `%s'", pname);
1634 return defval;
1637 return atoi (p);
1640 /* This calls abort and is used to avoid problems when abort is a macro.
1641 It is used when we need to pass the address of abort. */
1643 void
1644 do_abort ()
1646 abort ();
1649 /* When `malloc.c' is compiled with `rcheck' defined,
1650 it calls this function to report clobberage. */
1652 void
1653 botch (s)
1654 const char *s ATTRIBUTE_UNUSED;
1656 abort ();
1659 /* Return the logarithm of X, base 2, considering X unsigned,
1660 if X is a power of 2. Otherwise, returns -1.
1662 This should be used via the `exact_log2' macro. */
1665 exact_log2_wide (x)
1666 unsigned HOST_WIDE_INT x;
1668 int log = 0;
1669 /* Test for 0 or a power of 2. */
1670 if (x == 0 || x != (x & -x))
1671 return -1;
1672 while ((x >>= 1) != 0)
1673 log++;
1674 return log;
1677 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1678 If X is 0, return -1.
1680 This should be used via the floor_log2 macro. */
1683 floor_log2_wide (x)
1684 unsigned HOST_WIDE_INT x;
1686 int log = -1;
1687 while (x != 0)
1688 log++,
1689 x >>= 1;
1690 return log;
1693 /* Handler for fatal signals, such as SIGSEGV. These are transformed
1694 into ICE messages, which is much more user friendly. */
1696 static void
1697 crash_signal (signo)
1698 int signo;
1700 internal_error ("%s", strsignal (signo));
1703 /* Arrange to dump core on error. (The regular error message is still
1704 printed first, except in the case of abort().) */
1706 static void
1707 setup_core_dumping ()
1709 #ifdef SIGABRT
1710 signal (SIGABRT, SIG_DFL);
1711 #endif
1712 #if defined(HAVE_SETRLIMIT)
1714 struct rlimit rlim;
1715 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
1716 fatal_io_error ("getting core file size maximum limit");
1717 rlim.rlim_cur = rlim.rlim_max;
1718 if (setrlimit (RLIMIT_CORE, &rlim) != 0)
1719 fatal_io_error ("setting core file size limit to maximum");
1721 #endif
1722 diagnostic_abort_on_error (global_dc);
1726 /* Strip off a legitimate source ending from the input string NAME of
1727 length LEN. Rather than having to know the names used by all of
1728 our front ends, we strip off an ending of a period followed by
1729 up to five characters. (Java uses ".class".) */
1731 void
1732 strip_off_ending (name, len)
1733 char *name;
1734 int len;
1736 int i;
1737 for (i = 2; i < 6 && len > i; i++)
1739 if (name[len - i] == '.')
1741 name[len - i] = '\0';
1742 break;
1747 /* Output a quoted string. */
1749 void
1750 output_quoted_string (asm_file, string)
1751 FILE *asm_file;
1752 const char *string;
1754 #ifdef OUTPUT_QUOTED_STRING
1755 OUTPUT_QUOTED_STRING (asm_file, string);
1756 #else
1757 char c;
1759 putc ('\"', asm_file);
1760 while ((c = *string++) != 0)
1762 if (ISPRINT (c))
1764 if (c == '\"' || c == '\\')
1765 putc ('\\', asm_file);
1766 putc (c, asm_file);
1768 else
1769 fprintf (asm_file, "\\%03o", (unsigned char) c);
1771 putc ('\"', asm_file);
1772 #endif
1775 /* Output NAME into FILE after having turned it into something
1776 usable as an identifier in a target's assembly file. */
1777 void
1778 output_clean_symbol_name (file, name)
1779 FILE *file;
1780 const char *name;
1782 /* Make a copy of NAME. */
1783 char *id = xstrdup (name);
1785 /* Make it look like a valid identifier for an assembler. */
1786 clean_symbol_name (id);
1788 fputs (id, file);
1789 free (id);
1793 /* Output a file name in the form wanted by System V. */
1795 void
1796 output_file_directive (asm_file, input_name)
1797 FILE *asm_file;
1798 const char *input_name;
1800 int len = strlen (input_name);
1801 const char *na = input_name + len;
1803 /* NA gets INPUT_NAME sans directory names. */
1804 while (na > input_name)
1806 if (IS_DIR_SEPARATOR (na[-1]))
1807 break;
1808 na--;
1811 #ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
1812 ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file, na);
1813 #else
1814 #ifdef ASM_OUTPUT_SOURCE_FILENAME
1815 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
1816 #else
1817 fprintf (asm_file, "\t.file\t");
1818 output_quoted_string (asm_file, na);
1819 fputc ('\n', asm_file);
1820 #endif
1821 #endif
1824 /* Routine to open a dump file. Return true if the dump file is enabled. */
1826 static int
1827 open_dump_file (index, decl)
1828 enum dump_file_index index;
1829 tree decl;
1831 char *dump_name;
1832 const char *open_arg;
1833 char seq[16];
1835 if (! dump_file[index].enabled)
1836 return 0;
1838 timevar_push (TV_DUMP);
1839 if (rtl_dump_file != NULL)
1840 fclose (rtl_dump_file);
1842 sprintf (seq, DUMPFILE_FORMAT, index);
1844 if (! dump_file[index].initialized)
1846 /* If we've not initialized the files, do so now. */
1847 if (graph_dump_format != no_graph
1848 && dump_file[index].graph_dump_p)
1850 dump_name = concat (seq, dump_file[index].extension, NULL);
1851 clean_graph_dump_file (dump_base_name, dump_name);
1852 free (dump_name);
1854 dump_file[index].initialized = 1;
1855 open_arg = "w";
1857 else
1858 open_arg = "a";
1860 dump_name = concat (dump_base_name, seq,
1861 dump_file[index].extension, NULL);
1863 rtl_dump_file = fopen (dump_name, open_arg);
1864 if (rtl_dump_file == NULL)
1865 fatal_io_error ("can't open %s", dump_name);
1867 free (dump_name);
1869 if (decl)
1870 fprintf (rtl_dump_file, "\n;; Function %s%s\n\n",
1871 (*lang_hooks.decl_printable_name) (decl, 2),
1872 cfun->function_frequency == FUNCTION_FREQUENCY_HOT
1873 ? " (hot)"
1874 : cfun->function_frequency == FUNCTION_FREQUENCY_UNLIKELY_EXECUTED
1875 ? " (unlikely executed)"
1876 : "");
1878 timevar_pop (TV_DUMP);
1879 return 1;
1882 /* Routine to close a dump file. */
1884 static void
1885 close_dump_file (index, func, insns)
1886 enum dump_file_index index;
1887 void (*func) PARAMS ((FILE *, rtx));
1888 rtx insns;
1890 if (! rtl_dump_file)
1891 return;
1893 timevar_push (TV_DUMP);
1894 if (insns
1895 && graph_dump_format != no_graph
1896 && dump_file[index].graph_dump_p)
1898 char seq[16];
1899 char *suffix;
1901 sprintf (seq, DUMPFILE_FORMAT, index);
1902 suffix = concat (seq, dump_file[index].extension, NULL);
1903 print_rtl_graph_with_bb (dump_base_name, suffix, insns);
1904 free (suffix);
1907 if (func && insns)
1908 func (rtl_dump_file, insns);
1910 fflush (rtl_dump_file);
1911 fclose (rtl_dump_file);
1913 rtl_dump_file = NULL;
1914 timevar_pop (TV_DUMP);
1917 /* Do any final processing required for the declarations in VEC, of
1918 which there are LEN. We write out inline functions and variables
1919 that have been deferred until this point, but which are required.
1920 Returns nonzero if anything was put out. */
1923 wrapup_global_declarations (vec, len)
1924 tree *vec;
1925 int len;
1927 tree decl;
1928 int i;
1929 int reconsider;
1930 int output_something = 0;
1932 for (i = 0; i < len; i++)
1934 decl = vec[i];
1936 /* We're not deferring this any longer. */
1937 DECL_DEFER_OUTPUT (decl) = 0;
1939 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
1940 (*lang_hooks.finish_incomplete_decl) (decl);
1943 /* Now emit any global variables or functions that we have been
1944 putting off. We need to loop in case one of the things emitted
1945 here references another one which comes earlier in the list. */
1948 reconsider = 0;
1949 for (i = 0; i < len; i++)
1951 decl = vec[i];
1953 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
1954 continue;
1956 /* Don't write out static consts, unless we still need them.
1958 We also keep static consts if not optimizing (for debugging),
1959 unless the user specified -fno-keep-static-consts.
1960 ??? They might be better written into the debug information.
1961 This is possible when using DWARF.
1963 A language processor that wants static constants to be always
1964 written out (even if it is not used) is responsible for
1965 calling rest_of_decl_compilation itself. E.g. the C front-end
1966 calls rest_of_decl_compilation from finish_decl.
1967 One motivation for this is that is conventional in some
1968 environments to write things like:
1969 static const char rcsid[] = "... version string ...";
1970 intending to force the string to be in the executable.
1972 A language processor that would prefer to have unneeded
1973 static constants "optimized away" would just defer writing
1974 them out until here. E.g. C++ does this, because static
1975 constants are often defined in header files.
1977 ??? A tempting alternative (for both C and C++) would be
1978 to force a constant to be written if and only if it is
1979 defined in a main file, as opposed to an include file. */
1981 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
1983 bool needed = 1;
1985 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
1986 /* needed */;
1987 else if (DECL_COMDAT (decl))
1988 needed = 0;
1989 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
1990 && (optimize || !flag_keep_static_consts
1991 || DECL_ARTIFICIAL (decl)))
1992 needed = 0;
1994 if (needed)
1996 reconsider = 1;
1997 rest_of_decl_compilation (decl, NULL, 1, 1);
2001 if (TREE_CODE (decl) == FUNCTION_DECL
2002 && DECL_INITIAL (decl) != 0
2003 && DECL_SAVED_INSNS (decl) != 0
2004 && (flag_keep_inline_functions
2005 || (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
2006 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
2008 reconsider = 1;
2009 output_inline_function (decl);
2013 if (reconsider)
2014 output_something = 1;
2016 while (reconsider);
2018 return output_something;
2021 /* Issue appropriate warnings for the global declarations in VEC (of
2022 which there are LEN). Output debugging information for them. */
2024 void
2025 check_global_declarations (vec, len)
2026 tree *vec;
2027 int len;
2029 tree decl;
2030 int i;
2032 for (i = 0; i < len; i++)
2034 decl = vec[i];
2036 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
2037 && ! TREE_ASM_WRITTEN (decl))
2038 /* Cancel the RTL for this decl so that, if debugging info
2039 output for global variables is still to come,
2040 this one will be omitted. */
2041 SET_DECL_RTL (decl, NULL_RTX);
2043 /* Warn about any function
2044 declared static but not defined.
2045 We don't warn about variables,
2046 because many programs have static variables
2047 that exist only to get some text into the object file. */
2048 if (TREE_CODE (decl) == FUNCTION_DECL
2049 && (warn_unused_function
2050 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2051 && DECL_INITIAL (decl) == 0
2052 && DECL_EXTERNAL (decl)
2053 && ! DECL_ARTIFICIAL (decl)
2054 && ! TREE_PUBLIC (decl))
2056 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
2057 pedwarn_with_decl (decl,
2058 "`%s' used but never defined");
2059 else
2060 warning_with_decl (decl,
2061 "`%s' declared `static' but never defined");
2062 /* This symbol is effectively an "extern" declaration now. */
2063 TREE_PUBLIC (decl) = 1;
2064 assemble_external (decl);
2067 /* Warn about static fns or vars defined but not used. */
2068 if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
2069 || (warn_unused_variable && TREE_CODE (decl) == VAR_DECL))
2070 && ! TREE_USED (decl)
2071 /* The TREE_USED bit for file-scope decls is kept in the identifier,
2072 to handle multiple external decls in different scopes. */
2073 && ! TREE_USED (DECL_NAME (decl))
2074 && ! DECL_EXTERNAL (decl)
2075 && ! TREE_PUBLIC (decl)
2076 /* Global register variables must be declared to reserve them. */
2077 && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
2078 /* Otherwise, ask the language. */
2079 && (*lang_hooks.decls.warn_unused_global) (decl))
2080 warning_with_decl (decl, "`%s' defined but not used");
2082 /* Avoid confusing the debug information machinery when there are
2083 errors. */
2084 if (errorcount == 0 && sorrycount == 0)
2086 timevar_push (TV_SYMOUT);
2087 (*debug_hooks->global_decl) (decl);
2088 timevar_pop (TV_SYMOUT);
2093 /* Save the current INPUT_FILENAME and LINENO on the top entry in the
2094 INPUT_FILE_STACK. Push a new entry for FILE and LINE, and set the
2095 INPUT_FILENAME and LINENO accordingly. */
2097 void
2098 push_srcloc (file, line)
2099 const char *file;
2100 int line;
2102 struct file_stack *fs;
2104 if (input_file_stack)
2106 input_file_stack->name = input_filename;
2107 input_file_stack->line = lineno;
2110 fs = (struct file_stack *) xmalloc (sizeof (struct file_stack));
2111 fs->name = input_filename = file;
2112 fs->line = lineno = line;
2113 fs->next = input_file_stack;
2114 input_file_stack = fs;
2115 input_file_stack_tick++;
2118 /* Pop the top entry off the stack of presently open source files.
2119 Restore the INPUT_FILENAME and LINENO from the new topmost entry on
2120 the stack. */
2122 void
2123 pop_srcloc ()
2125 struct file_stack *fs;
2127 fs = input_file_stack;
2128 input_file_stack = fs->next;
2129 free (fs);
2130 input_file_stack_tick++;
2131 /* The initial source file is never popped. */
2132 if (!input_file_stack)
2133 abort ();
2134 input_filename = input_file_stack->name;
2135 lineno = input_file_stack->line;
2138 /* Compile an entire translation unit. Write a file of assembly
2139 output and various debugging dumps. */
2141 static void
2142 compile_file ()
2144 tree globals;
2146 /* Initialize yet another pass. */
2148 init_final (main_input_filename);
2149 init_branch_prob (aux_base_name);
2151 timevar_push (TV_PARSE);
2153 /* Call the parser, which parses the entire file (calling
2154 rest_of_compilation for each function). */
2155 (*lang_hooks.parse_file) (set_yydebug);
2157 /* In case there were missing block closers,
2158 get us back to the global binding level. */
2159 (*lang_hooks.clear_binding_stack) ();
2161 /* Compilation is now finished except for writing
2162 what's left of the symbol table output. */
2163 timevar_pop (TV_PARSE);
2165 if (flag_syntax_only)
2166 return;
2168 globals = (*lang_hooks.decls.getdecls) ();
2170 /* Really define vars that have had only a tentative definition.
2171 Really output inline functions that must actually be callable
2172 and have not been output so far. */
2175 int len = list_length (globals);
2176 tree *vec = (tree *) xmalloc (sizeof (tree) * len);
2177 int i;
2178 tree decl;
2180 /* Process the decls in reverse order--earliest first.
2181 Put them into VEC from back to front, then take out from front. */
2183 for (i = 0, decl = globals; i < len; i++, decl = TREE_CHAIN (decl))
2184 vec[len - i - 1] = decl;
2186 wrapup_global_declarations (vec, len);
2188 if (profile_arc_flag)
2189 /* This must occur after the loop to output deferred functions.
2190 Else the profiler initializer would not be emitted if all the
2191 functions in this compilation unit were deferred. */
2192 create_profiler ();
2194 check_global_declarations (vec, len);
2196 /* Clean up. */
2197 free (vec);
2200 /* Write out any pending weak symbol declarations. */
2202 weak_finish ();
2204 /* Do dbx symbols. */
2205 timevar_push (TV_SYMOUT);
2207 #ifdef DWARF2_UNWIND_INFO
2208 if (dwarf2out_do_frame ())
2209 dwarf2out_frame_finish ();
2210 #endif
2212 (*debug_hooks->finish) (main_input_filename);
2213 timevar_pop (TV_SYMOUT);
2215 /* Output some stuff at end of file if nec. */
2217 dw2_output_indirect_constants ();
2219 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
2221 timevar_push (TV_DUMP);
2222 open_dump_file (DFI_bp, NULL);
2224 end_branch_prob ();
2226 close_dump_file (DFI_bp, NULL, NULL_RTX);
2227 timevar_pop (TV_DUMP);
2230 #ifdef ASM_FILE_END
2231 ASM_FILE_END (asm_out_file);
2232 #endif
2234 /* Attach a special .ident directive to the end of the file to identify
2235 the version of GCC which compiled this code. The format of the .ident
2236 string is patterned after the ones produced by native SVR4 compilers. */
2237 #ifdef IDENT_ASM_OP
2238 if (!flag_no_ident)
2239 fprintf (asm_out_file, "%s\"GCC: (GNU) %s\"\n",
2240 IDENT_ASM_OP, version_string);
2241 #endif
2243 if (optimize > 0 && open_dump_file (DFI_combine, NULL))
2245 timevar_push (TV_DUMP);
2246 dump_combine_total_stats (rtl_dump_file);
2247 close_dump_file (DFI_combine, NULL, NULL_RTX);
2248 timevar_pop (TV_DUMP);
2252 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
2253 and TYPE_DECL nodes.
2255 This does nothing for local (non-static) variables, unless the
2256 variable is a register variable with an ASMSPEC. In that case, or
2257 if the variable is not an automatic, it sets up the RTL and
2258 outputs any assembler code (label definition, storage allocation
2259 and initialization).
2261 DECL is the declaration. If ASMSPEC is nonzero, it specifies
2262 the assembler symbol name to be used. TOP_LEVEL is nonzero
2263 if this declaration is not within a function. */
2265 void
2266 rest_of_decl_compilation (decl, asmspec, top_level, at_end)
2267 tree decl;
2268 const char *asmspec;
2269 int top_level;
2270 int at_end;
2272 /* We deferred calling assemble_alias so that we could collect
2273 other attributes such as visibility. Emit the alias now. */
2275 tree alias;
2276 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl));
2277 if (alias)
2279 alias = TREE_VALUE (TREE_VALUE (alias));
2280 alias = get_identifier (TREE_STRING_POINTER (alias));
2281 assemble_alias (decl, alias);
2285 /* Forward declarations for nested functions are not "external",
2286 but we need to treat them as if they were. */
2287 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
2288 || TREE_CODE (decl) == FUNCTION_DECL)
2290 timevar_push (TV_VARCONST);
2292 if (asmspec)
2293 make_decl_rtl (decl, asmspec);
2295 /* Don't output anything when a tentative file-scope definition
2296 is seen. But at end of compilation, do output code for them. */
2297 if (at_end || !DECL_DEFER_OUTPUT (decl))
2298 assemble_variable (decl, top_level, at_end, 0);
2300 #ifdef ASM_FINISH_DECLARE_OBJECT
2301 if (decl == last_assemble_variable_decl)
2303 ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
2304 top_level, at_end);
2306 #endif
2308 timevar_pop (TV_VARCONST);
2310 else if (DECL_REGISTER (decl) && asmspec != 0)
2312 if (decode_reg_name (asmspec) >= 0)
2314 SET_DECL_RTL (decl, NULL_RTX);
2315 make_decl_rtl (decl, asmspec);
2317 else
2319 error ("invalid register name `%s' for register variable", asmspec);
2320 DECL_REGISTER (decl) = 0;
2321 if (!top_level)
2322 expand_decl (decl);
2325 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2326 else if ((write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2327 && TREE_CODE (decl) == TYPE_DECL)
2329 timevar_push (TV_SYMOUT);
2330 dbxout_symbol (decl, 0);
2331 timevar_pop (TV_SYMOUT);
2333 #endif
2334 #ifdef SDB_DEBUGGING_INFO
2335 else if (write_symbols == SDB_DEBUG && top_level
2336 && TREE_CODE (decl) == TYPE_DECL)
2338 timevar_push (TV_SYMOUT);
2339 sdbout_symbol (decl, 0);
2340 timevar_pop (TV_SYMOUT);
2342 #endif
2343 #ifdef DWARF2_DEBUGGING_INFO
2344 else if ((write_symbols == DWARF2_DEBUG
2345 || write_symbols == VMS_AND_DWARF2_DEBUG)
2346 && top_level
2347 && TREE_CODE (decl) == TYPE_DECL)
2349 timevar_push (TV_SYMOUT);
2350 dwarf2out_decl (decl);
2351 timevar_pop (TV_SYMOUT);
2353 #endif
2356 /* Called after finishing a record, union or enumeral type. */
2358 void
2359 rest_of_type_compilation (type, toplev)
2360 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO) \
2361 || defined (SDB_DEBUGGING_INFO) || defined (DWARF2_DEBUGGING_INFO)
2362 tree type;
2363 int toplev;
2364 #else
2365 tree type ATTRIBUTE_UNUSED;
2366 int toplev ATTRIBUTE_UNUSED;
2367 #endif
2369 /* Avoid confusing the debug information machinery when there are
2370 errors. */
2371 if (errorcount != 0 || sorrycount != 0)
2372 return;
2374 timevar_push (TV_SYMOUT);
2375 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2376 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2377 dbxout_symbol (TYPE_STUB_DECL (type), !toplev);
2378 #endif
2379 #ifdef SDB_DEBUGGING_INFO
2380 if (write_symbols == SDB_DEBUG)
2381 sdbout_symbol (TYPE_STUB_DECL (type), !toplev);
2382 #endif
2383 #ifdef DWARF2_DEBUGGING_INFO
2384 if ((write_symbols == DWARF2_DEBUG
2385 || write_symbols == VMS_AND_DWARF2_DEBUG)
2386 && toplev)
2387 dwarf2out_decl (TYPE_STUB_DECL (type));
2388 #endif
2389 timevar_pop (TV_SYMOUT);
2392 /* This is called from finish_function (within langhooks.parse_file)
2393 after each top-level definition is parsed.
2394 It is supposed to compile that function or variable
2395 and output the assembler code for it.
2396 After we return, the tree storage is freed. */
2398 void
2399 rest_of_compilation (decl)
2400 tree decl;
2402 rtx insns;
2403 int tem;
2404 int failure = 0;
2405 int rebuild_label_notes_after_reload;
2407 timevar_push (TV_REST_OF_COMPILATION);
2409 /* Now that we're out of the frontend, we shouldn't have any more
2410 CONCATs anywhere. */
2411 generating_concat_p = 0;
2413 /* When processing delayed functions, prepare_function_start() won't
2414 have been run to re-initialize it. */
2415 cse_not_expected = ! optimize;
2417 /* First, make sure that NOTE_BLOCK is set correctly for each
2418 NOTE_INSN_BLOCK_BEG/NOTE_INSN_BLOCK_END note. */
2419 if (!cfun->x_whole_function_mode_p)
2420 identify_blocks ();
2422 /* In function-at-a-time mode, we do not attempt to keep the BLOCK
2423 tree in sensible shape. So, we just recalculate it here. */
2424 if (cfun->x_whole_function_mode_p)
2425 reorder_blocks ();
2427 init_flow ();
2429 /* If we are reconsidering an inline function
2430 at the end of compilation, skip the stuff for making it inline. */
2432 if (DECL_SAVED_INSNS (decl) == 0)
2434 int inlinable = 0;
2435 tree parent;
2436 const char *lose;
2438 /* If this is nested inside an inlined external function, pretend
2439 it was only declared. Since we cannot inline such functions,
2440 generating code for this one is not only not necessary but will
2441 confuse some debugging output writers. */
2442 for (parent = DECL_CONTEXT (current_function_decl);
2443 parent != NULL_TREE;
2444 parent = get_containing_scope (parent))
2445 if (TREE_CODE (parent) == FUNCTION_DECL
2446 && DECL_INLINE (parent) && DECL_EXTERNAL (parent))
2448 DECL_INITIAL (decl) = 0;
2449 goto exit_rest_of_compilation;
2451 else if (TYPE_P (parent))
2452 /* A function in a local class should be treated normally. */
2453 break;
2455 /* If requested, consider whether to make this function inline. */
2456 if ((DECL_INLINE (decl) && !flag_no_inline)
2457 || flag_inline_functions)
2459 timevar_push (TV_INTEGRATION);
2460 lose = function_cannot_inline_p (decl);
2461 timevar_pop (TV_INTEGRATION);
2462 if (lose || ! optimize)
2464 if (warn_inline && DECL_INLINE (decl))
2465 warning_with_decl (decl, lose);
2466 DECL_ABSTRACT_ORIGIN (decl) = 0;
2467 /* Don't really compile an extern inline function.
2468 If we can't make it inline, pretend
2469 it was only declared. */
2470 if (DECL_EXTERNAL (decl))
2472 DECL_INITIAL (decl) = 0;
2473 goto exit_rest_of_compilation;
2476 else
2477 /* ??? Note that this has the effect of making it look
2478 like "inline" was specified for a function if we choose
2479 to inline it. This isn't quite right, but it's
2480 probably not worth the trouble to fix. */
2481 inlinable = DECL_INLINE (decl) = 1;
2484 insns = get_insns ();
2486 /* Dump the rtl code if we are dumping rtl. */
2488 if (open_dump_file (DFI_rtl, decl))
2490 if (DECL_SAVED_INSNS (decl))
2491 fprintf (rtl_dump_file, ";; (integrable)\n\n");
2492 close_dump_file (DFI_rtl, print_rtl, insns);
2495 /* Convert from NOTE_INSN_EH_REGION style notes, and do other
2496 sorts of eh initialization. Delay this until after the
2497 initial rtl dump so that we can see the original nesting. */
2498 convert_from_eh_region_ranges ();
2500 /* If function is inline, and we don't yet know whether to
2501 compile it by itself, defer decision till end of compilation.
2502 wrapup_global_declarations will (indirectly) call
2503 rest_of_compilation again for those functions that need to
2504 be output. Also defer those functions that we are supposed
2505 to defer. */
2507 if (inlinable
2508 || (DECL_INLINE (decl)
2509 && ((! TREE_PUBLIC (decl) && ! TREE_ADDRESSABLE (decl)
2510 && ! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
2511 && ! flag_keep_inline_functions)
2512 || DECL_EXTERNAL (decl))))
2513 DECL_DEFER_OUTPUT (decl) = 1;
2515 if (DECL_INLINE (decl))
2516 /* DWARF wants separate debugging info for abstract and
2517 concrete instances of all inline functions, including those
2518 declared inline but not inlined, and those inlined even
2519 though they weren't declared inline. Conveniently, that's
2520 what DECL_INLINE means at this point. */
2521 (*debug_hooks->deferred_inline_function) (decl);
2523 if (DECL_DEFER_OUTPUT (decl))
2525 /* If -Wreturn-type, we have to do a bit of compilation. We just
2526 want to call cleanup the cfg to figure out whether or not we can
2527 fall off the end of the function; we do the minimum amount of
2528 work necessary to make that safe. */
2529 if (warn_return_type)
2531 int saved_optimize = optimize;
2533 optimize = 0;
2534 rebuild_jump_labels (insns);
2535 find_exception_handler_labels ();
2536 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2537 cleanup_cfg (CLEANUP_PRE_SIBCALL | CLEANUP_PRE_LOOP);
2538 optimize = saved_optimize;
2540 /* CFG is no longer maintained up-to-date. */
2541 free_bb_for_insn ();
2544 set_nothrow_function_flags ();
2545 if (current_function_nothrow)
2546 /* Now we know that this can't throw; set the flag for the benefit
2547 of other functions later in this translation unit. */
2548 TREE_NOTHROW (current_function_decl) = 1;
2550 timevar_push (TV_INTEGRATION);
2551 save_for_inline (decl);
2552 timevar_pop (TV_INTEGRATION);
2553 DECL_SAVED_INSNS (decl)->inlinable = inlinable;
2554 goto exit_rest_of_compilation;
2557 /* If specified extern inline but we aren't inlining it, we are
2558 done. This goes for anything that gets here with DECL_EXTERNAL
2559 set, not just things with DECL_INLINE. */
2560 if (DECL_EXTERNAL (decl))
2561 goto exit_rest_of_compilation;
2564 /* If we're emitting a nested function, make sure its parent gets
2565 emitted as well. Doing otherwise confuses debug info. */
2567 tree parent;
2568 for (parent = DECL_CONTEXT (current_function_decl);
2569 parent != NULL_TREE;
2570 parent = get_containing_scope (parent))
2571 if (TREE_CODE (parent) == FUNCTION_DECL)
2572 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (parent)) = 1;
2575 /* We are now committed to emitting code for this function. Do any
2576 preparation, such as emitting abstract debug info for the inline
2577 before it gets mangled by optimization. */
2578 if (DECL_INLINE (decl))
2579 (*debug_hooks->outlining_inline_function) (decl);
2581 /* Remove any notes we don't need. That will make iterating
2582 over the instruction sequence faster, and allow the garbage
2583 collector to reclaim the memory used by the notes. */
2584 remove_unnecessary_notes ();
2585 reorder_blocks ();
2587 ggc_collect ();
2589 /* Initialize some variables used by the optimizers. */
2590 init_function_for_compilation ();
2592 if (! DECL_DEFER_OUTPUT (decl))
2593 TREE_ASM_WRITTEN (decl) = 1;
2595 /* Now that integrate will no longer see our rtl, we need not
2596 distinguish between the return value of this function and the
2597 return value of called functions. Also, we can remove all SETs
2598 of subregs of hard registers; they are only here because of
2599 integrate. Also, we can now initialize pseudos intended to
2600 carry magic hard reg data throughout the function. */
2601 rtx_equal_function_value_matters = 0;
2602 purge_hard_subreg_sets (get_insns ());
2604 /* Early return if there were errors. We can run afoul of our
2605 consistency checks, and there's not really much point in fixing them.
2606 Don't return yet if -Wreturn-type; we need to do cleanup_cfg. */
2607 if (((rtl_dump_and_exit || flag_syntax_only) && !warn_return_type)
2608 || errorcount || sorrycount)
2609 goto exit_rest_of_compilation;
2611 timevar_push (TV_JUMP);
2612 open_dump_file (DFI_sibling, decl);
2613 insns = get_insns ();
2614 rebuild_jump_labels (insns);
2615 find_exception_handler_labels ();
2616 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2618 delete_unreachable_blocks ();
2620 /* Turn NOTE_INSN_PREDICTIONs into branch predictions. */
2621 timevar_push (TV_BRANCH_PROB);
2622 note_prediction_to_br_prob ();
2623 timevar_pop (TV_BRANCH_PROB);
2625 /* We may have potential sibling or tail recursion sites. Select one
2626 (of possibly multiple) methods of performing the call. */
2627 if (flag_optimize_sibling_calls)
2629 rtx insn;
2630 optimize_sibling_and_tail_recursive_calls ();
2632 /* Recompute the CFG as sibling optimization clobbers it randomly. */
2633 free_bb_for_insn ();
2634 find_exception_handler_labels ();
2635 rebuild_jump_labels (insns);
2636 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2638 /* There is pass ordering problem - we must lower NOTE_INSN_PREDICTION
2639 notes before simplifying cfg and we must do lowering after sibcall
2640 that unhides parts of RTL chain and cleans up the CFG.
2642 Until sibcall is replaced by tree-level optimizer, lets just
2643 sweep away the NOTE_INSN_PREDICTION notes that leaked out. */
2644 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
2645 if (GET_CODE (insn) == NOTE
2646 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_PREDICTION)
2647 delete_insn (insn);
2649 close_dump_file (DFI_sibling, print_rtl, get_insns ());
2650 timevar_pop (TV_JUMP);
2652 scope_to_insns_initialize ();
2653 /* Complete generation of exception handling code. */
2654 if (doing_eh (0))
2656 timevar_push (TV_JUMP);
2657 open_dump_file (DFI_eh, decl);
2659 finish_eh_generation ();
2661 close_dump_file (DFI_eh, print_rtl, get_insns ());
2662 timevar_pop (TV_JUMP);
2665 /* Delay emitting hard_reg_initial_value sets until after EH landing pad
2666 generation, which might create new sets. */
2667 emit_initial_value_sets ();
2669 #ifdef FINALIZE_PIC
2670 /* If we are doing position-independent code generation, now
2671 is the time to output special prologues and epilogues.
2672 We do not want to do this earlier, because it just clutters
2673 up inline functions with meaningless insns. */
2674 if (flag_pic)
2675 FINALIZE_PIC;
2676 #endif
2678 insns = get_insns ();
2680 /* Copy any shared structure that should not be shared. */
2681 unshare_all_rtl (current_function_decl, insns);
2683 #ifdef SETJMP_VIA_SAVE_AREA
2684 /* This must be performed before virtual register instantiation.
2685 Please be aware the everything in the compiler that can look
2686 at the RTL up to this point must understand that REG_SAVE_AREA
2687 is just like a use of the REG contained inside. */
2688 if (current_function_calls_alloca)
2689 optimize_save_area_alloca (insns);
2690 #endif
2692 /* Instantiate all virtual registers. */
2693 instantiate_virtual_regs (current_function_decl, insns);
2695 open_dump_file (DFI_jump, decl);
2697 /* Always do one jump optimization pass to ensure that JUMP_LABEL fields
2698 are initialized and to compute whether control can drop off the end
2699 of the function. */
2701 timevar_push (TV_JUMP);
2702 /* Turn NOTE_INSN_EXPECTED_VALUE into REG_BR_PROB. Do this
2703 before jump optimization switches branch directions. */
2704 expected_value_to_br_prob ();
2706 reg_scan (insns, max_reg_num (), 0);
2707 rebuild_jump_labels (insns);
2708 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2709 if (rtl_dump_file)
2710 dump_flow_info (rtl_dump_file);
2711 cleanup_cfg ((optimize ? CLEANUP_EXPENSIVE : 0) | CLEANUP_PRE_LOOP
2712 | (flag_thread_jumps ? CLEANUP_THREADING : 0));
2714 /* CFG is no longer maintained up-to-date. */
2715 free_bb_for_insn ();
2716 copy_loop_headers (insns);
2717 purge_line_number_notes (insns);
2718 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2720 timevar_pop (TV_JUMP);
2721 close_dump_file (DFI_jump, print_rtl, insns);
2723 /* Now is when we stop if -fsyntax-only and -Wreturn-type. */
2724 if (rtl_dump_and_exit || flag_syntax_only || DECL_DEFER_OUTPUT (decl))
2726 goto exit_rest_of_compilation;
2729 /* Long term, this should probably move before the jump optimizer too,
2730 but I didn't want to disturb the rtl_dump_and_exit and related
2731 stuff at this time. */
2732 if (optimize > 0 && flag_ssa)
2734 /* Convert to SSA form. */
2736 timevar_push (TV_TO_SSA);
2737 open_dump_file (DFI_ssa, decl);
2739 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2740 convert_to_ssa ();
2742 close_dump_file (DFI_ssa, print_rtl_with_bb, insns);
2743 timevar_pop (TV_TO_SSA);
2745 /* Perform sparse conditional constant propagation, if requested. */
2746 if (flag_ssa_ccp)
2748 timevar_push (TV_SSA_CCP);
2749 open_dump_file (DFI_ssa_ccp, decl);
2751 ssa_const_prop ();
2753 close_dump_file (DFI_ssa_ccp, print_rtl_with_bb, get_insns ());
2754 timevar_pop (TV_SSA_CCP);
2757 /* It would be useful to cleanup the CFG at this point, but block
2758 merging and possibly other transformations might leave a PHI
2759 node in the middle of a basic block, which is a strict no-no. */
2761 /* The SSA implementation uses basic block numbers in its phi
2762 nodes. Thus, changing the control-flow graph or the basic
2763 blocks, e.g., calling find_basic_blocks () or cleanup_cfg (),
2764 may cause problems. */
2766 if (flag_ssa_dce)
2768 /* Remove dead code. */
2770 timevar_push (TV_SSA_DCE);
2771 open_dump_file (DFI_ssa_dce, decl);
2773 insns = get_insns ();
2774 ssa_eliminate_dead_code ();
2776 close_dump_file (DFI_ssa_dce, print_rtl_with_bb, insns);
2777 timevar_pop (TV_SSA_DCE);
2780 /* Convert from SSA form. */
2782 timevar_push (TV_FROM_SSA);
2783 open_dump_file (DFI_ussa, decl);
2785 convert_from_ssa ();
2786 /* New registers have been created. Rescan their usage. */
2787 reg_scan (insns, max_reg_num (), 1);
2789 close_dump_file (DFI_ussa, print_rtl_with_bb, insns);
2790 timevar_pop (TV_FROM_SSA);
2792 ggc_collect ();
2795 timevar_push (TV_JUMP);
2796 cleanup_cfg (optimize ? CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP: 0);
2798 /* Try to identify useless null pointer tests and delete them. */
2799 if (flag_delete_null_pointer_checks)
2801 open_dump_file (DFI_null, decl);
2802 if (rtl_dump_file)
2803 dump_flow_info (rtl_dump_file);
2805 if (delete_null_pointer_checks (insns))
2806 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2808 close_dump_file (DFI_null, print_rtl_with_bb, insns);
2811 /* Jump optimization, and the removal of NULL pointer checks, may
2812 have reduced the number of instructions substantially. CSE, and
2813 future passes, allocate arrays whose dimensions involve the
2814 maximum instruction UID, so if we can reduce the maximum UID
2815 we'll save big on memory. */
2816 renumber_insns (rtl_dump_file);
2817 timevar_pop (TV_JUMP);
2819 close_dump_file (DFI_jump, print_rtl_with_bb, insns);
2821 ggc_collect ();
2823 /* Perform common subexpression elimination.
2824 Nonzero value from `cse_main' means that jumps were simplified
2825 and some code may now be unreachable, so do
2826 jump optimization again. */
2828 if (optimize > 0)
2830 open_dump_file (DFI_cse, decl);
2831 if (rtl_dump_file)
2832 dump_flow_info (rtl_dump_file);
2833 timevar_push (TV_CSE);
2835 reg_scan (insns, max_reg_num (), 1);
2837 tem = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2838 if (tem)
2839 rebuild_jump_labels (insns);
2840 purge_all_dead_edges (0);
2842 delete_trivially_dead_insns (insns, max_reg_num ());
2844 /* If we are not running more CSE passes, then we are no longer
2845 expecting CSE to be run. But always rerun it in a cheap mode. */
2846 cse_not_expected = !flag_rerun_cse_after_loop && !flag_gcse;
2848 if (tem || optimize > 1)
2849 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2850 /* Try to identify useless null pointer tests and delete them. */
2851 if (flag_delete_null_pointer_checks)
2853 timevar_push (TV_JUMP);
2855 if (delete_null_pointer_checks (insns))
2856 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2857 timevar_pop (TV_JUMP);
2860 /* The second pass of jump optimization is likely to have
2861 removed a bunch more instructions. */
2862 renumber_insns (rtl_dump_file);
2864 timevar_pop (TV_CSE);
2865 close_dump_file (DFI_cse, print_rtl_with_bb, insns);
2868 open_dump_file (DFI_addressof, decl);
2870 purge_addressof (insns);
2871 if (optimize)
2872 purge_all_dead_edges (0);
2873 reg_scan (insns, max_reg_num (), 1);
2875 close_dump_file (DFI_addressof, print_rtl, insns);
2877 ggc_collect ();
2879 /* Perform global cse. */
2881 if (optimize > 0 && flag_gcse)
2883 int save_csb, save_cfj;
2884 int tem2 = 0;
2886 timevar_push (TV_GCSE);
2887 open_dump_file (DFI_gcse, decl);
2889 tem = gcse_main (insns, rtl_dump_file);
2890 rebuild_jump_labels (insns);
2891 delete_trivially_dead_insns (insns, max_reg_num ());
2893 save_csb = flag_cse_skip_blocks;
2894 save_cfj = flag_cse_follow_jumps;
2895 flag_cse_skip_blocks = flag_cse_follow_jumps = 0;
2897 /* If -fexpensive-optimizations, re-run CSE to clean up things done
2898 by gcse. */
2899 if (flag_expensive_optimizations)
2901 timevar_push (TV_CSE);
2902 reg_scan (insns, max_reg_num (), 1);
2903 tem2 = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2904 purge_all_dead_edges (0);
2905 delete_trivially_dead_insns (insns, max_reg_num ());
2906 timevar_pop (TV_CSE);
2907 cse_not_expected = !flag_rerun_cse_after_loop;
2910 /* If gcse or cse altered any jumps, rerun jump optimizations to clean
2911 things up. Then possibly re-run CSE again. */
2912 while (tem || tem2)
2914 tem = tem2 = 0;
2915 timevar_push (TV_JUMP);
2916 rebuild_jump_labels (insns);
2917 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2918 timevar_pop (TV_JUMP);
2920 if (flag_expensive_optimizations)
2922 timevar_push (TV_CSE);
2923 reg_scan (insns, max_reg_num (), 1);
2924 tem2 = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2925 purge_all_dead_edges (0);
2926 delete_trivially_dead_insns (insns, max_reg_num ());
2927 timevar_pop (TV_CSE);
2931 close_dump_file (DFI_gcse, print_rtl_with_bb, insns);
2932 timevar_pop (TV_GCSE);
2934 ggc_collect ();
2935 flag_cse_skip_blocks = save_csb;
2936 flag_cse_follow_jumps = save_cfj;
2937 #ifdef ENABLE_CHECKING
2938 verify_flow_info ();
2939 #endif
2942 /* Instantiate any remaining CONSTANT_P_RTX nodes. */
2943 if (optimize > 0 && flag_gcse && current_function_calls_constant_p)
2944 purge_builtin_constant_p ();
2946 /* Move constant computations out of loops. */
2948 if (optimize > 0 && flag_loop_optimize)
2950 int do_unroll, do_prefetch;
2952 timevar_push (TV_LOOP);
2953 delete_dead_jumptables ();
2954 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2955 open_dump_file (DFI_loop, decl);
2956 /* CFG is no longer maintained up-to-date. */
2957 free_bb_for_insn ();
2959 do_unroll = flag_unroll_loops ? LOOP_UNROLL : LOOP_AUTO_UNROLL;
2960 do_prefetch = flag_prefetch_loop_arrays ? LOOP_PREFETCH : 0;
2961 if (flag_rerun_loop_opt)
2963 cleanup_barriers ();
2965 /* We only want to perform unrolling once. */
2966 loop_optimize (insns, rtl_dump_file, do_unroll);
2967 do_unroll = 0;
2969 /* The first call to loop_optimize makes some instructions
2970 trivially dead. We delete those instructions now in the
2971 hope that doing so will make the heuristics in loop work
2972 better and possibly speed up compilation. */
2973 delete_trivially_dead_insns (insns, max_reg_num ());
2975 /* The regscan pass is currently necessary as the alias
2976 analysis code depends on this information. */
2977 reg_scan (insns, max_reg_num (), 1);
2979 cleanup_barriers ();
2980 loop_optimize (insns, rtl_dump_file, do_unroll | LOOP_BCT | do_prefetch);
2982 /* Loop can create trivially dead instructions. */
2983 delete_trivially_dead_insns (insns, max_reg_num ());
2984 close_dump_file (DFI_loop, print_rtl, insns);
2985 timevar_pop (TV_LOOP);
2986 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2988 ggc_collect ();
2991 /* Perform jump bypassing and control flow optimizations. */
2992 if (optimize > 0 && flag_gcse)
2994 timevar_push (TV_BYPASS);
2995 open_dump_file (DFI_bypass, decl);
2997 cleanup_cfg (CLEANUP_EXPENSIVE);
2998 tem = bypass_jumps (rtl_dump_file);
3000 if (tem)
3002 rebuild_jump_labels (insns);
3003 cleanup_cfg (CLEANUP_EXPENSIVE);
3004 delete_trivially_dead_insns (insns, max_reg_num ());
3007 close_dump_file (DFI_bypass, print_rtl_with_bb, insns);
3008 timevar_pop (TV_BYPASS);
3010 ggc_collect ();
3012 #ifdef ENABLE_CHECKING
3013 verify_flow_info ();
3014 #endif
3017 /* Do control and data flow analysis; wrote some of the results to
3018 the dump file. */
3020 timevar_push (TV_FLOW);
3021 open_dump_file (DFI_cfg, decl);
3022 if (rtl_dump_file)
3023 dump_flow_info (rtl_dump_file);
3024 cleanup_cfg ((optimize ? CLEANUP_EXPENSIVE : 0)
3025 | (flag_thread_jumps ? CLEANUP_THREADING : 0));
3027 /* It may make more sense to mark constant functions after dead code is
3028 eliminated by life_analysis, but we need to do it early, as -fprofile-arcs
3029 may insert code making function non-constant, but we still must consider
3030 it as constant, otherwise -fbranch-probabilities will not read data back.
3032 life_analysis rarely eliminates modification of external memory.
3034 if (optimize)
3035 mark_constant_function ();
3037 close_dump_file (DFI_cfg, print_rtl_with_bb, insns);
3039 /* Do branch profiling and static profile estimation passes. */
3040 if (optimize > 0 || cfun->arc_profile || flag_branch_probabilities)
3042 struct loops loops;
3044 timevar_push (TV_BRANCH_PROB);
3045 open_dump_file (DFI_bp, decl);
3046 if (cfun->arc_profile || flag_branch_probabilities)
3047 branch_prob ();
3049 /* Discover and record the loop depth at the head of each basic
3050 block. The loop infrastructure does the real job for us. */
3051 flow_loops_find (&loops, LOOP_TREE);
3053 if (rtl_dump_file)
3054 flow_loops_dump (&loops, rtl_dump_file, NULL, 0);
3056 /* Estimate using heuristics if no profiling info is available. */
3057 if (flag_guess_branch_prob)
3058 estimate_probability (&loops);
3060 flow_loops_free (&loops);
3061 close_dump_file (DFI_bp, print_rtl_with_bb, insns);
3062 timevar_pop (TV_BRANCH_PROB);
3064 if (optimize >= 0)
3066 open_dump_file (DFI_ce1, decl);
3067 if (flag_if_conversion)
3069 timevar_push (TV_IFCVT);
3070 if (rtl_dump_file)
3071 dump_flow_info (rtl_dump_file);
3072 cleanup_cfg (CLEANUP_EXPENSIVE);
3073 reg_scan (insns, max_reg_num (), 0);
3074 if_convert (0);
3075 timevar_pop (TV_IFCVT);
3077 timevar_push (TV_JUMP);
3078 cleanup_cfg (CLEANUP_EXPENSIVE);
3079 reg_scan (insns, max_reg_num (), 0);
3080 timevar_pop (TV_JUMP);
3081 close_dump_file (DFI_ce1, print_rtl_with_bb, get_insns ());
3083 if (flag_tracer)
3085 timevar_push (TV_TRACER);
3086 open_dump_file (DFI_tracer, decl);
3087 if (rtl_dump_file)
3088 dump_flow_info (rtl_dump_file);
3089 tracer ();
3090 cleanup_cfg (CLEANUP_EXPENSIVE);
3091 reg_scan (insns, max_reg_num (), 0);
3092 close_dump_file (DFI_tracer, print_rtl_with_bb, get_insns ());
3093 timevar_pop (TV_TRACER);
3096 /* Perform loop optimalizations. It might be better to do them a bit
3097 sooner, but we want the profile feedback to work more efficiently. */
3098 if (optimize > 0
3099 && flag_unswitch_loops)
3101 struct loops *loops;
3102 timevar_push (TV_LOOP);
3103 open_dump_file (DFI_loop2, decl);
3104 if (rtl_dump_file)
3105 dump_flow_info (rtl_dump_file);
3107 loops = loop_optimizer_init (rtl_dump_file);
3109 if (loops)
3111 /* The optimalizations: */
3112 if (flag_unswitch_loops)
3113 unswitch_loops (loops);
3115 loop_optimizer_finalize (loops, rtl_dump_file);
3118 cleanup_cfg (CLEANUP_EXPENSIVE);
3119 delete_trivially_dead_insns (insns, max_reg_num ());
3120 reg_scan (insns, max_reg_num (), 0);
3121 if (rtl_dump_file)
3122 dump_flow_info (rtl_dump_file);
3123 close_dump_file (DFI_loop2, print_rtl_with_bb, get_insns ());
3124 timevar_pop (TV_LOOP);
3125 ggc_collect ();
3128 if (flag_rerun_cse_after_loop)
3130 timevar_push (TV_CSE2);
3131 open_dump_file (DFI_cse2, decl);
3132 if (rtl_dump_file)
3133 dump_flow_info (rtl_dump_file);
3134 /* CFG is no longer maintained up-to-date. */
3135 tem = cse_main (insns, max_reg_num (), 1, rtl_dump_file);
3136 purge_all_dead_edges (0);
3137 delete_trivially_dead_insns (insns, max_reg_num ());
3139 if (tem)
3141 timevar_push (TV_JUMP);
3142 rebuild_jump_labels (insns);
3143 cleanup_cfg (CLEANUP_EXPENSIVE);
3144 timevar_pop (TV_JUMP);
3146 reg_scan (insns, max_reg_num (), 0);
3147 close_dump_file (DFI_cse2, print_rtl_with_bb, insns);
3148 ggc_collect ();
3149 timevar_pop (TV_CSE2);
3152 cse_not_expected = 1;
3154 open_dump_file (DFI_life, decl);
3155 regclass_init ();
3157 check_function_return_warnings ();
3159 #ifdef ENABLE_CHECKING
3160 verify_flow_info ();
3161 #endif
3162 life_analysis (insns, rtl_dump_file, PROP_FINAL);
3163 if (optimize)
3164 cleanup_cfg ((optimize ? CLEANUP_EXPENSIVE : 0) | CLEANUP_UPDATE_LIFE
3165 | (flag_thread_jumps ? CLEANUP_THREADING : 0));
3166 timevar_pop (TV_FLOW);
3168 no_new_pseudos = 1;
3170 if (warn_uninitialized || extra_warnings)
3172 uninitialized_vars_warning (DECL_INITIAL (decl));
3173 if (extra_warnings)
3174 setjmp_args_warning ();
3177 if (optimize)
3179 clear_bb_flags ();
3180 if (!flag_new_regalloc && initialize_uninitialized_subregs ())
3182 /* Insns were inserted, so things might look a bit different. */
3183 insns = get_insns ();
3184 update_life_info_in_dirty_blocks (UPDATE_LIFE_GLOBAL_RM_NOTES,
3185 PROP_LOG_LINKS | PROP_REG_INFO
3186 | PROP_DEATH_NOTES);
3190 close_dump_file (DFI_life, print_rtl_with_bb, insns);
3192 ggc_collect ();
3194 /* If -opt, try combining insns through substitution. */
3196 if (optimize > 0)
3198 int rebuild_jump_labels_after_combine = 0;
3200 timevar_push (TV_COMBINE);
3201 open_dump_file (DFI_combine, decl);
3203 rebuild_jump_labels_after_combine
3204 = combine_instructions (insns, max_reg_num ());
3206 /* Combining insns may have turned an indirect jump into a
3207 direct jump. Rebuild the JUMP_LABEL fields of jumping
3208 instructions. */
3209 if (rebuild_jump_labels_after_combine)
3211 timevar_push (TV_JUMP);
3212 rebuild_jump_labels (insns);
3213 timevar_pop (TV_JUMP);
3215 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_UPDATE_LIFE);
3218 close_dump_file (DFI_combine, print_rtl_with_bb, insns);
3219 timevar_pop (TV_COMBINE);
3221 ggc_collect ();
3224 /* Rerun if-conversion, as combine may have simplified things enough to
3225 now meet sequence length restrictions. */
3226 if (flag_if_conversion)
3228 timevar_push (TV_IFCVT);
3229 open_dump_file (DFI_ce2, decl);
3231 no_new_pseudos = 0;
3232 if_convert (1);
3233 no_new_pseudos = 1;
3235 close_dump_file (DFI_ce2, print_rtl_with_bb, insns);
3236 timevar_pop (TV_IFCVT);
3239 /* Register allocation pre-pass, to reduce number of moves
3240 necessary for two-address machines. */
3241 if (optimize > 0 && (flag_regmove || flag_expensive_optimizations))
3243 timevar_push (TV_REGMOVE);
3244 open_dump_file (DFI_regmove, decl);
3246 regmove_optimize (insns, max_reg_num (), rtl_dump_file);
3248 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_UPDATE_LIFE);
3249 close_dump_file (DFI_regmove, print_rtl_with_bb, insns);
3250 timevar_pop (TV_REGMOVE);
3252 ggc_collect ();
3255 /* Do unconditional splitting before register allocation to allow machine
3256 description to add extra information not needed previously. */
3257 split_all_insns (1);
3259 #ifdef OPTIMIZE_MODE_SWITCHING
3260 timevar_push (TV_MODE_SWITCH);
3262 no_new_pseudos = 0;
3263 optimize_mode_switching (NULL);
3264 no_new_pseudos = 1;
3266 timevar_pop (TV_MODE_SWITCH);
3267 #endif
3269 /* Any of the several passes since flow1 will have munged register
3270 lifetime data a bit. We need it to be up to date for scheduling
3271 (see handling of reg_known_equiv in init_alias_analysis). */
3272 recompute_reg_usage (insns, !optimize_size);
3274 timevar_push (TV_SCHED);
3276 #ifdef INSN_SCHEDULING
3278 /* Print function header into sched dump now
3279 because doing the sched analysis makes some of the dump. */
3280 if (optimize > 0 && flag_schedule_insns)
3282 open_dump_file (DFI_sched, decl);
3284 /* Do control and data sched analysis,
3285 and write some of the results to dump file. */
3287 schedule_insns (rtl_dump_file);
3289 close_dump_file (DFI_sched, print_rtl_with_bb, insns);
3291 #endif
3292 timevar_pop (TV_SCHED);
3294 ggc_collect ();
3296 /* Determine if the current function is a leaf before running reload
3297 since this can impact optimizations done by the prologue and
3298 epilogue thus changing register elimination offsets. */
3299 current_function_is_leaf = leaf_function_p ();
3301 timevar_push (TV_LOCAL_ALLOC);
3302 open_dump_file (DFI_lreg, decl);
3304 /* Allocate pseudo-regs that are used only within 1 basic block.
3306 RUN_JUMP_AFTER_RELOAD records whether or not we need to rerun the
3307 jump optimizer after register allocation and reloading are finished. */
3309 if (flag_new_regalloc)
3311 delete_trivially_dead_insns (insns, max_reg_num ());
3312 reg_alloc ();
3314 timevar_pop (TV_LOCAL_ALLOC);
3315 if (dump_file[DFI_lreg].enabled)
3317 timevar_push (TV_DUMP);
3319 close_dump_file (DFI_lreg, NULL, NULL);
3320 timevar_pop (TV_DUMP);
3323 /* XXX clean up the whole mess to bring live info in shape again. */
3324 timevar_push (TV_GLOBAL_ALLOC);
3325 open_dump_file (DFI_greg, decl);
3327 build_insn_chain (insns);
3328 failure = reload (insns, 0);
3330 timevar_pop (TV_GLOBAL_ALLOC);
3332 if (dump_file[DFI_greg].enabled)
3334 timevar_push (TV_DUMP);
3336 dump_global_regs (rtl_dump_file);
3338 close_dump_file (DFI_greg, print_rtl_with_bb, insns);
3339 timevar_pop (TV_DUMP);
3342 if (failure)
3343 goto exit_rest_of_compilation;
3344 reload_completed = 1;
3345 rebuild_label_notes_after_reload = 0;
3347 else
3349 /* Allocate the reg_renumber array. */
3350 allocate_reg_info (max_regno, FALSE, TRUE);
3352 /* And the reg_equiv_memory_loc array. */
3353 reg_equiv_memory_loc = (rtx *) xcalloc (max_regno, sizeof (rtx));
3355 allocate_initial_values (reg_equiv_memory_loc);
3357 regclass (insns, max_reg_num (), rtl_dump_file);
3358 rebuild_label_notes_after_reload = local_alloc ();
3360 timevar_pop (TV_LOCAL_ALLOC);
3362 if (dump_file[DFI_lreg].enabled)
3364 timevar_push (TV_DUMP);
3366 dump_flow_info (rtl_dump_file);
3367 dump_local_alloc (rtl_dump_file);
3369 close_dump_file (DFI_lreg, print_rtl_with_bb, insns);
3370 timevar_pop (TV_DUMP);
3373 ggc_collect ();
3375 timevar_push (TV_GLOBAL_ALLOC);
3376 open_dump_file (DFI_greg, decl);
3378 /* If optimizing, allocate remaining pseudo-regs. Do the reload
3379 pass fixing up any insns that are invalid. */
3381 if (optimize)
3382 failure = global_alloc (rtl_dump_file);
3383 else
3385 build_insn_chain (insns);
3386 failure = reload (insns, 0);
3389 timevar_pop (TV_GLOBAL_ALLOC);
3391 if (dump_file[DFI_greg].enabled)
3393 timevar_push (TV_DUMP);
3395 dump_global_regs (rtl_dump_file);
3397 close_dump_file (DFI_greg, print_rtl_with_bb, insns);
3398 timevar_pop (TV_DUMP);
3401 if (failure)
3402 goto exit_rest_of_compilation;
3405 ggc_collect ();
3407 open_dump_file (DFI_postreload, decl);
3409 /* Do a very simple CSE pass over just the hard registers. */
3410 if (optimize > 0)
3412 timevar_push (TV_RELOAD_CSE_REGS);
3413 reload_cse_regs (insns);
3414 timevar_pop (TV_RELOAD_CSE_REGS);
3417 /* Register allocation and reloading may have turned an indirect jump into
3418 a direct jump. If so, we must rebuild the JUMP_LABEL fields of
3419 jumping instructions. */
3420 if (rebuild_label_notes_after_reload)
3422 timevar_push (TV_JUMP);
3424 rebuild_jump_labels (insns);
3425 purge_all_dead_edges (0);
3427 timevar_pop (TV_JUMP);
3430 close_dump_file (DFI_postreload, print_rtl_with_bb, insns);
3432 /* Re-create the death notes which were deleted during reload. */
3433 timevar_push (TV_FLOW2);
3434 open_dump_file (DFI_flow2, decl);
3436 #ifdef ENABLE_CHECKING
3437 verify_flow_info ();
3438 #endif
3440 /* If optimizing, then go ahead and split insns now. */
3441 if (optimize > 0)
3442 split_all_insns (0);
3444 cleanup_cfg (optimize ? CLEANUP_EXPENSIVE : 0);
3446 /* On some machines, the prologue and epilogue code, or parts thereof,
3447 can be represented as RTL. Doing so lets us schedule insns between
3448 it and the rest of the code and also allows delayed branch
3449 scheduling to operate in the epilogue. */
3450 thread_prologue_and_epilogue_insns (insns);
3452 if (optimize)
3454 life_analysis (insns, rtl_dump_file, PROP_FINAL);
3455 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_UPDATE_LIFE
3456 | (flag_crossjumping ? CLEANUP_CROSSJUMP : 0));
3458 /* This is kind of a heuristic. We need to run combine_stack_adjustments
3459 even for machines with possibly nonzero RETURN_POPS_ARGS
3460 and ACCUMULATE_OUTGOING_ARGS. We expect that only ports having
3461 push instructions will have popping returns. */
3462 #ifndef PUSH_ROUNDING
3463 if (!ACCUMULATE_OUTGOING_ARGS)
3464 #endif
3465 combine_stack_adjustments ();
3467 ggc_collect ();
3470 flow2_completed = 1;
3472 close_dump_file (DFI_flow2, print_rtl_with_bb, insns);
3473 timevar_pop (TV_FLOW2);
3475 #ifdef HAVE_peephole2
3476 if (optimize > 0 && flag_peephole2)
3478 timevar_push (TV_PEEPHOLE2);
3479 open_dump_file (DFI_peephole2, decl);
3481 peephole2_optimize (rtl_dump_file);
3483 close_dump_file (DFI_peephole2, print_rtl_with_bb, insns);
3484 timevar_pop (TV_PEEPHOLE2);
3486 #endif
3488 if (optimize > 0 && (flag_rename_registers || flag_cprop_registers))
3490 timevar_push (TV_RENAME_REGISTERS);
3491 open_dump_file (DFI_rnreg, decl);
3493 if (flag_rename_registers)
3494 regrename_optimize ();
3495 if (flag_cprop_registers)
3496 copyprop_hardreg_forward ();
3498 close_dump_file (DFI_rnreg, print_rtl_with_bb, insns);
3499 timevar_pop (TV_RENAME_REGISTERS);
3502 if (flag_if_conversion2)
3504 timevar_push (TV_IFCVT2);
3505 open_dump_file (DFI_ce3, decl);
3507 if_convert (1);
3509 close_dump_file (DFI_ce3, print_rtl_with_bb, insns);
3510 timevar_pop (TV_IFCVT2);
3512 #ifdef STACK_REGS
3513 if (optimize)
3514 split_all_insns (1);
3515 #endif
3517 #ifdef INSN_SCHEDULING
3518 if (optimize > 0 && flag_schedule_insns_after_reload)
3520 timevar_push (TV_SCHED2);
3521 open_dump_file (DFI_sched2, decl);
3523 /* Do control and data sched analysis again,
3524 and write some more of the results to dump file. */
3526 split_all_insns (1);
3528 schedule_insns (rtl_dump_file);
3530 close_dump_file (DFI_sched2, print_rtl_with_bb, insns);
3531 timevar_pop (TV_SCHED2);
3533 ggc_collect ();
3535 #endif
3537 #ifdef LEAF_REGISTERS
3538 current_function_uses_only_leaf_regs
3539 = optimize > 0 && only_leaf_regs_used () && leaf_function_p ();
3540 #endif
3542 #ifdef STACK_REGS
3543 timevar_push (TV_REG_STACK);
3544 open_dump_file (DFI_stack, decl);
3546 reg_to_stack (insns, rtl_dump_file);
3548 close_dump_file (DFI_stack, print_rtl_with_bb, insns);
3549 timevar_pop (TV_REG_STACK);
3551 ggc_collect ();
3552 #endif
3553 if (optimize > 0)
3555 timevar_push (TV_REORDER_BLOCKS);
3556 open_dump_file (DFI_bbro, decl);
3558 /* Last attempt to optimize CFG, as scheduling, peepholing and insn
3559 splitting possibly introduced more crossjumping opportunities.
3560 Except that we can't actually run crossjumping without running
3561 another DCE pass, which we can't do after reg-stack. */
3562 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_POST_REGSTACK
3563 | (flag_crossjumping ? CLEANUP_CROSSJUMP : 0));
3564 if (flag_reorder_blocks)
3566 reorder_basic_blocks ();
3567 cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_POST_REGSTACK);
3570 close_dump_file (DFI_bbro, print_rtl_with_bb, insns);
3571 timevar_pop (TV_REORDER_BLOCKS);
3573 compute_alignments ();
3575 /* CFG is no longer maintained up-to-date. */
3576 free_bb_for_insn ();
3578 /* If a machine dependent reorganization is needed, call it. */
3579 #ifdef MACHINE_DEPENDENT_REORG
3580 timevar_push (TV_MACH_DEP);
3581 open_dump_file (DFI_mach, decl);
3583 MACHINE_DEPENDENT_REORG (insns);
3585 close_dump_file (DFI_mach, print_rtl, insns);
3586 timevar_pop (TV_MACH_DEP);
3588 ggc_collect ();
3589 #endif
3591 purge_line_number_notes (insns);
3592 cleanup_barriers ();
3594 /* If a scheduling pass for delayed branches is to be done,
3595 call the scheduling code. */
3597 #ifdef DELAY_SLOTS
3598 if (optimize > 0 && flag_delayed_branch)
3600 timevar_push (TV_DBR_SCHED);
3601 open_dump_file (DFI_dbr, decl);
3603 dbr_schedule (insns, rtl_dump_file);
3605 close_dump_file (DFI_dbr, print_rtl, insns);
3606 timevar_pop (TV_DBR_SCHED);
3608 ggc_collect ();
3610 #endif
3612 #if defined (HAVE_ATTR_length) && !defined (STACK_REGS)
3613 timevar_push (TV_SHORTEN_BRANCH);
3614 split_all_insns_noflow ();
3615 timevar_pop (TV_SHORTEN_BRANCH);
3616 #endif
3618 convert_to_eh_region_ranges ();
3620 /* Shorten branches. */
3621 timevar_push (TV_SHORTEN_BRANCH);
3622 shorten_branches (get_insns ());
3623 timevar_pop (TV_SHORTEN_BRANCH);
3625 set_nothrow_function_flags ();
3626 if (current_function_nothrow)
3627 /* Now we know that this can't throw; set the flag for the benefit
3628 of other functions later in this translation unit. */
3629 TREE_NOTHROW (current_function_decl) = 1;
3631 /* Now turn the rtl into assembler code. */
3633 timevar_push (TV_FINAL);
3635 rtx x;
3636 const char *fnname;
3638 /* Get the function's name, as described by its RTL. This may be
3639 different from the DECL_NAME name used in the source file. */
3641 x = DECL_RTL (decl);
3642 if (GET_CODE (x) != MEM)
3643 abort ();
3644 x = XEXP (x, 0);
3645 if (GET_CODE (x) != SYMBOL_REF)
3646 abort ();
3647 fnname = XSTR (x, 0);
3649 assemble_start_function (decl, fnname);
3650 final_start_function (insns, asm_out_file, optimize);
3651 final (insns, asm_out_file, optimize, 0);
3652 final_end_function ();
3654 #ifdef IA64_UNWIND_INFO
3655 /* ??? The IA-64 ".handlerdata" directive must be issued before
3656 the ".endp" directive that closes the procedure descriptor. */
3657 output_function_exception_table ();
3658 #endif
3660 assemble_end_function (decl, fnname);
3662 #ifndef IA64_UNWIND_INFO
3663 /* Otherwise, it feels unclean to switch sections in the middle. */
3664 output_function_exception_table ();
3665 #endif
3667 if (! quiet_flag)
3668 fflush (asm_out_file);
3670 /* Release all memory allocated by flow. */
3671 free_basic_block_vars (0);
3673 /* Release all memory held by regsets now. */
3674 regset_release_memory ();
3676 timevar_pop (TV_FINAL);
3678 ggc_collect ();
3680 /* Write DBX symbols if requested. */
3682 /* Note that for those inline functions where we don't initially
3683 know for certain that we will be generating an out-of-line copy,
3684 the first invocation of this routine (rest_of_compilation) will
3685 skip over this code by doing a `goto exit_rest_of_compilation;'.
3686 Later on, wrapup_global_declarations will (indirectly) call
3687 rest_of_compilation again for those inline functions that need
3688 to have out-of-line copies generated. During that call, we
3689 *will* be routed past here. */
3691 timevar_push (TV_SYMOUT);
3692 (*debug_hooks->function_decl) (decl);
3693 timevar_pop (TV_SYMOUT);
3695 exit_rest_of_compilation:
3697 /* In case the function was not output,
3698 don't leave any temporary anonymous types
3699 queued up for sdb output. */
3700 #ifdef SDB_DEBUGGING_INFO
3701 if (write_symbols == SDB_DEBUG)
3702 sdbout_types (NULL_TREE);
3703 #endif
3705 reload_completed = 0;
3706 flow2_completed = 0;
3707 no_new_pseudos = 0;
3709 timevar_push (TV_FINAL);
3711 /* Clear out the insn_length contents now that they are no
3712 longer valid. */
3713 init_insn_lengths ();
3715 /* Show no temporary slots allocated. */
3716 init_temp_slots ();
3718 free_basic_block_vars (0);
3719 free_bb_for_insn ();
3721 timevar_pop (TV_FINAL);
3723 /* Make sure volatile mem refs aren't considered valid operands for
3724 arithmetic insns. We must call this here if this is a nested inline
3725 function, since the above code leaves us in the init_recog state
3726 (from final.c), and the function context push/pop code does not
3727 save/restore volatile_ok.
3729 ??? Maybe it isn't necessary for expand_start_function to call this
3730 anymore if we do it here? */
3732 init_recog_no_volatile ();
3734 /* We're done with this function. Free up memory if we can. */
3735 free_after_parsing (cfun);
3736 if (! DECL_DEFER_OUTPUT (decl))
3738 free_after_compilation (cfun);
3740 /* Clear integrate.c's pointer to the cfun structure we just
3741 destroyed. */
3742 DECL_SAVED_INSNS (decl) = 0;
3744 cfun = 0;
3746 ggc_collect ();
3748 timevar_pop (TV_REST_OF_COMPILATION);
3751 static void
3752 display_help ()
3754 int undoc;
3755 unsigned long i;
3756 const char *lang;
3758 printf (_(" -ffixed-<register> Mark <register> as being unavailable to the compiler\n"));
3759 printf (_(" -fcall-used-<register> Mark <register> as being corrupted by function calls\n"));
3760 printf (_(" -fcall-saved-<register> Mark <register> as being preserved across functions\n"));
3761 printf (_(" -finline-limit=<number> Limits the size of inlined functions to <number>\n"));
3762 printf (_(" -fmessage-length=<number> Limits diagnostics messages lengths to <number> characters per line. 0 suppresses line-wrapping\n"));
3763 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"));
3764 printf (_(" -ftls-model=[global-dynamic | local-dynamic | initial-exec | local-exec] Indicates the default thread-local storage code generation model\n"));
3766 for (i = ARRAY_SIZE (f_options); i--;)
3768 const char *description = f_options[i].description;
3770 if (description != NULL && *description != 0)
3771 printf (" -f%-21s %s\n",
3772 f_options[i].string, _(description));
3775 printf (_(" -O[number] Set optimization level to [number]\n"));
3776 printf (_(" -Os Optimize for space rather than speed\n"));
3777 for (i = LAST_PARAM; i--;)
3779 const char *description = compiler_params[i].help;
3780 const int length = 21 - strlen (compiler_params[i].option);
3782 if (description != NULL && *description != 0)
3783 printf (" --param %s=<value>%.*s%s\n",
3784 compiler_params[i].option,
3785 length > 0 ? length : 1, " ",
3786 _(description));
3788 printf (_(" -pedantic Issue warnings needed by strict compliance to ISO C\n"));
3789 printf (_(" -pedantic-errors Like -pedantic except that errors are produced\n"));
3790 printf (_(" -w Suppress warnings\n"));
3792 for (i = ARRAY_SIZE (W_options); i--;)
3794 const char *description = W_options[i].description;
3796 if (description != NULL && *description != 0)
3797 printf (" -W%-21s %s\n",
3798 W_options[i].string, _(description));
3801 printf (_(" -Wunused Enable unused warnings\n"));
3802 printf (_(" -Wlarger-than-<number> Warn if an object is larger than <number> bytes\n"));
3803 printf (_(" -p Enable function profiling\n"));
3804 printf (_(" -o <file> Place output into <file> \n"));
3805 printf (_("\
3806 -G <number> Put global and static data smaller than <number>\n\
3807 bytes into a special section (on some targets)\n"));
3809 for (i = ARRAY_SIZE (debug_args); i--;)
3811 if (debug_args[i].description != NULL)
3812 printf (" -g%-21s %s\n",
3813 debug_args[i].arg, _(debug_args[i].description));
3816 printf (_(" -aux-info <file> Emit declaration info into <file>\n"));
3817 printf (_(" -quiet Do not display functions compiled or elapsed time\n"));
3818 printf (_(" -version Display the compiler's version\n"));
3819 printf (_(" -d[letters] Enable dumps from specific passes of the compiler\n"));
3820 printf (_(" -dumpbase <file> Base name to be used for dumps from specific passes\n"));
3821 #if defined INSN_SCHEDULING
3822 printf (_(" -fsched-verbose=<number> Set the verbosity level of the scheduler\n"));
3823 #endif
3824 printf (_(" --help Display this information\n"));
3826 undoc = 0;
3827 lang = "language";
3829 /* Display descriptions of language specific options.
3830 If there is no description, note that there is an undocumented option.
3831 If the description is empty, do not display anything. (This allows
3832 options to be deliberately undocumented, for whatever reason).
3833 If the option string is missing, then this is a marker, indicating
3834 that the description string is in fact the name of a language, whose
3835 language specific options are to follow. */
3837 if (ARRAY_SIZE (documented_lang_options) > 1)
3839 printf (_("\nLanguage specific options:\n"));
3841 for (i = 0; i < ARRAY_SIZE (documented_lang_options); i++)
3843 const char *description = documented_lang_options[i].description;
3844 const char *option = documented_lang_options[i].option;
3846 if (description == NULL)
3848 undoc = 1;
3850 if (extra_warnings)
3851 printf (_(" %-23.23s [undocumented]\n"), option);
3853 else if (*description == 0)
3854 continue;
3855 else if (option == NULL)
3857 if (undoc)
3858 printf
3859 (_("\nThere are undocumented %s specific options as well.\n"),
3860 lang);
3861 undoc = 0;
3863 printf (_("\n Options for %s:\n"), description);
3865 lang = description;
3867 else
3868 printf (" %-23.23s %s\n", option, _(description));
3872 if (undoc)
3873 printf (_("\nThere are undocumented %s specific options as well.\n"),
3874 lang);
3876 display_target_options ();
3879 static void
3880 display_target_options ()
3882 int undoc, i;
3883 static bool displayed = false;
3885 /* Avoid double printing for --help --target-help. */
3886 if (displayed)
3887 return;
3888 displayed = true;
3890 if (ARRAY_SIZE (target_switches) > 1
3891 #ifdef TARGET_OPTIONS
3892 || ARRAY_SIZE (target_options) > 1
3893 #endif
3896 int doc = 0;
3898 undoc = 0;
3900 printf (_("\nTarget specific options:\n"));
3902 for (i = ARRAY_SIZE (target_switches); i--;)
3904 const char *option = target_switches[i].name;
3905 const char *description = target_switches[i].description;
3907 if (option == NULL || *option == 0)
3908 continue;
3909 else if (description == NULL)
3911 undoc = 1;
3913 if (extra_warnings)
3914 printf (_(" -m%-23.23s [undocumented]\n"), option);
3916 else if (*description != 0)
3917 doc += printf (" -m%-23.23s %s\n", option, _(description));
3920 #ifdef TARGET_OPTIONS
3921 for (i = ARRAY_SIZE (target_options); i--;)
3923 const char *option = target_options[i].prefix;
3924 const char *description = target_options[i].description;
3926 if (option == NULL || *option == 0)
3927 continue;
3928 else if (description == NULL)
3930 undoc = 1;
3932 if (extra_warnings)
3933 printf (_(" -m%-23.23s [undocumented]\n"), option);
3935 else if (*description != 0)
3936 doc += printf (" -m%-23.23s %s\n", option, _(description));
3938 #endif
3939 if (undoc)
3941 if (doc)
3942 printf (_("\nThere are undocumented target specific options as well.\n"));
3943 else
3944 printf (_(" They exist, but they are not documented.\n"));
3949 /* Parse a -d... command line switch. */
3951 static void
3952 decode_d_option (arg)
3953 const char *arg;
3955 int i, c, matched;
3957 while (*arg)
3958 switch (c = *arg++)
3960 case 'a':
3961 for (i = 0; i < (int) DFI_MAX; ++i)
3962 dump_file[i].enabled = 1;
3963 break;
3964 case 'A':
3965 flag_debug_asm = 1;
3966 break;
3967 case 'p':
3968 flag_print_asm_name = 1;
3969 break;
3970 case 'P':
3971 flag_dump_rtl_in_asm = 1;
3972 flag_print_asm_name = 1;
3973 break;
3974 case 'v':
3975 graph_dump_format = vcg;
3976 break;
3977 case 'x':
3978 rtl_dump_and_exit = 1;
3979 break;
3980 case 'y':
3981 set_yydebug = 1;
3982 break;
3983 case 'D': /* These are handled by the preprocessor. */
3984 case 'I':
3985 break;
3986 case 'H':
3987 setup_core_dumping();
3988 break;
3990 default:
3991 matched = 0;
3992 for (i = 0; i < (int) DFI_MAX; ++i)
3993 if (c == dump_file[i].debug_switch)
3995 dump_file[i].enabled = 1;
3996 matched = 1;
3999 if (! matched)
4000 warning ("unrecognized gcc debugging option: %c", c);
4001 break;
4005 /* Parse a -f... command line switch. ARG is the value after the -f.
4006 It is safe to access 'ARG - 2' to generate the full switch name.
4007 Return the number of strings consumed. */
4009 static int
4010 decode_f_option (arg)
4011 const char *arg;
4013 int j;
4014 const char *option_value = NULL;
4016 /* Search for the option in the table of binary f options. */
4017 for (j = ARRAY_SIZE (f_options); j--;)
4019 if (!strcmp (arg, f_options[j].string))
4021 *f_options[j].variable = f_options[j].on_value;
4022 return 1;
4025 if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4026 && ! strcmp (arg + 3, f_options[j].string))
4028 *f_options[j].variable = ! f_options[j].on_value;
4029 return 1;
4033 if (!strcmp (arg, "fast-math"))
4034 set_fast_math_flags (1);
4035 else if (!strcmp (arg, "no-fast-math"))
4036 set_fast_math_flags (0);
4037 else if ((option_value = skip_leading_substring (arg, "inline-limit-"))
4038 || (option_value = skip_leading_substring (arg, "inline-limit=")))
4040 int val =
4041 read_integral_parameter (option_value, arg - 2,
4042 MAX_INLINE_INSNS);
4043 set_param_value ("max-inline-insns", val);
4045 else if ((option_value = skip_leading_substring (arg, "tls-model=")))
4047 if (strcmp (option_value, "global-dynamic") == 0)
4048 flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
4049 else if (strcmp (option_value, "local-dynamic") == 0)
4050 flag_tls_default = TLS_MODEL_LOCAL_DYNAMIC;
4051 else if (strcmp (option_value, "initial-exec") == 0)
4052 flag_tls_default = TLS_MODEL_INITIAL_EXEC;
4053 else if (strcmp (option_value, "local-exec") == 0)
4054 flag_tls_default = TLS_MODEL_LOCAL_EXEC;
4055 else
4056 warning ("`%s': unknown tls-model option", arg - 2);
4058 #ifdef INSN_SCHEDULING
4059 else if ((option_value = skip_leading_substring (arg, "sched-verbose=")))
4060 fix_sched_param ("verbose", option_value);
4061 #endif
4062 else if ((option_value = skip_leading_substring (arg, "fixed-")))
4063 fix_register (option_value, 1, 1);
4064 else if ((option_value = skip_leading_substring (arg, "call-used-")))
4065 fix_register (option_value, 0, 1);
4066 else if ((option_value = skip_leading_substring (arg, "call-saved-")))
4067 fix_register (option_value, 0, 0);
4068 else if ((option_value = skip_leading_substring (arg, "align-loops=")))
4069 align_loops = read_integral_parameter (option_value, arg - 2, align_loops);
4070 else if ((option_value = skip_leading_substring (arg, "align-functions=")))
4071 align_functions
4072 = read_integral_parameter (option_value, arg - 2, align_functions);
4073 else if ((option_value = skip_leading_substring (arg, "align-jumps=")))
4074 align_jumps = read_integral_parameter (option_value, arg - 2, align_jumps);
4075 else if ((option_value = skip_leading_substring (arg, "align-labels=")))
4076 align_labels
4077 = read_integral_parameter (option_value, arg - 2, align_labels);
4078 else if ((option_value
4079 = skip_leading_substring (arg, "stack-limit-register=")))
4081 int reg = decode_reg_name (option_value);
4082 if (reg < 0)
4083 error ("unrecognized register name `%s'", option_value);
4084 else
4085 stack_limit_rtx = gen_rtx_REG (Pmode, reg);
4087 else if ((option_value
4088 = skip_leading_substring (arg, "stack-limit-symbol=")))
4090 const char *nm;
4091 nm = ggc_strdup (option_value);
4092 stack_limit_rtx = gen_rtx_SYMBOL_REF (Pmode, nm);
4094 else if ((option_value
4095 = skip_leading_substring (arg, "message-length=")))
4096 output_set_maximum_length
4097 (&global_dc->buffer, read_integral_parameter
4098 (option_value, arg - 2, diagnostic_line_cutoff (global_dc)));
4099 else if ((option_value
4100 = skip_leading_substring (arg, "diagnostics-show-location=")))
4102 if (!strcmp (option_value, "once"))
4103 diagnostic_prefixing_rule (global_dc) = DIAGNOSTICS_SHOW_PREFIX_ONCE;
4104 else if (!strcmp (option_value, "every-line"))
4105 diagnostic_prefixing_rule (global_dc)
4106 = DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE;
4107 else
4108 error ("unrecognized option `%s'", arg - 2);
4110 else if (!strcmp (arg, "no-stack-limit"))
4111 stack_limit_rtx = NULL_RTX;
4112 else if (!strcmp (arg, "preprocessed"))
4113 /* Recognize this switch but do nothing. This prevents warnings
4114 about an unrecognized switch if cpplib has not been linked in. */
4116 else
4117 return 0;
4119 return 1;
4122 /* Parse a -W... command line switch. ARG is the value after the -W.
4123 It is safe to access 'ARG - 2' to generate the full switch name.
4124 Return the number of strings consumed. */
4126 static int
4127 decode_W_option (arg)
4128 const char *arg;
4130 const char *option_value = NULL;
4131 int j;
4133 /* Search for the option in the table of binary W options. */
4135 for (j = ARRAY_SIZE (W_options); j--;)
4137 if (!strcmp (arg, W_options[j].string))
4139 *W_options[j].variable = W_options[j].on_value;
4140 return 1;
4143 if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4144 && ! strcmp (arg + 3, W_options[j].string))
4146 *W_options[j].variable = ! W_options[j].on_value;
4147 return 1;
4151 if ((option_value = skip_leading_substring (arg, "id-clash-")))
4152 warning ("-Wid-clash-LEN is no longer supported");
4153 else if ((option_value = skip_leading_substring (arg, "larger-than-")))
4155 larger_than_size = read_integral_parameter (option_value, arg - 2, -1);
4157 warn_larger_than = larger_than_size != -1;
4159 else if (!strcmp (arg, "unused"))
4161 set_Wunused (1);
4163 else if (!strcmp (arg, "no-unused"))
4165 set_Wunused (0);
4167 else if (!strcmp (arg, "extra"))
4169 /* We save the value of warn_uninitialized, since if they put
4170 -Wuninitialized on the command line, we need to generate a
4171 warning about not using it without also specifying -O. */
4172 if (warn_uninitialized != 1)
4173 warn_uninitialized = 2;
4175 else
4176 return 0;
4178 return 1;
4181 /* Parse a -g... command line switch. ARG is the value after the -g.
4182 It is safe to access 'ARG - 2' to generate the full switch name.
4183 Return the number of strings consumed. */
4185 static int
4186 decode_g_option (arg)
4187 const char *arg;
4189 static unsigned level = 0;
4190 /* A lot of code assumes write_symbols == NO_DEBUG if the
4191 debugging level is 0 (thus -gstabs1 -gstabs0 would lose track
4192 of what debugging type has been selected). This records the
4193 selected type. It is an error to specify more than one
4194 debugging type. */
4195 static enum debug_info_type selected_debug_type = NO_DEBUG;
4196 /* Nonzero if debugging format has been explicitly set.
4197 -g and -ggdb don't explicitly set the debugging format so
4198 -gdwarf -g3 is equivalent to -gdwarf3. */
4199 static int type_explicitly_set_p = 0;
4200 /* Indexed by enum debug_info_type. */
4201 static const char *const debug_type_names[] =
4203 "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff", "vms"
4206 /* The maximum admissible debug level value. */
4207 static const unsigned max_debug_level = 3;
4209 /* Look up ARG in the table. */
4210 for (da = debug_args; da->arg; da++)
4212 const int da_len = strlen (da->arg);
4214 if (da_len == 0 || ! strncmp (arg, da->arg, da_len))
4216 enum debug_info_type type = da->debug_type;
4217 const char *p = arg + da_len;
4219 if (*p && ! ISDIGIT (*p))
4220 continue;
4222 /* A debug flag without a level defaults to level 2.
4223 Note we do not want to call read_integral_parameter
4224 for that case since it will call atoi which
4225 will return zero.
4227 ??? We may want to generalize the interface to
4228 read_integral_parameter to better handle this case
4229 if this case shows up often. */
4230 if (*p)
4231 level = read_integral_parameter (p, 0, max_debug_level + 1);
4232 else
4233 level = (level == 0) ? 2 : level;
4235 if (da_len > 1 && *p && !strncmp (arg, "dwarf", da_len))
4237 error ("use -gdwarf -g%d for DWARF v1, level %d",
4238 level, level);
4239 if (level == 2)
4240 error ("use -gdwarf-2 for DWARF v2");
4243 if (level > max_debug_level)
4245 warning ("\
4246 ignoring option `%s' due to invalid debug level specification",
4247 arg - 2);
4248 level = debug_info_level;
4251 if (type == NO_DEBUG)
4253 type = PREFERRED_DEBUGGING_TYPE;
4255 if (da_len > 1 && strncmp (arg, "gdb", da_len) == 0)
4257 #ifdef DWARF2_DEBUGGING_INFO
4258 type = DWARF2_DEBUG;
4259 #else
4260 #ifdef DBX_DEBUGGING_INFO
4261 type = DBX_DEBUG;
4262 #endif
4263 #endif
4267 if (type == NO_DEBUG)
4268 warning ("`%s': unknown or unsupported -g option", arg - 2);
4270 /* Does it conflict with an already selected type? */
4271 if (type_explicitly_set_p
4272 /* -g/-ggdb don't conflict with anything. */
4273 && da->debug_type != NO_DEBUG
4274 && type != selected_debug_type)
4275 warning ("`%s' ignored, conflicts with `-g%s'",
4276 arg - 2, debug_type_names[(int) selected_debug_type]);
4277 else
4279 /* If the format has already been set, -g/-ggdb
4280 only change the debug level. */
4281 if (type_explicitly_set_p && da->debug_type == NO_DEBUG)
4282 /* Don't change debugging type. */
4284 else
4286 selected_debug_type = type;
4287 type_explicitly_set_p = da->debug_type != NO_DEBUG;
4290 write_symbols = (level == 0
4291 ? NO_DEBUG
4292 : selected_debug_type);
4293 use_gnu_debug_info_extensions = da->use_extensions_p;
4294 debug_info_level = (enum debug_info_level) level;
4297 break;
4301 if (! da->arg)
4302 return 0;
4304 return 1;
4307 /* Decode the first argument in the argv as a language-independent option.
4308 Return the number of strings consumed. */
4310 static unsigned int
4311 independent_decode_option (argc, argv)
4312 int argc;
4313 char **argv;
4315 char *arg = argv[0];
4317 if (arg[0] != '-' || arg[1] == 0)
4319 if (arg[0] == '+')
4320 return 0;
4322 filename = arg;
4324 return 1;
4327 arg++;
4329 if (!strcmp (arg, "-help"))
4331 display_help ();
4332 exit_after_options = 1;
4335 if (!strcmp (arg, "-target-help"))
4337 display_target_options ();
4338 exit_after_options = 1;
4341 if (!strcmp (arg, "-version"))
4343 print_version (stderr, "");
4344 exit_after_options = 1;
4347 /* Handle '--param <name>=<value>'. */
4348 if (strcmp (arg, "-param") == 0)
4350 char *equal;
4352 if (argc == 1)
4354 error ("-param option missing argument");
4355 return 1;
4358 /* Get the '<name>=<value>' parameter. */
4359 arg = argv[1];
4360 /* Look for the `='. */
4361 equal = strchr (arg, '=');
4362 if (!equal)
4363 error ("invalid --param option: %s", arg);
4364 else
4366 int val;
4368 /* Zero out the `=' sign so that we get two separate strings. */
4369 *equal = '\0';
4370 /* Figure out what value is specified. */
4371 val = read_integral_parameter (equal + 1, NULL, INVALID_PARAM_VAL);
4372 if (val != INVALID_PARAM_VAL)
4373 set_param_value (arg, val);
4374 else
4375 error ("invalid parameter value `%s'", equal + 1);
4378 return 2;
4381 if (*arg == 'Y')
4382 arg++;
4384 switch (*arg)
4386 default:
4387 return 0;
4389 case 'O':
4390 /* Already been treated in main (). Do nothing. */
4391 break;
4393 case 'm':
4394 set_target_switch (arg + 1);
4395 break;
4397 case 'f':
4398 return decode_f_option (arg + 1);
4400 case 'g':
4401 return decode_g_option (arg + 1);
4403 case 'd':
4404 if (!strcmp (arg, "dumpbase"))
4406 if (argc == 1)
4407 return 0;
4409 if (argv[1][0])
4410 dump_base_name = argv[1];
4412 return 2;
4414 else
4415 decode_d_option (arg + 1);
4416 break;
4418 case 'p':
4419 if (!strcmp (arg, "pedantic"))
4420 pedantic = 1;
4421 else if (!strcmp (arg, "pedantic-errors"))
4422 flag_pedantic_errors = pedantic = 1;
4423 else if (arg[1] == 0)
4424 profile_flag = 1;
4425 else
4426 return 0;
4427 break;
4429 case 'q':
4430 if (!strcmp (arg, "quiet"))
4431 quiet_flag = 1;
4432 else
4433 return 0;
4434 break;
4436 case 'v':
4437 if (!strcmp (arg, "version"))
4438 version_flag = 1;
4439 else
4440 return 0;
4441 break;
4443 case 'w':
4444 if (arg[1] == 0)
4445 inhibit_warnings = 1;
4446 else
4447 return 0;
4448 break;
4450 case 'W':
4451 if (arg[1] == 0)
4453 extra_warnings = 1;
4454 /* We save the value of warn_uninitialized, since if they put
4455 -Wuninitialized on the command line, we need to generate a
4456 warning about not using it without also specifying -O. */
4457 if (warn_uninitialized != 1)
4458 warn_uninitialized = 2;
4460 else
4461 return decode_W_option (arg + 1);
4462 break;
4464 case 'a':
4465 if (!strncmp (arg, "aux-info", 8))
4467 if (arg[8] == '\0')
4469 if (argc == 1)
4470 return 0;
4472 aux_info_file_name = argv[1];
4473 flag_gen_aux_info = 1;
4474 return 2;
4476 else if (arg[8] == '=')
4478 aux_info_file_name = arg + 9;
4479 flag_gen_aux_info = 1;
4481 else
4482 return 0;
4484 else if (!strcmp (arg, "auxbase"))
4486 if (argc == 1)
4487 return 0;
4489 if (argv[1][0])
4490 aux_base_name = argv[1];
4492 return 2;
4494 else if (!strcmp (arg, "auxbase-strip"))
4496 if (argc == 1)
4497 return 0;
4499 if (argv[1][0])
4501 strip_off_ending (argv[1], strlen (argv[1]));
4502 if (argv[1][0])
4503 aux_base_name = argv[1];
4506 return 2;
4508 else
4509 return 0;
4510 break;
4512 case 'o':
4513 if (arg[1] == 0)
4515 if (argc == 1)
4516 return 0;
4518 asm_file_name = argv[1];
4519 return 2;
4521 return 0;
4523 case 'G':
4525 int g_switch_val;
4526 int return_val;
4528 if (arg[1] == 0)
4530 if (argc == 1)
4531 return 0;
4533 g_switch_val = read_integral_parameter (argv[1], 0, -1);
4534 return_val = 2;
4536 else
4538 g_switch_val = read_integral_parameter (arg + 1, 0, -1);
4539 return_val = 1;
4542 if (g_switch_val == -1)
4543 return_val = 0;
4544 else
4546 g_switch_set = TRUE;
4547 g_switch_value = g_switch_val;
4550 return return_val;
4554 return 1;
4557 /* Decode -m switches. */
4558 /* Decode the switch -mNAME. */
4560 static void
4561 set_target_switch (name)
4562 const char *name;
4564 size_t j;
4565 int valid_target_option = 0;
4567 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
4568 if (!strcmp (target_switches[j].name, name))
4570 if (target_switches[j].value < 0)
4571 target_flags &= ~-target_switches[j].value;
4572 else
4573 target_flags |= target_switches[j].value;
4574 if (name[0] != 0)
4576 if (target_switches[j].value < 0)
4577 target_flags_explicit |= -target_switches[j].value;
4578 else
4579 target_flags_explicit |= target_switches[j].value;
4581 valid_target_option = 1;
4584 #ifdef TARGET_OPTIONS
4585 if (!valid_target_option)
4586 for (j = 0; j < ARRAY_SIZE (target_options); j++)
4588 int len = strlen (target_options[j].prefix);
4589 if (!strncmp (target_options[j].prefix, name, len))
4591 *target_options[j].variable = name + len;
4592 valid_target_option = 1;
4595 #endif
4597 if (!valid_target_option)
4598 error ("invalid option `%s'", name);
4601 /* Print version information to FILE.
4602 Each line begins with INDENT (for the case where FILE is the
4603 assembler output file). */
4605 static void
4606 print_version (file, indent)
4607 FILE *file;
4608 const char *indent;
4610 #ifndef __VERSION__
4611 #define __VERSION__ "[?]"
4612 #endif
4613 fnotice (file,
4614 #ifdef __GNUC__
4615 "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
4616 #else
4617 "%s%s%s version %s (%s) compiled by CC.\n"
4618 #endif
4619 , indent, *indent != 0 ? " " : "",
4620 lang_hooks.name, version_string, TARGET_NAME,
4621 indent, __VERSION__);
4624 /* Print an option value and return the adjusted position in the line.
4625 ??? We don't handle error returns from fprintf (disk full); presumably
4626 other code will catch a disk full though. */
4628 static int
4629 print_single_switch (file, pos, max, indent, sep, term, type, name)
4630 FILE *file;
4631 int pos, max;
4632 const char *indent, *sep, *term, *type, *name;
4634 /* The ultrix fprintf returns 0 on success, so compute the result we want
4635 here since we need it for the following test. */
4636 int len = strlen (sep) + strlen (type) + strlen (name);
4638 if (pos != 0
4639 && pos + len > max)
4641 fprintf (file, "%s", term);
4642 pos = 0;
4644 if (pos == 0)
4646 fprintf (file, "%s", indent);
4647 pos = strlen (indent);
4649 fprintf (file, "%s%s%s", sep, type, name);
4650 pos += len;
4651 return pos;
4654 /* Print active target switches to FILE.
4655 POS is the current cursor position and MAX is the size of a "line".
4656 Each line begins with INDENT and ends with TERM.
4657 Each switch is separated from the next by SEP. */
4659 static void
4660 print_switch_values (file, pos, max, indent, sep, term)
4661 FILE *file;
4662 int pos, max;
4663 const char *indent, *sep, *term;
4665 size_t j;
4666 char **p;
4668 /* Print the options as passed. */
4670 pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
4671 _("options passed: "), "");
4673 for (p = &save_argv[1]; *p != NULL; p++)
4674 if (**p == '-')
4676 /* Ignore these. */
4677 if (strcmp (*p, "-o") == 0)
4679 if (p[1] != NULL)
4680 p++;
4681 continue;
4683 if (strcmp (*p, "-quiet") == 0)
4684 continue;
4685 if (strcmp (*p, "-version") == 0)
4686 continue;
4687 if ((*p)[1] == 'd')
4688 continue;
4690 pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
4692 if (pos > 0)
4693 fprintf (file, "%s", term);
4695 /* Print the -f and -m options that have been enabled.
4696 We don't handle language specific options but printing argv
4697 should suffice. */
4699 pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
4700 _("options enabled: "), "");
4702 for (j = 0; j < ARRAY_SIZE (f_options); j++)
4703 if (*f_options[j].variable == f_options[j].on_value)
4704 pos = print_single_switch (file, pos, max, indent, sep, term,
4705 "-f", f_options[j].string);
4707 /* Print target specific options. */
4709 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
4710 if (target_switches[j].name[0] != '\0'
4711 && target_switches[j].value > 0
4712 && ((target_switches[j].value & target_flags)
4713 == target_switches[j].value))
4715 pos = print_single_switch (file, pos, max, indent, sep, term,
4716 "-m", target_switches[j].name);
4719 #ifdef TARGET_OPTIONS
4720 for (j = 0; j < ARRAY_SIZE (target_options); j++)
4721 if (*target_options[j].variable != NULL)
4723 char prefix[256];
4724 sprintf (prefix, "-m%s", target_options[j].prefix);
4725 pos = print_single_switch (file, pos, max, indent, sep, term,
4726 prefix, *target_options[j].variable);
4728 #endif
4730 fprintf (file, "%s", term);
4733 /* Open assembly code output file. Do this even if -fsyntax-only is
4734 on, because then the driver will have provided the name of a
4735 temporary file or bit bucket for us. NAME is the file specified on
4736 the command line, possibly NULL. */
4737 static void
4738 init_asm_output (name)
4739 const char *name;
4741 if (name == NULL && asm_file_name == 0)
4742 asm_out_file = stdout;
4743 else
4745 if (asm_file_name == 0)
4747 int len = strlen (dump_base_name);
4748 char *dumpname = (char *) xmalloc (len + 6);
4749 memcpy (dumpname, dump_base_name, len + 1);
4750 strip_off_ending (dumpname, len);
4751 strcat (dumpname, ".s");
4752 asm_file_name = dumpname;
4754 if (!strcmp (asm_file_name, "-"))
4755 asm_out_file = stdout;
4756 else
4757 asm_out_file = fopen (asm_file_name, "w+");
4758 if (asm_out_file == 0)
4759 fatal_io_error ("can't open %s for writing", asm_file_name);
4762 #ifdef IO_BUFFER_SIZE
4763 setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
4764 _IOFBF, IO_BUFFER_SIZE);
4765 #endif
4767 if (!flag_syntax_only)
4769 #ifdef ASM_FILE_START
4770 ASM_FILE_START (asm_out_file);
4771 #endif
4773 #ifdef ASM_COMMENT_START
4774 if (flag_verbose_asm)
4776 /* Print the list of options in effect. */
4777 print_version (asm_out_file, ASM_COMMENT_START);
4778 print_switch_values (asm_out_file, 0, MAX_LINE,
4779 ASM_COMMENT_START, " ", "\n");
4780 /* Add a blank line here so it appears in assembler output but not
4781 screen output. */
4782 fprintf (asm_out_file, "\n");
4784 #endif
4788 /* Initialization of the front end environment, before command line
4789 options are parsed. Signal handlers, internationalization etc.
4790 ARGV0 is main's argv[0]. */
4791 static void
4792 general_init (argv0)
4793 char *argv0;
4795 char *p;
4797 p = argv0 + strlen (argv0);
4798 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
4799 --p;
4800 progname = p;
4802 xmalloc_set_program_name (progname);
4804 hex_init ();
4806 gcc_init_libintl ();
4808 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
4809 #ifdef SIGSEGV
4810 signal (SIGSEGV, crash_signal);
4811 #endif
4812 #ifdef SIGILL
4813 signal (SIGILL, crash_signal);
4814 #endif
4815 #ifdef SIGBUS
4816 signal (SIGBUS, crash_signal);
4817 #endif
4818 #ifdef SIGABRT
4819 signal (SIGABRT, crash_signal);
4820 #endif
4821 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
4822 signal (SIGIOT, crash_signal);
4823 #endif
4824 #ifdef SIGFPE
4825 signal (SIGFPE, crash_signal);
4826 #endif
4828 /* Other host-specific signal setup. */
4829 (*host_hooks.extra_signals)();
4831 /* Initialize the diagnostics reporting machinery, so option parsing
4832 can give warnings and errors. */
4833 diagnostic_initialize (global_dc);
4835 /* Initialize the garbage-collector, string pools and tree type hash
4836 table. */
4837 init_ggc ();
4838 init_stringpool ();
4839 init_ttree ();
4842 /* Parse command line options and set default flag values, called
4843 after language-independent option-independent initialization. Do
4844 minimal options processing. Outputting diagnostics is OK, but GC
4845 and identifier hashtables etc. are not initialized yet.
4847 Return nonzero to suppress compiler back end initialization. */
4848 static void
4849 parse_options_and_default_flags (argc, argv)
4850 int argc;
4851 char **argv;
4853 int i;
4855 /* Save in case md file wants to emit args as a comment. */
4856 save_argc = argc;
4857 save_argv = argv;
4859 /* Initialize register usage now so switches may override. */
4860 init_reg_sets ();
4862 /* Register the language-independent parameters. */
4863 add_params (lang_independent_params, LAST_PARAM);
4865 /* Perform language-specific options initialization. */
4866 (*lang_hooks.init_options) ();
4868 /* Scan to see what optimization level has been specified. That will
4869 determine the default value of many flags. */
4870 for (i = 1; i < argc; i++)
4872 if (!strcmp (argv[i], "-O"))
4874 optimize = 1;
4875 optimize_size = 0;
4877 else if (argv[i][0] == '-' && argv[i][1] == 'O')
4879 /* Handle -Os, -O2, -O3, -O69, ... */
4880 char *p = &argv[i][2];
4882 if ((p[0] == 's') && (p[1] == 0))
4884 optimize_size = 1;
4886 /* Optimizing for size forces optimize to be 2. */
4887 optimize = 2;
4889 else
4891 const int optimize_val = read_integral_parameter (p, p - 2, -1);
4892 if (optimize_val != -1)
4894 optimize = optimize_val;
4895 optimize_size = 0;
4901 if (!optimize)
4903 flag_merge_constants = 0;
4906 if (optimize >= 1)
4908 flag_defer_pop = 1;
4909 flag_thread_jumps = 1;
4910 #ifdef DELAY_SLOTS
4911 flag_delayed_branch = 1;
4912 #endif
4913 #ifdef CAN_DEBUG_WITHOUT_FP
4914 flag_omit_frame_pointer = 1;
4915 #endif
4916 flag_guess_branch_prob = 1;
4917 flag_cprop_registers = 1;
4918 flag_loop_optimize = 1;
4919 flag_crossjumping = 1;
4920 flag_if_conversion = 1;
4921 flag_if_conversion2 = 1;
4924 if (optimize >= 2)
4926 flag_optimize_sibling_calls = 1;
4927 flag_cse_follow_jumps = 1;
4928 flag_cse_skip_blocks = 1;
4929 flag_gcse = 1;
4930 flag_expensive_optimizations = 1;
4931 flag_strength_reduce = 1;
4932 flag_rerun_cse_after_loop = 1;
4933 flag_rerun_loop_opt = 1;
4934 flag_caller_saves = 1;
4935 flag_force_mem = 1;
4936 flag_peephole2 = 1;
4937 #ifdef INSN_SCHEDULING
4938 flag_schedule_insns = 1;
4939 flag_schedule_insns_after_reload = 1;
4940 #endif
4941 flag_regmove = 1;
4942 flag_strict_aliasing = 1;
4943 flag_delete_null_pointer_checks = 1;
4944 flag_reorder_blocks = 1;
4945 flag_reorder_functions = 1;
4948 if (optimize >= 3)
4950 flag_inline_functions = 1;
4951 flag_rename_registers = 1;
4952 flag_unswitch_loops = 1;
4955 if (optimize < 2 || optimize_size)
4957 align_loops = 1;
4958 align_jumps = 1;
4959 align_labels = 1;
4960 align_functions = 1;
4962 /* Don't reorder blocks when optimizing for size because extra
4963 jump insns may be created; also barrier may create extra padding.
4965 More correctly we should have a block reordering mode that tried
4966 to minimize the combined size of all the jumps. This would more
4967 or less automatically remove extra jumps, but would also try to
4968 use more short jumps instead of long jumps. */
4969 flag_reorder_blocks = 0;
4972 /* Initialize whether `char' is signed. */
4973 flag_signed_char = DEFAULT_SIGNED_CHAR;
4974 #ifdef DEFAULT_SHORT_ENUMS
4975 /* Initialize how much space enums occupy, by default. */
4976 flag_short_enums = DEFAULT_SHORT_ENUMS;
4977 #endif
4979 /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
4980 modify it. */
4981 target_flags = 0;
4982 set_target_switch ("");
4984 /* Unwind tables are always present in an ABI-conformant IA-64
4985 object file, so the default should be ON. */
4986 #ifdef IA64_UNWIND_INFO
4987 flag_unwind_tables = IA64_UNWIND_INFO;
4988 #endif
4990 #ifdef OPTIMIZATION_OPTIONS
4991 /* Allow default optimizations to be specified on a per-machine basis. */
4992 OPTIMIZATION_OPTIONS (optimize, optimize_size);
4993 #endif
4995 /* Perform normal command line switch decoding. */
4996 for (i = 1; i < argc;)
4998 int lang_processed;
4999 int indep_processed;
5001 /* Give the language a chance to decode the option for itself. */
5002 lang_processed = (*lang_hooks.decode_option) (argc - i, argv + i);
5004 if (lang_processed >= 0)
5005 /* Now see if the option also has a language independent meaning.
5006 Some options are both language specific and language independent,
5007 eg --help. */
5008 indep_processed = independent_decode_option (argc - i, argv + i);
5009 else
5011 lang_processed = -lang_processed;
5012 indep_processed = 0;
5015 if (lang_processed || indep_processed)
5016 i += MAX (lang_processed, indep_processed);
5017 else
5019 const char *option = NULL;
5020 const char *lang = NULL;
5021 unsigned int j;
5023 /* It is possible that the command line switch is not valid for the
5024 current language, but it is valid for another language. In order
5025 to be compatible with previous versions of the compiler (which
5026 did not issue an error message in this case) we check for this
5027 possibility here. If we do find a match, then if extra_warnings
5028 is set we generate a warning message, otherwise we will just
5029 ignore the option. */
5030 for (j = 0; j < ARRAY_SIZE (documented_lang_options); j++)
5032 option = documented_lang_options[j].option;
5034 if (option == NULL)
5035 lang = documented_lang_options[j].description;
5036 else if (! strncmp (argv[i], option, strlen (option)))
5037 break;
5040 if (j != ARRAY_SIZE (documented_lang_options))
5042 if (extra_warnings)
5044 warning ("ignoring command line option '%s'", argv[i]);
5045 if (lang)
5046 warning
5047 ("(it is valid for %s but not the selected language)",
5048 lang);
5051 else if (argv[i][0] == '-' && argv[i][1] == 'g')
5052 warning ("`%s': unknown or unsupported -g option", &argv[i][2]);
5053 else
5054 error ("unrecognized option `%s'", argv[i]);
5056 i++;
5060 if (flag_no_inline == 2)
5061 flag_no_inline = 0;
5062 else
5063 flag_really_no_inline = flag_no_inline;
5065 /* Set flag_no_inline before the post_options () hook. The C front
5066 ends use it to determine tree inlining defaults. FIXME: such
5067 code should be lang-independent when all front ends use tree
5068 inlining, in which case it, and this condition, should be moved
5069 to the top of process_options() instead. */
5070 if (optimize == 0)
5072 /* Inlining does not work if not optimizing,
5073 so force it not to be done. */
5074 flag_no_inline = 1;
5075 warn_inline = 0;
5077 /* The c_decode_option function and decode_option hook set
5078 this to `2' if -Wall is used, so we can avoid giving out
5079 lots of errors for people who don't realize what -Wall does. */
5080 if (warn_uninitialized == 1)
5081 warning ("-Wuninitialized is not supported without -O");
5084 if (flag_really_no_inline == 2)
5085 flag_really_no_inline = flag_no_inline;
5088 /* Process the options that have been parsed. */
5089 static void
5090 process_options ()
5092 #ifdef OVERRIDE_OPTIONS
5093 /* Some machines may reject certain combinations of options. */
5094 OVERRIDE_OPTIONS;
5095 #endif
5097 /* Set up the align_*_log variables, defaulting them to 1 if they
5098 were still unset. */
5099 if (align_loops <= 0) align_loops = 1;
5100 if (align_loops_max_skip > align_loops || !align_loops)
5101 align_loops_max_skip = align_loops - 1;
5102 align_loops_log = floor_log2 (align_loops * 2 - 1);
5103 if (align_jumps <= 0) align_jumps = 1;
5104 if (align_jumps_max_skip > align_jumps || !align_jumps)
5105 align_jumps_max_skip = align_jumps - 1;
5106 align_jumps_log = floor_log2 (align_jumps * 2 - 1);
5107 if (align_labels <= 0) align_labels = 1;
5108 align_labels_log = floor_log2 (align_labels * 2 - 1);
5109 if (align_labels_max_skip > align_labels || !align_labels)
5110 align_labels_max_skip = align_labels - 1;
5111 if (align_functions <= 0) align_functions = 1;
5112 align_functions_log = floor_log2 (align_functions * 2 - 1);
5114 /* Unrolling all loops implies that standard loop unrolling must also
5115 be done. */
5116 if (flag_unroll_all_loops)
5117 flag_unroll_loops = 1;
5118 /* Loop unrolling requires that strength_reduction be on also. Silently
5119 turn on strength reduction here if it isn't already on. Also, the loop
5120 unrolling code assumes that cse will be run after loop, so that must
5121 be turned on also. */
5122 if (flag_unroll_loops)
5124 flag_strength_reduce = 1;
5125 flag_rerun_cse_after_loop = 1;
5128 if (flag_non_call_exceptions)
5129 flag_asynchronous_unwind_tables = 1;
5130 if (flag_asynchronous_unwind_tables)
5131 flag_unwind_tables = 1;
5133 /* Disable unit-at-a-time mode for frontends not supporting callgraph
5134 interface. */
5135 if (flag_unit_at_a_time && ! lang_hooks.callgraph.expand_function)
5136 flag_unit_at_a_time = 0;
5138 /* Warn about options that are not supported on this machine. */
5139 #ifndef INSN_SCHEDULING
5140 if (flag_schedule_insns || flag_schedule_insns_after_reload)
5141 warning ("instruction scheduling not supported on this target machine");
5142 #endif
5143 #ifndef DELAY_SLOTS
5144 if (flag_delayed_branch)
5145 warning ("this target machine does not have delayed branches");
5146 #endif
5148 user_label_prefix = USER_LABEL_PREFIX;
5149 if (flag_leading_underscore != -1)
5151 /* If the default prefix is more complicated than "" or "_",
5152 issue a warning and ignore this option. */
5153 if (user_label_prefix[0] == 0 ||
5154 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
5156 user_label_prefix = flag_leading_underscore ? "_" : "";
5158 else
5159 warning ("-f%sleading-underscore not supported on this target machine",
5160 flag_leading_underscore ? "" : "no-");
5163 /* If we are in verbose mode, write out the version and maybe all the
5164 option flags in use. */
5165 if (version_flag)
5167 print_version (stderr, "");
5168 if (! quiet_flag)
5169 print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
5172 if (! quiet_flag)
5173 time_report = 1;
5175 if (flag_syntax_only)
5177 write_symbols = NO_DEBUG;
5178 profile_flag = 0;
5181 /* Now we know write_symbols, set up the debug hooks based on it.
5182 By default we do nothing for debug output. */
5183 #if defined(DBX_DEBUGGING_INFO)
5184 if (write_symbols == DBX_DEBUG)
5185 debug_hooks = &dbx_debug_hooks;
5186 #endif
5187 #if defined(XCOFF_DEBUGGING_INFO)
5188 if (write_symbols == XCOFF_DEBUG)
5189 debug_hooks = &xcoff_debug_hooks;
5190 #endif
5191 #ifdef SDB_DEBUGGING_INFO
5192 if (write_symbols == SDB_DEBUG)
5193 debug_hooks = &sdb_debug_hooks;
5194 #endif
5195 #ifdef DWARF_DEBUGGING_INFO
5196 if (write_symbols == DWARF_DEBUG)
5197 debug_hooks = &dwarf_debug_hooks;
5198 #endif
5199 #ifdef DWARF2_DEBUGGING_INFO
5200 if (write_symbols == DWARF2_DEBUG)
5201 debug_hooks = &dwarf2_debug_hooks;
5202 #endif
5203 #ifdef VMS_DEBUGGING_INFO
5204 if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
5205 debug_hooks = &vmsdbg_debug_hooks;
5206 #endif
5208 /* If auxiliary info generation is desired, open the output file.
5209 This goes in the same directory as the source file--unlike
5210 all the other output files. */
5211 if (flag_gen_aux_info)
5213 aux_info_file = fopen (aux_info_file_name, "w");
5214 if (aux_info_file == 0)
5215 fatal_io_error ("can't open %s", aux_info_file_name);
5218 if (! targetm.have_named_sections)
5220 if (flag_function_sections)
5222 warning ("-ffunction-sections not supported for this target");
5223 flag_function_sections = 0;
5225 if (flag_data_sections)
5227 warning ("-fdata-sections not supported for this target");
5228 flag_data_sections = 0;
5232 if (flag_function_sections && profile_flag)
5234 warning ("-ffunction-sections disabled; it makes profiling impossible");
5235 flag_function_sections = 0;
5238 #ifndef HAVE_prefetch
5239 if (flag_prefetch_loop_arrays)
5241 warning ("-fprefetch-loop-arrays not supported for this target");
5242 flag_prefetch_loop_arrays = 0;
5244 #else
5245 if (flag_prefetch_loop_arrays && !HAVE_prefetch)
5247 warning ("-fprefetch-loop-arrays not supported for this target (try -march switches)");
5248 flag_prefetch_loop_arrays = 0;
5250 #endif
5252 /* This combination of options isn't handled for i386 targets and doesn't
5253 make much sense anyway, so don't allow it. */
5254 if (flag_prefetch_loop_arrays && optimize_size)
5256 warning ("-fprefetch-loop-arrays is not supported with -Os");
5257 flag_prefetch_loop_arrays = 0;
5260 #ifndef OBJECT_FORMAT_ELF
5261 if (flag_function_sections && write_symbols != NO_DEBUG)
5262 warning ("-ffunction-sections may affect debugging on some targets");
5263 #endif
5265 /* The presence of IEEE signaling NaNs, implies all math can trap. */
5266 if (flag_signaling_nans)
5267 flag_trapping_math = 1;
5270 /* Initialize the compiler back end. */
5271 static void
5272 backend_init ()
5274 /* init_emit_once uses reg_raw_mode and therefore must be called
5275 after init_regs which initialized reg_raw_mode. */
5276 init_regs ();
5277 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
5278 || debug_info_level == DINFO_LEVEL_VERBOSE
5279 #ifdef VMS_DEBUGGING_INFO
5280 /* Enable line number info for traceback */
5281 || debug_info_level > DINFO_LEVEL_NONE
5282 #endif
5283 || flag_test_coverage
5284 || warn_notreached);
5285 init_fake_stack_mems ();
5286 init_alias_once ();
5287 init_loop ();
5288 init_reload ();
5289 init_function_once ();
5290 init_varasm_once ();
5292 /* The following initialization functions need to generate rtl, so
5293 provide a dummy function context for them. */
5294 init_dummy_function_start ();
5295 init_expmed ();
5296 if (flag_caller_saves)
5297 init_caller_save ();
5298 expand_dummy_function_end ();
5301 /* Language-dependent initialization. Returns nonzero on success. */
5302 static int
5303 lang_dependent_init (name)
5304 const char *name;
5306 if (dump_base_name == 0)
5307 dump_base_name = name ? name : "gccdump";
5309 /* Front-end initialization. This hook can assume that GC,
5310 identifier hashes etc. are set up, but debug initialization is
5311 not done yet. This routine must return the original filename
5312 (e.g. foo.i -> foo.c) so can correctly initialize debug output. */
5313 name = (*lang_hooks.init) (name);
5314 if (name == NULL)
5315 return 0;
5317 /* Is this duplication necessary? */
5318 name = ggc_strdup (name);
5319 main_input_filename = input_filename = name;
5320 init_asm_output (name);
5322 /* These create various _DECL nodes, so need to be called after the
5323 front end is initialized. */
5324 init_eh ();
5325 init_optabs ();
5327 /* The following initialization functions need to generate rtl, so
5328 provide a dummy function context for them. */
5329 init_dummy_function_start ();
5330 init_expr_once ();
5331 expand_dummy_function_end ();
5333 /* Put an entry on the input file stack for the main input file. */
5334 push_srcloc (input_filename, 0);
5336 /* If dbx symbol table desired, initialize writing it and output the
5337 predefined types. */
5338 timevar_push (TV_SYMOUT);
5340 #ifdef DWARF2_UNWIND_INFO
5341 if (dwarf2out_do_frame ())
5342 dwarf2out_frame_init ();
5343 #endif
5345 /* Now we have the correct original filename, we can initialize
5346 debug output. */
5347 (*debug_hooks->init) (name);
5349 timevar_pop (TV_SYMOUT);
5351 return 1;
5354 /* Clean up: close opened files, etc. */
5356 static void
5357 finalize ()
5359 /* Close the dump files. */
5360 if (flag_gen_aux_info)
5362 fclose (aux_info_file);
5363 if (errorcount)
5364 unlink (aux_info_file_name);
5367 /* Close non-debugging input and output files. Take special care to note
5368 whether fclose returns an error, since the pages might still be on the
5369 buffer chain while the file is open. */
5371 if (asm_out_file)
5373 if (ferror (asm_out_file) != 0)
5374 fatal_io_error ("error writing to %s", asm_file_name);
5375 if (fclose (asm_out_file) != 0)
5376 fatal_io_error ("error closing %s", asm_file_name);
5379 /* Do whatever is necessary to finish printing the graphs. */
5380 if (graph_dump_format != no_graph)
5382 int i;
5384 for (i = 0; i < (int) DFI_MAX; ++i)
5385 if (dump_file[i].initialized && dump_file[i].graph_dump_p)
5387 char seq[16];
5388 char *suffix;
5390 sprintf (seq, DUMPFILE_FORMAT, i);
5391 suffix = concat (seq, dump_file[i].extension, NULL);
5392 finish_graph_dump_file (dump_base_name, suffix);
5393 free (suffix);
5397 if (mem_report)
5399 ggc_print_statistics ();
5400 stringpool_statistics ();
5401 dump_tree_statistics ();
5404 /* Free up memory for the benefit of leak detectors. */
5405 free_reg_info ();
5407 /* Language-specific end of compilation actions. */
5408 (*lang_hooks.finish) ();
5411 /* Initialize the compiler, and compile the input file. */
5412 static void
5413 do_compile ()
5415 /* All command line options have been parsed; allow the front end to
5416 perform consistency checks, etc. */
5417 bool no_backend = (*lang_hooks.post_options) ();
5419 /* The bulk of command line switch processing. */
5420 process_options ();
5422 /* If an error has already occurred, give up. */
5423 if (errorcount)
5424 return;
5426 if (aux_base_name)
5427 /*NOP*/;
5428 else if (filename)
5430 char *name = xstrdup (lbasename (filename));
5432 aux_base_name = name;
5433 strip_off_ending (name, strlen (name));
5435 else
5436 aux_base_name = "gccaux";
5438 /* We cannot start timing until after options are processed since that
5439 says if we run timers or not. */
5440 init_timevar ();
5441 timevar_start (TV_TOTAL);
5443 /* Set up the back-end if requested. */
5444 if (!no_backend)
5445 backend_init ();
5447 /* Language-dependent initialization. Returns true on success. */
5448 if (lang_dependent_init (filename))
5449 compile_file ();
5451 finalize ();
5453 /* Stop timing and print the times. */
5454 timevar_stop (TV_TOTAL);
5455 timevar_print (stderr);
5458 /* Entry point of cc1, cc1plus, jc1, f771, etc.
5459 Decode command args, then call compile_file.
5460 Exit code is FATAL_EXIT_CODE if can't open files or if there were
5461 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
5463 It is not safe to call this function more than once. */
5466 toplev_main (argc, argv)
5467 int argc;
5468 char **argv;
5470 /* Initialization of GCC's environment, and diagnostics. */
5471 general_init (argv[0]);
5473 /* Parse the options and do minimal processing; basically just
5474 enough to default flags appropriately. */
5475 parse_options_and_default_flags (argc, argv);
5477 /* Exit early if we can (e.g. -help). */
5478 if (!exit_after_options)
5479 do_compile ();
5481 if (errorcount || sorrycount)
5482 return (FATAL_EXIT_CODE);
5484 return (SUCCESS_EXIT_CODE);