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