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