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