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