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