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