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