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