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