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