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