]> gcc.gnu.org Git - gcc.git/blame - gcc/toplev.c
libio.h (_IO_LOCK_T): Handle glibc 2 when _IO_MTSAFE_IO is not defined.
[gcc.git] / gcc / toplev.c
CommitLineData
4291d9c8 1/* Top level of GNU C compiler
5ae3bec5 2 Copyright (C) 1987, 88, 89, 92-6, 1997 Free Software Foundation, Inc.
4291d9c8
RS
3
4This file is part of GNU CC.
5
6GNU CC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU CC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU CC; see the file COPYING. If not, write to
e9fa0c7c
RK
18the Free Software Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
4291d9c8 20
4291d9c8
RS
21/* This is the top level of cc1/c++.
22 It parses command args, opens files, invokes the various passes
23 in the proper order, and counts the time used by each.
24 Error messages and low-level interface to malloc also handled here. */
25
26#include "config.h"
e0e2a8da 27#ifdef __STDC__
04fe4385 28#include <stdarg.h>
e0e2a8da 29#else
04fe4385 30#include <varargs.h>
e0e2a8da 31#endif
4291d9c8
RS
32#include <stdio.h>
33#include <signal.h>
34#include <setjmp.h>
eb711c86 35#include <sys/types.h>
ea9182cd 36#include <ctype.h>
4291d9c8
RS
37#include <sys/stat.h>
38
9580b583 39#ifndef _WIN32
4291d9c8
RS
40#ifdef USG
41#undef FLOAT
42#include <sys/param.h>
43/* This is for hpux. It is a real screw. They should change hpux. */
44#undef FLOAT
45#include <sys/times.h>
46#include <time.h> /* Correct for hpux at least. Is it good on other USG? */
47#undef FFS /* Some systems define this in param.h. */
48#else
49#ifndef VMS
50#include <sys/time.h>
51#include <sys/resource.h>
52#endif
53#endif
eb910b5a 54#endif
4291d9c8
RS
55
56#include "input.h"
57#include "tree.h"
4291d9c8
RS
58#include "rtl.h"
59#include "flags.h"
60#include "insn-attr.h"
d0d4af87 61#include "defaults.h"
e14417fa
RK
62#include "output.h"
63#include "bytecode.h"
64#include "bc-emit.h"
3d195391 65#include "except.h"
f246a305
RS
66
67#ifdef XCOFF_DEBUGGING_INFO
68#include "xcoffout.h"
69#endif
4291d9c8
RS
70\f
71#ifdef VMS
72/* The extra parameters substantially improve the I/O performance. */
73static FILE *
37c9f674 74vms_fopen (fname, type)
4291d9c8
RS
75 char * fname;
76 char * type;
77{
37c9f674
RK
78 /* The <stdio.h> in the gcc-vms-1.42 distribution prototypes fopen with two
79 fixed arguments, which matches ANSI's specification but not VAXCRTL's
80 pre-ANSI implementation. This hack circumvents the mismatch problem. */
81 FILE *(*vmslib_fopen)() = (FILE *(*)()) fopen;
82
83 if (*type == 'w')
84 return (*vmslib_fopen) (fname, type, "mbc=32",
85 "deq=64", "fop=tef", "shr=nil");
86 else
87 return (*vmslib_fopen) (fname, type, "mbc=32");
4291d9c8 88}
37c9f674
RK
89#define fopen vms_fopen
90#endif /* VMS */
4291d9c8
RS
91
92#ifndef DEFAULT_GDB_EXTENSIONS
93#define DEFAULT_GDB_EXTENSIONS 1
94#endif
95
30657ee3
RK
96/* If more than one debugging type is supported, you must define
97 PREFERRED_DEBUGGING_TYPE to choose a format in a system-dependent way.
98
99 This is one long line cause VAXC can't handle a \-newline. */
9a666dda 100#if 1 < (defined (DBX_DEBUGGING_INFO) + defined (SDB_DEBUGGING_INFO) + defined (DWARF_DEBUGGING_INFO) + defined (DWARF2_DEBUGGING_INFO) + defined (XCOFF_DEBUGGING_INFO))
30657ee3
RK
101#ifndef PREFERRED_DEBUGGING_TYPE
102You Lose! You must define PREFERRED_DEBUGGING_TYPE!
103#endif /* no PREFERRED_DEBUGGING_TYPE */
104#else /* Only one debugging format supported. Define PREFERRED_DEBUGGING_TYPE
105 so the following code needn't care. */
106#ifdef DBX_DEBUGGING_INFO
107#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
108#endif
109#ifdef SDB_DEBUGGING_INFO
110#define PREFERRED_DEBUGGING_TYPE SDB_DEBUG
111#endif
112#ifdef DWARF_DEBUGGING_INFO
113#define PREFERRED_DEBUGGING_TYPE DWARF_DEBUG
114#endif
9a666dda
JM
115#ifdef DWARF2_DEBUGGING_INFO
116#define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
117#endif
30657ee3
RK
118#ifdef XCOFF_DEBUGGING_INFO
119#define PREFERRED_DEBUGGING_TYPE XCOFF_DEBUG
120#endif
121#endif /* More than one debugger format enabled. */
122
123/* If still not defined, must have been because no debugging formats
124 are supported. */
125#ifndef PREFERRED_DEBUGGING_TYPE
126#define PREFERRED_DEBUGGING_TYPE NO_DEBUG
127#endif
128
4291d9c8
RS
129extern int rtx_equal_function_value_matters;
130
72c8bb7f 131#if ! (defined (VMS) || defined (OS2))
4291d9c8 132extern char **environ;
4d7e336b 133#endif
4291d9c8
RS
134extern char *version_string, *language_string;
135
b0316e35
RS
136/* Carry information from ASM_DECLARE_OBJECT_NAME
137 to ASM_FINISH_DECLARE_OBJECT. */
138
139extern int size_directive_output;
5e10b3cc 140extern tree last_assemble_variable_decl;
b0316e35 141
4291d9c8
RS
142extern void init_lex ();
143extern void init_decl_processing ();
144extern void init_obstacks ();
145extern void init_tree_codes ();
146extern void init_rtl ();
34d0205f 147extern void init_regs ();
4291d9c8
RS
148extern void init_optabs ();
149extern void init_stmt ();
150extern void init_reg_sets ();
151extern void dump_flow_info ();
152extern void dump_sched_info ();
153extern void dump_local_alloc ();
9ddca353 154extern void regset_release_memory ();
4291d9c8
RS
155
156void rest_of_decl_compilation ();
d18225c4
RK
157void error_with_file_and_line PVPROTO((char *file, int line, char *s, ...));
158void error_with_decl PVPROTO((tree decl, char *s, ...));
159void error_for_asm PVPROTO((rtx insn, char *s, ...));
160void error PVPROTO((char *s, ...));
161void fatal PVPROTO((char *s, ...));
162void warning_with_file_and_line PVPROTO((char *file, int line, char *s, ...));
163void warning_with_decl PVPROTO((tree decl, char *s, ...));
164void warning_for_asm PVPROTO((rtx insn, char *s, ...));
165void warning PVPROTO((char *s, ...));
166void pedwarn PVPROTO((char *s, ...));
167void pedwarn_with_decl PVPROTO((tree decl, char *s, ...));
168void pedwarn_with_file_and_line PVPROTO((char *file, int line, char *s, ...));
169void sorry PVPROTO((char *s, ...));
170void really_sorry PVPROTO((char *s, ...));
4291d9c8
RS
171void fancy_abort ();
172#ifndef abort
173void abort ();
174#endif
175void set_target_switch ();
4291d9c8
RS
176static char *decl_name ();
177
3d5cdd42
DE
178void print_version ();
179int print_single_switch ();
180void print_switch_values ();
181/* Length of line when printing switch values. */
182#define MAX_LINE 75
183
efa00f4e
RK
184#ifdef __alpha
185extern char *sbrk ();
186#endif
187
4291d9c8
RS
188/* Name of program invoked, sans directories. */
189
190char *progname;
191
192/* Copy of arguments to main. */
193int save_argc;
194char **save_argv;
195\f
196/* Name of current original source file (what was input to cpp).
197 This comes from each #-command in the actual input. */
198
199char *input_filename;
200
201/* Name of top-level original source file (what was input to cpp).
202 This comes from the #-command at the beginning of the actual input.
203 If there isn't any there, then this is the cc1 input file name. */
204
205char *main_input_filename;
206
e3d1fd32 207#if !USE_CPPLIB
4291d9c8 208/* Stream for reading from the input file. */
4291d9c8 209FILE *finput;
e3d1fd32 210#endif
4291d9c8
RS
211
212/* Current line number in real source file. */
213
214int lineno;
215
216/* Stack of currently pending input files. */
217
218struct file_stack *input_file_stack;
219
220/* Incremented on each change to input_file_stack. */
221int input_file_stack_tick;
222
223/* FUNCTION_DECL for function now being parsed or compiled. */
224
225extern tree current_function_decl;
226
227/* Name to use as base of names for dump output files. */
228
229char *dump_base_name;
230
231/* Bit flags that specify the machine subtype we are compiling for.
232 Bits are tested using macros TARGET_... defined in the tm.h file
233 and set by `-m...' switches. Must be defined in rtlanal.c. */
234
235extern int target_flags;
236
237/* Flags saying which kinds of debugging dump have been requested. */
238
239int rtl_dump = 0;
240int rtl_dump_and_exit = 0;
241int jump_opt_dump = 0;
242int cse_dump = 0;
243int loop_dump = 0;
244int cse2_dump = 0;
0d332add 245int branch_prob_dump = 0;
4291d9c8
RS
246int flow_dump = 0;
247int combine_dump = 0;
8c660648 248int regmove_dump = 0;
4291d9c8
RS
249int sched_dump = 0;
250int local_reg_dump = 0;
251int global_reg_dump = 0;
252int sched2_dump = 0;
253int jump2_opt_dump = 0;
254int dbr_sched_dump = 0;
255int flag_print_asm_name = 0;
256int stack_reg_dump = 0;
257
258/* Name for output file of assembly code, specified with -o. */
259
260char *asm_file_name;
261
262/* Value of the -G xx switch, and whether it was passed or not. */
263int g_switch_value;
264int g_switch_set;
265
266/* Type(s) of debugging information we are producing (if any).
267 See flags.h for the definitions of the different possible
268 types of debugging information. */
269enum debug_info_type write_symbols = NO_DEBUG;
270
271/* Level of debugging information we are producing. See flags.h
272 for the definitions of the different possible levels. */
273enum debug_info_level debug_info_level = DINFO_LEVEL_NONE;
274
a53d0bcc
RS
275/* Nonzero means use GNU-only extensions in the generated symbolic
276 debugging information. */
277/* Currently, this only has an effect when write_symbols is set to
278 DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG. */
279int use_gnu_debug_info_extensions = 0;
4291d9c8
RS
280
281/* Nonzero means do optimizations. -O.
282 Particular numeric values stand for particular amounts of optimization;
283 thus, -O2 stores 2 here. However, the optimizations beyond the basic
284 ones are not controlled directly by this variable. Instead, they are
285 controlled by individual `flag_...' variables that are defaulted
286 based on this variable. */
287
288int optimize = 0;
289
290/* Number of error messages and warning messages so far. */
291
292int errorcount = 0;
293int warningcount = 0;
294int sorrycount = 0;
295
ca695ac9
JB
296/* Flag to output bytecode instead of native assembler */
297int output_bytecode = 0;
298
a1d7ffe3
JM
299/* Pointer to function to compute the name to use to print a declaration.
300 DECL is the declaration in question.
301 VERBOSITY determines what information will be printed:
302 0: DECL_NAME, demangled as necessary.
303 1: and scope information.
304 2: and any other information that might be interesting, such as function
305 parameter types in C++. */
4291d9c8 306
a1d7ffe3 307char *(*decl_printable_name) (/* tree decl, int verbosity */);
4291d9c8
RS
308
309/* Pointer to function to compute rtl for a language-specific tree code. */
310
311struct rtx_def *(*lang_expand_expr) ();
312
2b599527
RS
313/* Pointer to function to finish handling an incomplete decl at the
314 end of compilation. */
315
316void (*incomplete_decl_finalize_hook) () = 0;
317
bf8b4985
RK
318/* Highest label number used at the end of reload. */
319
320int max_label_num_after_reload;
321
4291d9c8
RS
322/* Nonzero if generating code to do profiling. */
323
324int profile_flag = 0;
325
326/* Nonzero if generating code to do profiling on a line-by-line basis. */
327
328int profile_block_flag;
329
0d332add
DE
330/* Nonzero if generating code to profile program flow graph arcs. */
331
332int profile_arc_flag = 0;
333
334/* Nonzero if generating info for gcov to calculate line test coverage. */
335
336int flag_test_coverage = 0;
337
338/* Nonzero indicates that branch taken probabilities should be calculated. */
339
340int flag_branch_probabilities = 0;
341
4291d9c8
RS
342/* Nonzero for -pedantic switch: warn about anything
343 that standard spec forbids. */
344
345int pedantic = 0;
346
347/* Temporarily suppress certain warnings.
348 This is set while reading code from a system header file. */
349
350int in_system_header = 0;
351
352/* Nonzero means do stupid register allocation.
353 Currently, this is 1 if `optimize' is 0. */
354
355int obey_regdecls = 0;
356
357/* Don't print functions as they are compiled and don't print
358 times taken by the various passes. -quiet. */
359
360int quiet_flag = 0;
361\f
362/* -f flags. */
363
364/* Nonzero means `char' should be signed. */
365
366int flag_signed_char;
367
368/* Nonzero means give an enum type only as many bytes as it needs. */
369
370int flag_short_enums;
371
372/* Nonzero for -fcaller-saves: allocate values in regs that need to
373 be saved across function calls, if that produces overall better code.
374 Optional now, so people can test it. */
375
376#ifdef DEFAULT_CALLER_SAVES
377int flag_caller_saves = 1;
378#else
379int flag_caller_saves = 0;
380#endif
381
958ec8ca
JW
382/* Nonzero if structures and unions should be returned in memory.
383
384 This should only be defined if compatibility with another compiler or
385 with an ABI is needed, because it results in slower code. */
386
387#ifndef DEFAULT_PCC_STRUCT_RETURN
388#define DEFAULT_PCC_STRUCT_RETURN 1
389#endif
390
4291d9c8
RS
391/* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
392
958ec8ca 393int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
4291d9c8
RS
394
395/* Nonzero for -fforce-mem: load memory value into a register
396 before arithmetic on it. This makes better cse but slower compilation. */
397
398int flag_force_mem = 0;
399
400/* Nonzero for -fforce-addr: load memory address into a register before
401 reference to memory. This makes better cse but slower compilation. */
402
403int flag_force_addr = 0;
404
405/* Nonzero for -fdefer-pop: don't pop args after each function call;
406 instead save them up to pop many calls' args with one insns. */
407
6731a3e3 408int flag_defer_pop = 0;
4291d9c8
RS
409
410/* Nonzero for -ffloat-store: don't allocate floats and doubles
411 in extended-precision registers. */
412
413int flag_float_store = 0;
414
415/* Nonzero for -fcse-follow-jumps:
416 have cse follow jumps to do a more extensive job. */
417
418int flag_cse_follow_jumps;
419
8b3686ed
RK
420/* Nonzero for -fcse-skip-blocks:
421 have cse follow a branch around a block. */
422int flag_cse_skip_blocks;
423
4291d9c8
RS
424/* Nonzero for -fexpensive-optimizations:
425 perform miscellaneous relatively-expensive optimizations. */
426int flag_expensive_optimizations;
427
428/* Nonzero for -fthread-jumps:
429 have jump optimize output of loop. */
430
431int flag_thread_jumps;
432
433/* Nonzero enables strength-reduction in loop.c. */
434
435int flag_strength_reduce = 0;
436
437/* Nonzero enables loop unrolling in unroll.c. Only loops for which the
438 number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
439 UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
440 unrolled. */
441
442int flag_unroll_loops;
443
444/* Nonzero enables loop unrolling in unroll.c. All loops are unrolled.
445 This is generally not a win. */
446
447int flag_unroll_all_loops;
448
e5eb27e5
JL
449/* Nonzero forces all invariant computations in loops to be moved
450 outside the loop. */
451
452int flag_move_all_movables = 0;
453
454/* Nonzero forces all general induction variables in loops to be
455 strength reduced. */
456
457int flag_reduce_all_givs = 0;
458
4291d9c8
RS
459/* Nonzero for -fwritable-strings:
460 store string constants in data segment and don't uniquize them. */
461
462int flag_writable_strings = 0;
463
464/* Nonzero means don't put addresses of constant functions in registers.
465 Used for compiling the Unix kernel, where strange substitutions are
466 done on the assembly output. */
467
468int flag_no_function_cse = 0;
469
470/* Nonzero for -fomit-frame-pointer:
471 don't make a frame pointer in simple functions that don't require one. */
472
473int flag_omit_frame_pointer = 0;
474
cf440348
JL
475/* Nonzero means place each function into its own section on those platforms
476 which support arbitrary section names and unlimited numbers of sections. */
477
478int flag_function_sections = 0;
479
4291d9c8
RS
480/* Nonzero to inhibit use of define_optimization peephole opts. */
481
482int flag_no_peephole = 0;
483
43855b28
JL
484/* Nonzero allows GCC to violate some IEEE or ANSI rules regarding math
485 operations in the interest of optimization. For example it allows
486 GCC to assume arguments to sqrt are nonnegative numbers, allowing
0f41302f 487 faster code for sqrt to be generated. */
43855b28
JL
488
489int flag_fast_math = 0;
490
4291d9c8
RS
491/* Nonzero means all references through pointers are volatile. */
492
493int flag_volatile;
c6e75897
RS
494
495/* Nonzero means treat all global and extern variables as global. */
496
38d4d0c2 497int flag_volatile_global;
4291d9c8
RS
498
499/* Nonzero means just do syntax checking; don't output anything. */
500
501int flag_syntax_only = 0;
502
503/* Nonzero means to rerun cse after loop optimization. This increases
504 compilation time about 20% and picks up a few more common expressions. */
505
506static int flag_rerun_cse_after_loop;
507
508/* Nonzero for -finline-functions: ok to inline functions that look like
509 good inline candidates. */
510
511int flag_inline_functions;
512
513/* Nonzero for -fkeep-inline-functions: even if we make a function
ac2a9454 514 go inline everywhere, keep its definition around for debugging
4291d9c8
RS
515 purposes. */
516
517int flag_keep_inline_functions;
518
fadb3bc9 519/* Nonzero means that functions will not be inlined. */
4291d9c8
RS
520
521int flag_no_inline;
522
fbe912dd
BK
523/* Nonzero means that we should emit static const variables
524 regardless of whether or not optimization is turned on. */
525
526int flag_keep_static_consts = 1;
527
4291d9c8
RS
528/* Nonzero means we should be saving declaration info into a .X file. */
529
530int flag_gen_aux_info = 0;
531
f246a305
RS
532/* Specified name of aux-info file. */
533
534static char *aux_info_file_name;
535
4291d9c8
RS
536/* Nonzero means make the text shared if supported. */
537
538int flag_shared_data;
539
540/* Nonzero means schedule into delayed branch slots if supported. */
541
542int flag_delayed_branch;
543
544/* Nonzero if we are compiling pure (sharable) code.
545 Value is 1 if we are doing reasonable (i.e. simple
546 offset into offset table) pic. Value is 2 if we can
547 only perform register offsets. */
548
549int flag_pic;
550
3d195391
MS
551/* Nonzero means generate extra code for exception handling and enable
552 exception handling. */
553
554int flag_exceptions = 1;
555
2786cbad 556/* Nonzero means don't place uninitialized global data in common storage
3d195391 557 by default. */
4291d9c8
RS
558
559int flag_no_common;
560
561/* Nonzero means pretend it is OK to examine bits of target floats,
562 even if that isn't true. The resulting code will have incorrect constants,
563 but the same series of instructions that the native compiler would make. */
564
565int flag_pretend_float;
566
567/* Nonzero means change certain warnings into errors.
568 Usually these are warnings about failure to conform to some standard. */
569
570int flag_pedantic_errors = 0;
571
572/* flag_schedule_insns means schedule insns within basic blocks (before
573 local_alloc).
574 flag_schedule_insns_after_reload means schedule insns after
575 global_alloc. */
576
577int flag_schedule_insns = 0;
578int flag_schedule_insns_after_reload = 0;
579
8c660648
JL
580#ifdef HAIFA
581/* The following flags have effect only for scheduling before register
582 allocation:
583
584 flag_schedule_interblock means schedule insns accross basic blocks.
585 flag_schedule_speculative means allow speculative motion of non-load insns.
586 flag_schedule_speculative_load means allow speculative motion of some
587 load insns.
588 flag_schedule_speculative_load_dangerous allows speculative motion of more
589 load insns.
590 flag_schedule_reverse_before_reload means try to reverse original order
591 of insns (S).
592 flag_schedule_reverse_after_reload means try to reverse original order
593 of insns (R). */
594
595int flag_schedule_interblock = 1;
596int flag_schedule_speculative = 1;
597int flag_schedule_speculative_load = 0;
598int flag_schedule_speculative_load_dangerous = 0;
599int flag_schedule_reverse_before_reload = 0;
600int flag_schedule_reverse_after_reload = 0;
601
602
603/* flag_on_branch_count_reg means try to replace add-1,compare,branch tupple
604 by a cheaper branch, on a count register. */
605int flag_branch_on_count_reg;
606#endif /* HAIFA */
607
608
4291d9c8
RS
609/* -finhibit-size-directive inhibits output of .size for ELF.
610 This is used only for compiling crtstuff.c,
611 and it may be extended to other effects
612 needed for crtstuff.c on other systems. */
613int flag_inhibit_size_directive = 0;
614
9a631e8e
RS
615/* -fverbose-asm causes extra commentary information to be produced in
616 the generated assembly code (to make it more readable). This option
617 is generally only of use to those who actually need to read the
3d5cdd42
DE
618 generated assembly code (perhaps while debugging the compiler itself).
619 -fverbose-asm is the default. -fno-verbose-asm causes the extra information
620 to be omitted and is useful when comparing two assembler files. */
621
622int flag_verbose_asm = 1;
9a631e8e 623
3d5cdd42
DE
624/* -dA causes debug commentary information to be produced in
625 the generated assembly code (to make it more readable). This option
626 is generally only of use to those who actually need to read the
627 generated assembly code (perhaps while debugging the compiler itself).
628 Currently, this switch is only used by dwarfout.c; however, it is intended
629 to be a catchall for printing debug information in the assembler file. */
630
631int flag_debug_asm = 0;
9a631e8e 632
4291d9c8 633/* -fgnu-linker specifies use of the GNU linker for initializations.
d68c507d
RS
634 (Or, more generally, a linker that handles initializations.)
635 -fno-gnu-linker says that collect2 will be used. */
636#ifdef USE_COLLECT2
637int flag_gnu_linker = 0;
638#else
4291d9c8 639int flag_gnu_linker = 1;
d68c507d 640#endif
4291d9c8 641
566cdc73
MM
642/* Tag all structures with __attribute__(packed) */
643int flag_pack_struct = 0;
644
bd83d0ac
RK
645/* Emit code to check for stack overflow; also may cause large objects
646 to be allocated dynamically. */
647int flag_stack_check;
648
f602c208
RK
649/* -fcheck-memory-usage causes extra code to be generated in order to check
650 memory accesses. This is used by a detector of bad memory accesses such
651 as Checker. */
652int flag_check_memory_usage = 0;
653
654/* -fprefix-function-name causes function name to be prefixed. This
655 can be used with -fcheck-memory-usage to isolate code compiled with
656 -fcheck-memory-usage. */
657int flag_prefix_function_name = 0;
658
8c660648
JL
659int flag_regmove = 0;
660
9ae8ffe7
JL
661/* 1 if alias checking is on (by default, when -O). */
662int flag_alias_check = 0;
663
664/* 0 if pointer arguments may alias each other. True in C.
665 1 if pointer arguments may not alias each other but may alias
666 global variables.
667 2 if pointer arguments may not alias each other and may not
668 alias global variables. True in Fortran.
669 This defaults to 0 for C. */
670int flag_argument_noalias = 0;
671
4291d9c8
RS
672/* Table of language-independent -f options.
673 STRING is the option name. VARIABLE is the address of the variable.
674 ON_VALUE is the value to store in VARIABLE
675 if `-fSTRING' is seen as an option.
676 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
677
678struct { char *string; int *variable; int on_value;} f_options[] =
679{
680 {"float-store", &flag_float_store, 1},
681 {"volatile", &flag_volatile, 1},
38d4d0c2 682 {"volatile-global", &flag_volatile_global, 1},
4291d9c8
RS
683 {"defer-pop", &flag_defer_pop, 1},
684 {"omit-frame-pointer", &flag_omit_frame_pointer, 1},
685 {"cse-follow-jumps", &flag_cse_follow_jumps, 1},
8b3686ed 686 {"cse-skip-blocks", &flag_cse_skip_blocks, 1},
4291d9c8
RS
687 {"expensive-optimizations", &flag_expensive_optimizations, 1},
688 {"thread-jumps", &flag_thread_jumps, 1},
689 {"strength-reduce", &flag_strength_reduce, 1},
690 {"unroll-loops", &flag_unroll_loops, 1},
691 {"unroll-all-loops", &flag_unroll_all_loops, 1},
e5eb27e5
JL
692 {"move-all-movables", &flag_move_all_movables, 1},
693 {"reduce-all-givs", &flag_reduce_all_givs, 1},
4291d9c8
RS
694 {"writable-strings", &flag_writable_strings, 1},
695 {"peephole", &flag_no_peephole, 0},
696 {"force-mem", &flag_force_mem, 1},
697 {"force-addr", &flag_force_addr, 1},
698 {"function-cse", &flag_no_function_cse, 0},
699 {"inline-functions", &flag_inline_functions, 1},
700 {"keep-inline-functions", &flag_keep_inline_functions, 1},
701 {"inline", &flag_no_inline, 0},
fbe912dd 702 {"keep-static-consts", &flag_keep_static_consts, 1},
4291d9c8 703 {"syntax-only", &flag_syntax_only, 1},
4291d9c8
RS
704 {"shared-data", &flag_shared_data, 1},
705 {"caller-saves", &flag_caller_saves, 1},
706 {"pcc-struct-return", &flag_pcc_struct_return, 1},
958ec8ca 707 {"reg-struct-return", &flag_pcc_struct_return, 0},
4291d9c8
RS
708 {"delayed-branch", &flag_delayed_branch, 1},
709 {"rerun-cse-after-loop", &flag_rerun_cse_after_loop, 1},
710 {"pretend-float", &flag_pretend_float, 1},
711 {"schedule-insns", &flag_schedule_insns, 1},
712 {"schedule-insns2", &flag_schedule_insns_after_reload, 1},
8c660648
JL
713#ifdef HAIFA
714 {"sched-interblock",&flag_schedule_interblock, 1},
715 {"sched-spec",&flag_schedule_speculative, 1},
716 {"sched-spec-load",&flag_schedule_speculative_load, 1},
717 {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1},
718 {"sched-reverse-S",&flag_schedule_reverse_before_reload, 1},
719 {"sched-reverse-R",&flag_schedule_reverse_after_reload, 1},
720 {"branch-count-reg",&flag_branch_on_count_reg, 1},
721#endif /* HAIFA */
4291d9c8
RS
722 {"pic", &flag_pic, 1},
723 {"PIC", &flag_pic, 2},
3d195391 724 {"exceptions", &flag_exceptions, 1},
e976b8b2
MS
725 {"sjlj-exceptions", &exceptions_via_longjmp, 1},
726 {"asynchronous-exceptions", &asynchronous_exceptions, 1},
0d332add
DE
727 {"profile-arcs", &profile_arc_flag, 1},
728 {"test-coverage", &flag_test_coverage, 1},
729 {"branch-probabilities", &flag_branch_probabilities, 1},
43855b28 730 {"fast-math", &flag_fast_math, 1},
4291d9c8
RS
731 {"common", &flag_no_common, 0},
732 {"inhibit-size-directive", &flag_inhibit_size_directive, 1},
cf440348 733 {"function-sections", &flag_function_sections, 1},
9a631e8e 734 {"verbose-asm", &flag_verbose_asm, 1},
422e2ed3 735 {"gnu-linker", &flag_gnu_linker, 1},
8c660648 736 {"regmove", &flag_regmove, 1},
566cdc73 737 {"pack-struct", &flag_pack_struct, 1},
bd83d0ac 738 {"stack-check", &flag_stack_check, 1},
f602c208 739 {"bytecode", &output_bytecode, 1},
9ae8ffe7
JL
740 {"alias-check", &flag_alias_check, 1},
741 {"argument-alias", &flag_argument_noalias, 0},
742 {"argument-noalias", &flag_argument_noalias, 1},
743 {"argument-noalias-global", &flag_argument_noalias, 2},
f602c208
RK
744 {"check-memory-usage", &flag_check_memory_usage, 1},
745 {"prefix-function-name", &flag_prefix_function_name, 1}
4291d9c8 746};
b99933c7
RS
747
748/* Table of language-specific options. */
749
750char *lang_options[] =
751{
4200c8de 752 "-ansi",
8305445b 753 "-fallow-single-precision",
4200c8de 754
b99933c7
RS
755 "-fsigned-bitfields",
756 "-funsigned-bitfields",
757 "-fno-signed-bitfields",
758 "-fno-unsigned-bitfields",
4200c8de
RK
759 "-fsigned-char",
760 "-funsigned-char",
761 "-fno-signed-char",
762 "-fno-unsigned-char",
763
764 "-ftraditional",
765 "-traditional",
766 "-fnotraditional",
767 "-fno-traditional",
768
b99933c7
RS
769 "-fasm",
770 "-fno-asm",
771 "-fbuiltin",
772 "-fno-builtin",
5ae3bec5
RK
773 "-fhosted",
774 "-fno-hosted",
775 "-ffreestanding",
776 "-fno-freestanding",
4200c8de
RK
777 "-fcond-mismatch",
778 "-fno-cond-mismatch",
c7daad38 779 "-fdollars-in-identifiers",
57f0a224 780 "-fno-dollars-in-identifiers",
4200c8de
RK
781 "-fident",
782 "-fno-ident",
783 "-fshort-double",
784 "-fno-short-double",
785 "-fshort-enums",
786 "-fno-short-enums",
787
788 "-Wall",
289871f0
RK
789 "-Wbad-function-cast",
790 "-Wno-bad-function-cast",
b99933c7
RS
791 "-Wcast-qual",
792 "-Wno-cast-qual",
b99933c7
RS
793 "-Wchar-subscripts",
794 "-Wno-char-subscripts",
b99933c7
RS
795 "-Wcomment",
796 "-Wno-comment",
797 "-Wcomments",
798 "-Wno-comments",
4200c8de
RK
799 "-Wconversion",
800 "-Wno-conversion",
801 "-Wformat",
802 "-Wno-format",
b99933c7
RS
803 "-Wimport",
804 "-Wno-import",
4200c8de
RK
805 "-Wimplicit",
806 "-Wno-implicit",
5ae3bec5
RK
807 "-Wmain",
808 "-Wno-main",
f41372d4
RS
809 "-Wmissing-braces",
810 "-Wno-missing-braces",
4200c8de
RK
811 "-Wmissing-declarations",
812 "-Wno-missing-declarations",
813 "-Wmissing-prototypes",
814 "-Wno-missing-prototypes",
815 "-Wnested-externs",
816 "-Wno-nested-externs",
817 "-Wparentheses",
818 "-Wno-parentheses",
819 "-Wpointer-arith",
820 "-Wno-pointer-arith",
821 "-Wredundant-decls",
822 "-Wno-redundant-decls",
d51f9363
JM
823 "-Wsign-compare",
824 "-Wno-sign-compare",
4200c8de
RK
825 "-Wstrict-prototypes",
826 "-Wno-strict-prototypes",
827 "-Wtraditional",
828 "-Wno-traditional",
829 "-Wtrigraphs",
830 "-Wno-trigraphs",
c7710c1f
RK
831 "-Wundef",
832 "-Wno-undef",
4200c8de
RK
833 "-Wwrite-strings",
834 "-Wno-write-strings",
b99933c7 835
65faa6a4
RS
836 /* these are for obj c */
837 "-lang-objc",
838 "-gen-decls",
f5309ddf
TW
839 "-fgnu-runtime",
840 "-fno-gnu-runtime",
841 "-fnext-runtime",
842 "-fno-next-runtime",
65faa6a4
RS
843 "-Wselector",
844 "-Wno-selector",
b800a01b
KKT
845 "-Wprotocol",
846 "-Wno-protocol",
a457294f 847
2a95de17 848#include "options.h"
b99933c7
RS
849 0
850};
4291d9c8
RS
851\f
852/* Options controlling warnings */
853
854/* Don't print warning messages. -w. */
855
856int inhibit_warnings = 0;
857
858/* Print various extra warnings. -W. */
859
860int extra_warnings = 0;
861
862/* Treat warnings as errors. -Werror. */
863
864int warnings_are_errors = 0;
865
866/* Nonzero to warn about unused local variables. */
867
868int warn_unused;
869
870/* Nonzero to warn about variables used before they are initialized. */
871
872int warn_uninitialized;
873
874/* Nonzero means warn about all declarations which shadow others. */
875
876int warn_shadow;
877
878/* Warn if a switch on an enum fails to have a case for every enum value. */
879
880int warn_switch;
881
882/* Nonzero means warn about function definitions that default the return type
883 or that use a null return and have a return-type other than void. */
884
885int warn_return_type;
886
887/* Nonzero means warn about pointer casts that increase the required
888 alignment of the target type (and might therefore lead to a crash
889 due to a misaligned access). */
890
891int warn_cast_align;
892
893/* Nonzero means warn about any identifiers that match in the first N
894 characters. The value N is in `id_clash_len'. */
895
896int warn_id_clash;
b51e9c62
RK
897unsigned id_clash_len;
898
899/* Nonzero means warn about any objects definitions whose size is larger
900 than N bytes. Also want about function definitions whose returned
901 values are larger than N bytes. The value N is in `larger_than_size'. */
902
903int warn_larger_than;
904unsigned larger_than_size;
4291d9c8
RS
905
906/* Nonzero means warn if inline function is too large. */
907
908int warn_inline;
909
910/* Warn if a function returns an aggregate,
911 since there are often incompatible calling conventions for doing this. */
912
913int warn_aggregate_return;
914
915/* Likewise for -W. */
916
917struct { char *string; int *variable; int on_value;} W_options[] =
918{
919 {"unused", &warn_unused, 1},
920 {"error", &warnings_are_errors, 1},
921 {"shadow", &warn_shadow, 1},
922 {"switch", &warn_switch, 1},
4291d9c8
RS
923 {"aggregate-return", &warn_aggregate_return, 1},
924 {"cast-align", &warn_cast_align, 1},
f246a305
RS
925 {"uninitialized", &warn_uninitialized, 1},
926 {"inline", &warn_inline, 1}
4291d9c8
RS
927};
928\f
929/* Output files for assembler code (real compiler output)
930 and debugging dumps. */
931
932FILE *asm_out_file;
933FILE *aux_info_file;
934FILE *rtl_dump_file;
935FILE *jump_opt_dump_file;
936FILE *cse_dump_file;
937FILE *loop_dump_file;
938FILE *cse2_dump_file;
0d332add 939FILE *branch_prob_dump_file;
4291d9c8
RS
940FILE *flow_dump_file;
941FILE *combine_dump_file;
8c660648 942FILE *regmove_dump_file;
4291d9c8
RS
943FILE *sched_dump_file;
944FILE *local_reg_dump_file;
945FILE *global_reg_dump_file;
946FILE *sched2_dump_file;
947FILE *jump2_opt_dump_file;
948FILE *dbr_sched_dump_file;
949FILE *stack_reg_dump_file;
950
951/* Time accumulators, to count the total time spent in various passes. */
952
953int parse_time;
954int varconst_time;
955int integration_time;
956int jump_time;
957int cse_time;
958int loop_time;
959int cse2_time;
0d332add 960int branch_prob_time;
4291d9c8
RS
961int flow_time;
962int combine_time;
8c660648 963int regmove_time;
4291d9c8
RS
964int sched_time;
965int local_alloc_time;
966int global_alloc_time;
967int sched2_time;
968int dbr_sched_time;
969int shorten_branch_time;
970int stack_reg_time;
971int final_time;
972int symout_time;
973int dump_time;
974\f
975/* Return time used so far, in microseconds. */
976
977int
978get_run_time ()
979{
9580b583 980#ifndef _WIN32
4291d9c8
RS
981#ifdef USG
982 struct tms tms;
983#else
984#ifndef VMS
985 struct rusage rusage;
15f00097 986#else
4291d9c8
RS
987 struct
988 {
989 int proc_user_time;
990 int proc_system_time;
991 int child_user_time;
992 int child_system_time;
993 } vms_times;
994#endif
15f00097 995#endif
4291d9c8
RS
996#endif
997
998 if (quiet_flag)
999 return 0;
9580b583 1000#ifdef _WIN32
15f00097
RK
1001 if (clock() < 0)
1002 return 0;
1003 else
1004 return (clock() * 1000);
9580b583 1005#else /* not _WIN32 */
4291d9c8
RS
1006#ifdef USG
1007 times (&tms);
1008 return (tms.tms_utime + tms.tms_stime) * (1000000 / HZ);
1009#else
1010#ifndef VMS
1011 getrusage (0, &rusage);
1012 return (rusage.ru_utime.tv_sec * 1000000 + rusage.ru_utime.tv_usec
1013 + rusage.ru_stime.tv_sec * 1000000 + rusage.ru_stime.tv_usec);
1014#else /* VMS */
1015 times (&vms_times);
1016 return (vms_times.proc_user_time + vms_times.proc_system_time) * 10000;
1017#endif
1018#endif
eb910b5a 1019#endif
4291d9c8
RS
1020}
1021
1022#define TIMEVAR(VAR, BODY) \
1023do { int otime = get_run_time (); BODY; VAR += get_run_time () - otime; } while (0)
1024
1025void
1026print_time (str, total)
1027 char *str;
1028 int total;
1029{
1030 fprintf (stderr,
1031 "time in %s: %d.%06d\n",
1032 str, total / 1000000, total % 1000000);
1033}
1034
1035/* Count an error or warning. Return 1 if the message should be printed. */
1036
1037int
1038count_error (warningp)
1039 int warningp;
1040{
1041 if (warningp && inhibit_warnings)
1042 return 0;
1043
1044 if (warningp && !warnings_are_errors)
1045 warningcount++;
1046 else
1047 {
1048 static int warning_message = 0;
1049
1050 if (warningp && !warning_message)
1051 {
1052 fprintf (stderr, "%s: warnings being treated as errors\n", progname);
1053 warning_message = 1;
1054 }
1055 errorcount++;
1056 }
1057
1058 return 1;
1059}
1060
1061/* Print a fatal error message. NAME is the text.
1062 Also include a system error message based on `errno'. */
1063
1064void
1065pfatal_with_name (name)
1066 char *name;
1067{
1068 fprintf (stderr, "%s: ", progname);
1069 perror (name);
299846f2 1070 exit (FATAL_EXIT_CODE);
4291d9c8
RS
1071}
1072
1073void
1074fatal_io_error (name)
1075 char *name;
1076{
1077 fprintf (stderr, "%s: %s: I/O error\n", progname, name);
299846f2 1078 exit (FATAL_EXIT_CODE);
4291d9c8
RS
1079}
1080
a89b2cc4
MM
1081/* Called to give a better error message for a bad insn rather than
1082 just calling abort(). */
4291d9c8
RS
1083
1084void
a89b2cc4
MM
1085fatal_insn (message, insn)
1086 char *message;
4291d9c8
RS
1087 rtx insn;
1088{
ca695ac9
JB
1089 if (!output_bytecode)
1090 {
a89b2cc4 1091 error (message);
ca695ac9
JB
1092 debug_rtx (insn);
1093 }
4291d9c8
RS
1094 if (asm_out_file)
1095 fflush (asm_out_file);
1096 if (aux_info_file)
1097 fflush (aux_info_file);
1098 if (rtl_dump_file)
1099 fflush (rtl_dump_file);
1100 if (jump_opt_dump_file)
1101 fflush (jump_opt_dump_file);
1102 if (cse_dump_file)
1103 fflush (cse_dump_file);
1104 if (loop_dump_file)
1105 fflush (loop_dump_file);
1106 if (cse2_dump_file)
1107 fflush (cse2_dump_file);
1108 if (flow_dump_file)
1109 fflush (flow_dump_file);
1110 if (combine_dump_file)
1111 fflush (combine_dump_file);
8c660648
JL
1112 if (regmove_dump_file)
1113 fflush (regmove_dump_file);
4291d9c8
RS
1114 if (sched_dump_file)
1115 fflush (sched_dump_file);
1116 if (local_reg_dump_file)
1117 fflush (local_reg_dump_file);
1118 if (global_reg_dump_file)
1119 fflush (global_reg_dump_file);
1120 if (sched2_dump_file)
1121 fflush (sched2_dump_file);
1122 if (jump2_opt_dump_file)
1123 fflush (jump2_opt_dump_file);
1124 if (dbr_sched_dump_file)
1125 fflush (dbr_sched_dump_file);
1126 if (stack_reg_dump_file)
1127 fflush (stack_reg_dump_file);
1902f7fd
MM
1128 fflush (stdout);
1129 fflush (stderr);
4291d9c8
RS
1130 abort ();
1131}
1132
a89b2cc4
MM
1133/* Called to give a better error message when we don't have an insn to match
1134 what we are looking for or if the insn's constraints aren't satisfied,
1135 rather than just calling abort(). */
1136
1137void
1138fatal_insn_not_found (insn)
1139 rtx insn;
1140{
1141 if (INSN_CODE (insn) < 0)
1142 fatal_insn ("internal error--unrecognizable insn:", insn);
1143 else
1144 fatal_insn ("internal error--insn does not satisfy its constraints:", insn);
1145}
1146
4291d9c8
RS
1147/* This is the default decl_printable_name function. */
1148
1149static char *
a1d7ffe3 1150decl_name (decl, verbosity)
4291d9c8 1151 tree decl;
a1d7ffe3 1152 int verbosity;
4291d9c8
RS
1153{
1154 return IDENTIFIER_POINTER (DECL_NAME (decl));
1155}
1156\f
1157static int need_error_newline;
1158
1159/* Function of last error message;
1160 more generally, function such that if next error message is in it
1161 then we don't have to mention the function name. */
1162static tree last_error_function = NULL;
1163
1164/* Used to detect when input_file_stack has changed since last described. */
1165static int last_error_tick;
1166
1167/* Called when the start of a function definition is parsed,
1168 this function prints on stderr the name of the function. */
1169
1170void
1171announce_function (decl)
1172 tree decl;
1173{
1174 if (! quiet_flag)
1175 {
4291d9c8
RS
1176 if (rtl_dump_and_exit)
1177 fprintf (stderr, "%s ", IDENTIFIER_POINTER (DECL_NAME (decl)));
1178 else
a1d7ffe3 1179 fprintf (stderr, " %s", (*decl_printable_name) (decl, 2));
4291d9c8
RS
1180 fflush (stderr);
1181 need_error_newline = 1;
1182 last_error_function = current_function_decl;
1183 }
1184}
1185
b64e9948
PB
1186/* The default function to print out name of current function that caused
1187 an error. */
4291d9c8
RS
1188
1189void
b64e9948 1190default_print_error_function (file)
4291d9c8
RS
1191 char *file;
1192{
4291d9c8
RS
1193 if (last_error_function != current_function_decl)
1194 {
1195 char *kind = "function";
1196 if (current_function_decl != 0
1197 && TREE_CODE (TREE_TYPE (current_function_decl)) == METHOD_TYPE)
1198 kind = "method";
1199
1200 if (file)
1201 fprintf (stderr, "%s: ", file);
1202
1203 if (current_function_decl == NULL)
1204 fprintf (stderr, "At top level:\n");
1205 else
1206 {
a1d7ffe3 1207 char *name = (*decl_printable_name) (current_function_decl, 2);
4291d9c8
RS
1208 fprintf (stderr, "In %s `%s':\n", kind, name);
1209 }
1210
1211 last_error_function = current_function_decl;
1212 }
b64e9948
PB
1213}
1214
1215/* Called by report_error_function to print out function name.
0f41302f 1216 * Default may be overridden by language front-ends. */
b64e9948 1217
0f41302f 1218void (*print_error_function) PROTO((char *)) = default_print_error_function;
b64e9948
PB
1219
1220/* Prints out, if necessary, the name of the current function
1221 that caused an error. Called from all error and warning functions. */
1222
1223void
1224report_error_function (file)
1225 char *file;
1226{
1227 struct file_stack *p;
1228
1229 if (need_error_newline)
1230 {
1231 fprintf (stderr, "\n");
1232 need_error_newline = 0;
1233 }
1234
1235 (*print_error_function) (file);
1236
4291d9c8 1237 if (input_file_stack && input_file_stack->next != 0
2efc92ed
RK
1238 && input_file_stack_tick != last_error_tick
1239 && file == input_filename)
4291d9c8
RS
1240 {
1241 fprintf (stderr, "In file included");
1242 for (p = input_file_stack->next; p; p = p->next)
1243 {
1244 fprintf (stderr, " from %s:%d", p->name, p->line);
1245 if (p->next)
e5301904 1246 fprintf (stderr, ",\n ");
4291d9c8
RS
1247 }
1248 fprintf (stderr, ":\n");
1249 last_error_tick = input_file_stack_tick;
1250 }
1251}
eb711c86
RK
1252\f
1253/* Print a message. */
4291d9c8 1254
eb711c86
RK
1255static void
1256vmessage (prefix, s, ap)
1257 char *prefix;
4291d9c8 1258 char *s;
eb711c86 1259 va_list ap;
4291d9c8 1260{
eb711c86
RK
1261 if (prefix)
1262 fprintf (stderr, "%s: ", prefix);
1263
1264#ifdef HAVE_VPRINTF
1265 vfprintf (stderr, s, ap);
1266#else
1267 {
1268 HOST_WIDE_INT v1 = va_arg(ap, HOST_WIDE_INT);
1269 HOST_WIDE_INT v2 = va_arg(ap, HOST_WIDE_INT);
1270 HOST_WIDE_INT v3 = va_arg(ap, HOST_WIDE_INT);
a4326b4d
RK
1271 HOST_WIDE_INT v4 = va_arg(ap, HOST_WIDE_INT);
1272 fprintf (stderr, s, v1, v2, v3, v4);
eb711c86
RK
1273 }
1274#endif
4291d9c8
RS
1275}
1276
eb711c86 1277/* Print a message relevant to line LINE of file FILE. */
4291d9c8 1278
eb711c86
RK
1279static void
1280v_message_with_file_and_line (file, line, prefix, s, ap)
4291d9c8
RS
1281 char *file;
1282 int line;
eb711c86 1283 char *prefix;
4291d9c8 1284 char *s;
eb711c86 1285 va_list ap;
4291d9c8 1286{
4291d9c8
RS
1287 if (file)
1288 fprintf (stderr, "%s:%d: ", file, line);
1289 else
1290 fprintf (stderr, "%s: ", progname);
d78c6ad5 1291
eb711c86
RK
1292 vmessage (prefix, s, ap);
1293 fputc ('\n', stderr);
4291d9c8
RS
1294}
1295
eb711c86 1296/* Print a message relevant to the given DECL. */
4291d9c8 1297
eb711c86
RK
1298static void
1299v_message_with_decl (decl, prefix, s, ap)
4291d9c8 1300 tree decl;
eb711c86 1301 char *prefix;
4291d9c8 1302 char *s;
eb711c86 1303 va_list ap;
4291d9c8 1304{
a1d7ffe3 1305 char *n, *p;
4291d9c8
RS
1306
1307 fprintf (stderr, "%s:%d: ",
1308 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
1309
eb711c86
RK
1310 if (prefix)
1311 fprintf (stderr, "%s: ", prefix);
1312
1313 /* Do magic to get around lack of varargs support for insertion
1314 of arguments into existing list. We know that the decl is first;
1315 we ass_u_me that it will be printed with "%s". */
1316
1317 for (p = s; *p; ++p)
1318 {
1319 if (*p == '%')
1320 {
1321 if (*(p + 1) == '%')
1322 ++p;
1323 else
1324 break;
1325 }
1326 }
1327
cb039f8a
RK
1328 if (p > s) /* Print the left-hand substring. */
1329 {
1330 char fmt[sizeof "%.255s"];
1331 long width = p - s;
1332
1333 if (width > 255L) width = 255L; /* arbitrary */
1334 sprintf (fmt, "%%.%lds", width);
1335 fprintf (stderr, fmt, s);
1336 }
eb711c86 1337
cb039f8a 1338 if (*p == '%') /* Print the name. */
eb711c86
RK
1339 {
1340 char *n = (DECL_NAME (decl)
a1d7ffe3 1341 ? (*decl_printable_name) (decl, 2)
eb711c86
RK
1342 : "((anonymous))");
1343 fputs (n, stderr);
1344 while (*p)
1345 {
1346 ++p;
1347 if (isalpha (*(p - 1) & 0xFF))
1348 break;
1349 }
1350 }
1351
cb039f8a 1352 if (*p) /* Print the rest of the message. */
eb711c86
RK
1353 vmessage ((char *)NULL, p, ap);
1354
1355 fputc ('\n', stderr);
4291d9c8
RS
1356}
1357
eb711c86 1358/* Figure file and line of the given INSN. */
4291d9c8 1359
eb711c86
RK
1360static void
1361file_and_line_for_asm (insn, pfile, pline)
4291d9c8 1362 rtx insn;
eb711c86
RK
1363 char **pfile;
1364 int *pline;
4291d9c8 1365{
4291d9c8
RS
1366 rtx body = PATTERN (insn);
1367 rtx asmop;
1368
1369 /* Find the (or one of the) ASM_OPERANDS in the insn. */
1370 if (GET_CODE (body) == SET && GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
1371 asmop = SET_SRC (body);
1372 else if (GET_CODE (body) == ASM_OPERANDS)
1373 asmop = body;
1374 else if (GET_CODE (body) == PARALLEL
1375 && GET_CODE (XVECEXP (body, 0, 0)) == SET)
1376 asmop = SET_SRC (XVECEXP (body, 0, 0));
1377 else if (GET_CODE (body) == PARALLEL
1378 && GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
1379 asmop = XVECEXP (body, 0, 0);
eb711c86
RK
1380 else
1381 asmop = NULL;
1382
1383 if (asmop)
1384 {
1385 *pfile = ASM_OPERANDS_SOURCE_FILE (asmop);
1386 *pline = ASM_OPERANDS_SOURCE_LINE (asmop);
1387 }
1388 else
1389 {
1390 *pfile = input_filename;
1391 *pline = lineno;
1392 }
1393}
4291d9c8 1394
eb711c86 1395/* Report an error at line LINE of file FILE. */
4291d9c8 1396
eb711c86
RK
1397static void
1398v_error_with_file_and_line (file, line, s, ap)
1399 char *file;
1400 int line;
1401 char *s;
1402 va_list ap;
1403{
1404 count_error (0);
1405 report_error_function (file);
1406 v_message_with_file_and_line (file, line, (char *)NULL, s, ap);
d78c6ad5
RK
1407}
1408
1409void
e0e2a8da 1410error_with_file_and_line VPROTO((char *file, int line, char *s, ...))
d78c6ad5 1411{
e0e2a8da 1412#ifndef __STDC__
eb711c86
RK
1413 char *file;
1414 int line;
1415 char *s;
e0e2a8da
RK
1416#endif
1417 va_list ap;
1418
1419 VA_START (ap, s);
eb711c86 1420
e0e2a8da 1421#ifndef __STDC__
eb711c86
RK
1422 file = va_arg (ap, char *);
1423 line = va_arg (ap, int);
1424 s = va_arg (ap, char *);
e0e2a8da
RK
1425#endif
1426
eb711c86
RK
1427 v_error_with_file_and_line (file, line, s, ap);
1428 va_end (ap);
4291d9c8
RS
1429}
1430
eb711c86
RK
1431/* Report an error at the declaration DECL.
1432 S is a format string which uses %s to substitute the declaration
1433 name; subsequent substitutions are a la printf. */
1434
1435static void
1436v_error_with_decl (decl, s, ap)
1437 tree decl;
1438 char *s;
1439 va_list ap;
1440{
1441 count_error (0);
1442 report_error_function (DECL_SOURCE_FILE (decl));
1443 v_message_with_decl (decl, (char *)NULL, s, ap);
1444}
4291d9c8
RS
1445
1446void
e0e2a8da 1447error_with_decl VPROTO((tree decl, char *s, ...))
eb711c86 1448{
e0e2a8da 1449#ifndef __STDC__
eb711c86
RK
1450 tree decl;
1451 char *s;
e0e2a8da
RK
1452#endif
1453 va_list ap;
eb711c86 1454
e0e2a8da
RK
1455 VA_START (ap, s);
1456
1457#ifndef __STDC__
eb711c86
RK
1458 decl = va_arg (ap, tree);
1459 s = va_arg (ap, char *);
e0e2a8da
RK
1460#endif
1461
eb711c86
RK
1462 v_error_with_decl (decl, s, ap);
1463 va_end (ap);
1464}
1465
1466/* Report an error at the line number of the insn INSN.
1467 This is used only when INSN is an `asm' with operands,
1468 and each ASM_OPERANDS records its own source file and line. */
1469
1470static void
1471v_error_for_asm (insn, s, ap)
1472 rtx insn;
4291d9c8 1473 char *s;
eb711c86 1474 va_list ap;
4291d9c8 1475{
eb711c86
RK
1476 char *file;
1477 int line;
4291d9c8 1478
eb711c86
RK
1479 count_error (0);
1480 file_and_line_for_asm (insn, &file, &line);
4291d9c8 1481 report_error_function (file);
eb711c86
RK
1482 v_message_with_file_and_line (file, line, (char *)NULL, s, ap);
1483}
4291d9c8 1484
eb711c86 1485void
e0e2a8da 1486error_for_asm VPROTO((rtx insn, char *s, ...))
eb711c86 1487{
e0e2a8da 1488#ifndef __STDC__
eb711c86
RK
1489 rtx insn;
1490 char *s;
e0e2a8da
RK
1491#endif
1492 va_list ap;
eb711c86 1493
e0e2a8da
RK
1494 VA_START (ap, s);
1495
1496#ifndef __STDC__
eb711c86
RK
1497 insn = va_arg (ap, rtx);
1498 s = va_arg (ap, char *);
e0e2a8da
RK
1499#endif
1500
eb711c86
RK
1501 v_error_for_asm (insn, s, ap);
1502 va_end (ap);
4291d9c8
RS
1503}
1504
eb711c86 1505/* Report an error at the current line number. */
4291d9c8 1506
eb711c86
RK
1507static void
1508verror (s, ap)
4291d9c8 1509 char *s;
eb711c86 1510 va_list ap;
4291d9c8 1511{
eb711c86 1512 v_error_with_file_and_line (input_filename, lineno, s, ap);
4291d9c8
RS
1513}
1514
eb711c86 1515void
e0e2a8da 1516error VPROTO((char *s, ...))
eb711c86 1517{
e0e2a8da 1518#ifndef __STDC__
eb711c86 1519 char *s;
e0e2a8da
RK
1520#endif
1521 va_list ap;
1522
1523 VA_START (ap, s);
eb711c86 1524
e0e2a8da 1525#ifndef __STDC__
eb711c86 1526 s = va_arg (ap, char *);
e0e2a8da
RK
1527#endif
1528
eb711c86
RK
1529 verror (s, ap);
1530 va_end (ap);
1531}
1532
1533/* Report a fatal error at the current line number. */
1534
1535static void
1536vfatal (s, ap)
1537 char *s;
1538 va_list ap;
1539{
1540 verror (s, ap);
299846f2 1541 exit (FATAL_EXIT_CODE);
eb711c86 1542}
4291d9c8
RS
1543
1544void
e0e2a8da 1545fatal VPROTO((char *s, ...))
eb711c86 1546{
e0e2a8da 1547#ifndef __STDC__
eb711c86 1548 char *s;
e0e2a8da
RK
1549#endif
1550 va_list ap;
1551
1552 VA_START (ap, s);
eb711c86 1553
e0e2a8da 1554#ifndef __STDC__
eb711c86 1555 s = va_arg (ap, char *);
e0e2a8da
RK
1556#endif
1557
eb711c86
RK
1558 vfatal (s, ap);
1559 va_end (ap);
1560}
1561
1562/* Report a warning at line LINE of file FILE. */
1563
1564static void
1565v_warning_with_file_and_line (file, line, s, ap)
1566 char *file;
1567 int line;
4291d9c8 1568 char *s;
eb711c86 1569 va_list ap;
4291d9c8 1570{
eb711c86
RK
1571 if (count_error (1))
1572 {
1573 report_error_function (file);
1574 v_message_with_file_and_line (file, line, "warning", s, ap);
1575 }
1576}
4291d9c8 1577
eb711c86 1578void
e0e2a8da 1579warning_with_file_and_line VPROTO((char *file, int line, char *s, ...))
eb711c86 1580{
e0e2a8da 1581#ifndef __STDC__
eb711c86
RK
1582 char *file;
1583 int line;
1584 char *s;
e0e2a8da
RK
1585#endif
1586 va_list ap;
1587
1588 VA_START (ap, s);
eb711c86 1589
e0e2a8da 1590#ifndef __STDC__
eb711c86
RK
1591 file = va_arg (ap, char *);
1592 line = va_arg (ap, int);
1593 s = va_arg (ap, char *);
e0e2a8da
RK
1594#endif
1595
eb711c86
RK
1596 v_warning_with_file_and_line (file, line, s, ap);
1597 va_end (ap);
1598}
4291d9c8 1599
eb711c86
RK
1600/* Report a warning at the declaration DECL.
1601 S is a format string which uses %s to substitute the declaration
1602 name; subsequent substitutions are a la printf. */
4291d9c8 1603
eb711c86
RK
1604static void
1605v_warning_with_decl (decl, s, ap)
1606 tree decl;
1607 char *s;
1608 va_list ap;
1609{
1610 if (count_error (1))
1611 {
1612 report_error_function (DECL_SOURCE_FILE (decl));
1613 v_message_with_decl (decl, "warning", s, ap);
1614 }
1615}
4291d9c8 1616
eb711c86 1617void
e0e2a8da 1618warning_with_decl VPROTO((tree decl, char *s, ...))
eb711c86 1619{
e0e2a8da 1620#ifndef __STDC__
eb711c86
RK
1621 tree decl;
1622 char *s;
e0e2a8da
RK
1623#endif
1624 va_list ap;
eb711c86 1625
e0e2a8da
RK
1626 VA_START (ap, s);
1627
1628#ifndef __STDC__
eb711c86
RK
1629 decl = va_arg (ap, tree);
1630 s = va_arg (ap, char *);
e0e2a8da
RK
1631#endif
1632
eb711c86
RK
1633 v_warning_with_decl (decl, s, ap);
1634 va_end (ap);
4291d9c8
RS
1635}
1636
1637/* Report a warning at the line number of the insn INSN.
4291d9c8
RS
1638 This is used only when INSN is an `asm' with operands,
1639 and each ASM_OPERANDS records its own source file and line. */
1640
eb711c86
RK
1641static void
1642v_warning_for_asm (insn, s, ap)
4291d9c8
RS
1643 rtx insn;
1644 char *s;
eb711c86 1645 va_list ap;
4291d9c8 1646{
eb711c86
RK
1647 if (count_error (1))
1648 {
1649 char *file;
1650 int line;
4291d9c8 1651
eb711c86
RK
1652 file_and_line_for_asm (insn, &file, &line);
1653 report_error_function (file);
1654 v_message_with_file_and_line (file, line, "warning", s, ap);
1655 }
1656}
4291d9c8 1657
eb711c86 1658void
e0e2a8da 1659warning_for_asm VPROTO((rtx insn, char *s, ...))
eb711c86 1660{
e0e2a8da 1661#ifndef __STDC__
eb711c86
RK
1662 rtx insn;
1663 char *s;
e0e2a8da
RK
1664#endif
1665 va_list ap;
1666
1667 VA_START (ap, s);
eb711c86 1668
e0e2a8da 1669#ifndef __STDC__
eb711c86
RK
1670 insn = va_arg (ap, rtx);
1671 s = va_arg (ap, char *);
e0e2a8da
RK
1672#endif
1673
eb711c86
RK
1674 v_warning_for_asm (insn, s, ap);
1675 va_end (ap);
1676}
4291d9c8 1677
eb711c86
RK
1678/* Report a warning at the current line number. */
1679
1680static void
1681vwarning (s, ap)
1682 char *s;
1683 va_list ap;
1684{
1685 v_warning_with_file_and_line (input_filename, lineno, s, ap);
4291d9c8 1686}
eb711c86
RK
1687
1688void
e0e2a8da 1689warning VPROTO((char *s, ...))
eb711c86 1690{
e0e2a8da 1691#ifndef __STDC__
eb711c86 1692 char *s;
e0e2a8da
RK
1693#endif
1694 va_list ap;
1695
1696 VA_START (ap, s);
eb711c86 1697
e0e2a8da 1698#ifndef __STDC__
eb711c86 1699 s = va_arg (ap, char *);
e0e2a8da
RK
1700#endif
1701
eb711c86
RK
1702 vwarning (s, ap);
1703 va_end (ap);
1704}
1705
4291d9c8
RS
1706/* These functions issue either warnings or errors depending on
1707 -pedantic-errors. */
1708
eb711c86
RK
1709static void
1710vpedwarn (s, ap)
4291d9c8 1711 char *s;
eb711c86 1712 va_list ap;
4291d9c8
RS
1713{
1714 if (flag_pedantic_errors)
eb711c86 1715 verror (s, ap);
4291d9c8 1716 else
eb711c86 1717 vwarning (s, ap);
4291d9c8
RS
1718}
1719
1720void
e0e2a8da 1721pedwarn VPROTO((char *s, ...))
eb711c86 1722{
e0e2a8da 1723#ifndef __STDC__
eb711c86 1724 char *s;
e0e2a8da
RK
1725#endif
1726 va_list ap;
1727
1728 VA_START (ap, s);
eb711c86 1729
e0e2a8da 1730#ifndef __STDC__
eb711c86 1731 s = va_arg (ap, char *);
e0e2a8da
RK
1732#endif
1733
eb711c86
RK
1734 vpedwarn (s, ap);
1735 va_end (ap);
1736}
1737
1738static void
1739v_pedwarn_with_decl (decl, s, ap)
4291d9c8
RS
1740 tree decl;
1741 char *s;
eb711c86 1742 va_list ap;
4291d9c8 1743{
1554cdf5
DE
1744 /* We don't want -pedantic-errors to cause the compilation to fail from
1745 "errors" in system header files. Sometimes fixincludes can't fix what's
1746 broken (eg: unsigned char bitfields - fixing it may change the alignment
1747 which will cause programs to mysteriously fail because the C library
22d74562
DE
1748 or kernel uses the original layout). There's no point in issuing a
1749 warning either, it's just unnecessary noise. */
1554cdf5 1750
22d74562
DE
1751 if (! DECL_IN_SYSTEM_HEADER (decl))
1752 {
1753 if (flag_pedantic_errors)
1754 v_error_with_decl (decl, s, ap);
1755 else
1756 v_warning_with_decl (decl, s, ap);
1757 }
4291d9c8
RS
1758}
1759
1760void
e0e2a8da 1761pedwarn_with_decl VPROTO((tree decl, char *s, ...))
eb711c86 1762{
e0e2a8da 1763#ifndef __STDC__
eb711c86
RK
1764 tree decl;
1765 char *s;
e0e2a8da
RK
1766#endif
1767 va_list ap;
eb711c86 1768
e0e2a8da
RK
1769 VA_START (ap, s);
1770
1771#ifndef __STDC__
eb711c86
RK
1772 decl = va_arg (ap, tree);
1773 s = va_arg (ap, char *);
e0e2a8da
RK
1774#endif
1775
eb711c86
RK
1776 v_pedwarn_with_decl (decl, s, ap);
1777 va_end (ap);
1778}
1779
1780static void
1781v_pedwarn_with_file_and_line (file, line, s, ap)
4291d9c8
RS
1782 char *file;
1783 int line;
1784 char *s;
eb711c86 1785 va_list ap;
4291d9c8
RS
1786{
1787 if (flag_pedantic_errors)
eb711c86 1788 v_error_with_file_and_line (file, line, s, ap);
4291d9c8 1789 else
eb711c86 1790 v_warning_with_file_and_line (file, line, s, ap);
4291d9c8
RS
1791}
1792
4291d9c8 1793void
e0e2a8da 1794pedwarn_with_file_and_line VPROTO((char *file, int line, char *s, ...))
eb711c86 1795{
e0e2a8da 1796#ifndef __STDC__
eb711c86
RK
1797 char *file;
1798 int line;
1799 char *s;
e0e2a8da
RK
1800#endif
1801 va_list ap;
eb711c86 1802
e0e2a8da
RK
1803 VA_START (ap, s);
1804
1805#ifndef __STDC__
eb711c86
RK
1806 file = va_arg (ap, char *);
1807 line = va_arg (ap, int);
1808 s = va_arg (ap, char *);
e0e2a8da
RK
1809#endif
1810
eb711c86
RK
1811 v_pedwarn_with_file_and_line (file, line, s, ap);
1812 va_end (ap);
1813}
1814
1815/* Apologize for not implementing some feature. */
1816
1817static void
1818vsorry (s, ap)
4291d9c8 1819 char *s;
eb711c86 1820 va_list ap;
4291d9c8
RS
1821{
1822 sorrycount++;
1823 if (input_filename)
1824 fprintf (stderr, "%s:%d: ", input_filename, lineno);
1825 else
1826 fprintf (stderr, "%s: ", progname);
eb711c86
RK
1827 vmessage ("sorry, not implemented", s, ap);
1828 fputc ('\n', stderr);
1829}
4291d9c8 1830
eb711c86 1831void
e0e2a8da 1832sorry VPROTO((char *s, ...))
eb711c86 1833{
e0e2a8da 1834#ifndef __STDC__
eb711c86 1835 char *s;
e0e2a8da
RK
1836#endif
1837 va_list ap;
1838
1839 VA_START (ap, s);
eb711c86 1840
e0e2a8da 1841#ifndef __STDC__
eb711c86 1842 s = va_arg (ap, char *);
e0e2a8da
RK
1843#endif
1844
eb711c86
RK
1845 vsorry (s, ap);
1846 va_end (ap);
4291d9c8
RS
1847}
1848
eb711c86 1849/* Apologize for not implementing some feature, then quit. */
4291d9c8 1850
eb711c86
RK
1851static void
1852v_really_sorry (s, ap)
4291d9c8 1853 char *s;
eb711c86 1854 va_list ap;
4291d9c8 1855{
eb711c86 1856 sorrycount++;
4291d9c8
RS
1857 if (input_filename)
1858 fprintf (stderr, "%s:%d: ", input_filename, lineno);
1859 else
c10afc44 1860 fprintf (stderr, "%s: ", progname);
eb711c86 1861 vmessage ("sorry, not implemented", s, ap);
4291d9c8
RS
1862 fatal (" (fatal)\n");
1863}
eb711c86
RK
1864
1865void
e0e2a8da 1866really_sorry VPROTO((char *s, ...))
eb711c86 1867{
e0e2a8da 1868#ifndef __STDC__
eb711c86 1869 char *s;
e0e2a8da
RK
1870#endif
1871 va_list ap;
1872
1873 VA_START (ap, s);
eb711c86 1874
e0e2a8da 1875#ifndef __STDC__
eb711c86 1876 s = va_arg (ap, char *);
e0e2a8da
RK
1877#endif
1878
eb711c86
RK
1879 v_really_sorry (s, ap);
1880 va_end (ap);
1881}
4291d9c8
RS
1882\f
1883/* More 'friendly' abort that prints the line and file.
1884 config.h can #define abort fancy_abort if you like that sort of thing.
1885
1886 I don't think this is actually a good idea.
1887 Other sorts of crashes will look a certain way.
1888 It is a good thing if crashes from calling abort look the same way.
1889 -- RMS */
1890
1891void
1892fancy_abort ()
1893{
1894 fatal ("internal gcc abort");
1895}
1896
1897/* This calls abort and is used to avoid problems when abort if a macro.
1898 It is used when we need to pass the address of abort. */
1899
1900void
1901do_abort ()
1902{
1903 abort ();
1904}
1905
1906/* When `malloc.c' is compiled with `rcheck' defined,
1907 it calls this function to report clobberage. */
1908
1909void
1910botch (s)
1911{
1912 abort ();
1913}
1914
1915/* Same as `malloc' but report error if no memory available. */
1916
4b980e20 1917char *
4291d9c8
RS
1918xmalloc (size)
1919 unsigned size;
1920{
4b980e20 1921 register char *value = (char *) malloc (size);
809d135d 1922 if (value == 0 && size != 0)
4291d9c8
RS
1923 fatal ("virtual memory exhausted");
1924 return value;
1925}
1926
1927/* Same as `realloc' but report error if no memory available. */
1928
4b980e20 1929char *
4291d9c8
RS
1930xrealloc (ptr, size)
1931 char *ptr;
1932 int size;
1933{
4b980e20 1934 char *result = (char *) realloc (ptr, size);
4291d9c8
RS
1935 if (!result)
1936 fatal ("virtual memory exhausted");
1937 return result;
1938}
3e386b9e
RK
1939
1940/* Same as `strdup' but report error if no memory available. */
1941
1942char *
1943xstrdup (s)
1944 register char *s;
1945{
1946 register char *result = (char *) malloc (strlen (s) + 1);
1947
1948 if (! result)
1949 fatal ("virtual memory exhausted");
1950 strcpy (result, s);
1951 return result;
1952}
4291d9c8
RS
1953\f
1954/* Return the logarithm of X, base 2, considering X unsigned,
37366632
RK
1955 if X is a power of 2. Otherwise, returns -1.
1956
1957 This should be used via the `exact_log2' macro. */
4291d9c8
RS
1958
1959int
37366632
RK
1960exact_log2_wide (x)
1961 register unsigned HOST_WIDE_INT x;
4291d9c8
RS
1962{
1963 register int log = 0;
1964 /* Test for 0 or a power of 2. */
1965 if (x == 0 || x != (x & -x))
1966 return -1;
1967 while ((x >>= 1) != 0)
1968 log++;
1969 return log;
1970}
1971
1972/* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
37366632
RK
1973 If X is 0, return -1.
1974
1975 This should be used via the floor_log2 macro. */
4291d9c8
RS
1976
1977int
37366632
RK
1978floor_log2_wide (x)
1979 register unsigned HOST_WIDE_INT x;
4291d9c8
RS
1980{
1981 register int log = -1;
1982 while (x != 0)
1983 log++,
1984 x >>= 1;
1985 return log;
1986}
1987
3bbfa296 1988static int float_handler_set;
4291d9c8
RS
1989int float_handled;
1990jmp_buf float_handler;
1991
3bbfa296
RK
1992/* Signals actually come here. */
1993
1994static void
1995float_signal (signo)
1996 /* If this is missing, some compilers complain. */
1997 int signo;
1998{
1999 if (float_handled == 0)
2000 abort ();
2001#if defined (USG) || defined (hpux)
2002 signal (SIGFPE, float_signal); /* re-enable the signal catcher */
2003#endif
2004 float_handled = 0;
2005 signal (SIGFPE, float_signal);
2006 longjmp (float_handler, 1);
2007}
2008
4291d9c8
RS
2009/* Specify where to longjmp to when a floating arithmetic error happens.
2010 If HANDLER is 0, it means don't handle the errors any more. */
2011
2012void
2013set_float_handler (handler)
2014 jmp_buf handler;
2015{
2016 float_handled = (handler != 0);
2017 if (handler)
4c9a05bc 2018 bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler));
3bbfa296
RK
2019
2020 if (float_handled && ! float_handler_set)
2021 {
2022 signal (SIGFPE, float_signal);
2023 float_handler_set = 1;
2024 }
4291d9c8
RS
2025}
2026
bff4b641
RS
2027/* Specify, in HANDLER, where to longjmp to when a floating arithmetic
2028 error happens, pushing the previous specification into OLD_HANDLER.
2029 Return an indication of whether there was a previous handler in effect. */
2030
2031int
2032push_float_handler (handler, old_handler)
dc2b15dc 2033 jmp_buf handler, old_handler;
bff4b641
RS
2034{
2035 int was_handled = float_handled;
2036
2037 float_handled = 1;
2038 if (was_handled)
4c9a05bc
RK
2039 bcopy ((char *) float_handler, (char *) old_handler,
2040 sizeof (float_handler));
2041
2042 bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler));
bff4b641
RS
2043 return was_handled;
2044}
2045
2046/* Restore the previous specification of whether and where to longjmp to
2047 when a floating arithmetic error happens. */
2048
2049void
2050pop_float_handler (handled, handler)
2051 int handled;
2052 jmp_buf handler;
2053{
2054 float_handled = handled;
2055 if (handled)
4c9a05bc 2056 bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler));
bff4b641
RS
2057}
2058
4291d9c8
RS
2059/* Handler for SIGPIPE. */
2060
2061static void
2062pipe_closed (signo)
2063 /* If this is missing, some compilers complain. */
2064 int signo;
2065{
2066 fatal ("output pipe has been closed");
2067}
2068
2069/* Strip off a legitimate source ending from the input string NAME of
c62bdc79
RK
2070 length LEN. Rather than having to know the names used by all of
2071 our front ends, we strip off an ending of a period followed by one,
2072 two, or three characters. */
4291d9c8
RS
2073
2074void
2075strip_off_ending (name, len)
2076 char *name;
2077 int len;
2078{
c62bdc79
RK
2079 if (len > 2 && name[len - 2] == '.')
2080 name[len - 2] = '\0';
2081 else if (len > 3 && name[len - 3] == '.')
2082 name[len - 3] = '\0';
2083 else if (len > 4 && name[len - 4] == '.')
2084 name[len - 4] = '\0';
4291d9c8
RS
2085}
2086
7dce5088 2087/* Output a quoted string. */
0f41302f 2088
7dce5088
PE
2089void
2090output_quoted_string (asm_file, string)
2091 FILE *asm_file;
2092 char *string;
2093{
2094 char c;
2095
2096 putc ('\"', asm_file);
2097 while ((c = *string++) != 0)
2098 {
2099 if (c == '\"' || c == '\\')
2100 putc ('\\', asm_file);
2101 putc (c, asm_file);
2102 }
2103 putc ('\"', asm_file);
2104}
2105
4291d9c8
RS
2106/* Output a file name in the form wanted by System V. */
2107
2108void
2109output_file_directive (asm_file, input_name)
2110 FILE *asm_file;
2111 char *input_name;
2112{
2113 int len = strlen (input_name);
2114 char *na = input_name + len;
2115
2116 /* NA gets INPUT_NAME sans directory names. */
2117 while (na > input_name)
2118 {
2119 if (na[-1] == '/')
2120 break;
2121 na--;
2122 }
2123
2124#ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
2125 ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file, na);
2126#else
2127#ifdef ASM_OUTPUT_SOURCE_FILENAME
2128 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
2129#else
7dce5088
PE
2130 fprintf (asm_file, "\t.file\t");
2131 output_quoted_string (asm_file, na);
2132 fputc ('\n', asm_file);
4291d9c8
RS
2133#endif
2134#endif
2135}
2136\f
0f41302f
MS
2137/* Routine to build language identifier for object file. */
2138
d0d4af87
MS
2139static void
2140output_lang_identify (asm_out_file)
2141 FILE *asm_out_file;
2142{
2143 int len = strlen (lang_identify ()) + sizeof ("__gnu_compiled_") + 1;
2144 char *s = (char *) alloca (len);
2145 sprintf (s, "__gnu_compiled_%s", lang_identify ());
2146 ASM_OUTPUT_LABEL (asm_out_file, s);
2147}
2148
dfe1a916 2149/* Routine to open a dump file. */
0f41302f 2150
dfe1a916
DE
2151static FILE *
2152open_dump_file (base_name, suffix)
2153 char *base_name;
2154 char *suffix;
2155{
2156 FILE *f;
2157 char *dumpname = (char *) alloca (strlen (base_name) + strlen (suffix) + 1);
2158
2159 strcpy (dumpname, base_name);
2160 strcat (dumpname, suffix);
2161 f = fopen (dumpname, "w");
2162 if (f == 0)
2163 pfatal_with_name (dumpname);
2164 return f;
2165}
2166
4291d9c8
RS
2167/* Compile an entire file of output from cpp, named NAME.
2168 Write a file of assembly output and various debugging dumps. */
2169
2170static void
2171compile_file (name)
2172 char *name;
2173{
2174 tree globals;
2175 int start_time;
4291d9c8
RS
2176
2177 int name_specified = name != 0;
2178
2179 if (dump_base_name == 0)
2180 dump_base_name = name ? name : "gccdump";
4291d9c8
RS
2181
2182 parse_time = 0;
2183 varconst_time = 0;
2184 integration_time = 0;
2185 jump_time = 0;
2186 cse_time = 0;
2187 loop_time = 0;
2188 cse2_time = 0;
0d332add 2189 branch_prob_time = 0;
4291d9c8
RS
2190 flow_time = 0;
2191 combine_time = 0;
8c660648 2192 regmove_time = 0;
4291d9c8
RS
2193 sched_time = 0;
2194 local_alloc_time = 0;
2195 global_alloc_time = 0;
2196 sched2_time = 0;
2197 dbr_sched_time = 0;
2198 shorten_branch_time = 0;
2199 stack_reg_time = 0;
2200 final_time = 0;
2201 symout_time = 0;
2202 dump_time = 0;
2203
e3d1fd32 2204#if !USE_CPPLIB
4291d9c8
RS
2205 /* Open input file. */
2206
2207 if (name == 0 || !strcmp (name, "-"))
2208 {
2209 finput = stdin;
2210 name = "stdin";
2211 }
2212 else
2213 finput = fopen (name, "r");
2214 if (finput == 0)
2215 pfatal_with_name (name);
2216
282ea52a 2217#ifdef IO_BUFFER_SIZE
d7cedf4b 2218 setvbuf (finput, (char *) xmalloc (IO_BUFFER_SIZE), _IOFBF, IO_BUFFER_SIZE);
282ea52a 2219#endif
e3d1fd32 2220#endif /* !USE_CPPLIB */
282ea52a 2221
4291d9c8
RS
2222 /* Initialize data in various passes. */
2223
2224 init_obstacks ();
2225 init_tree_codes ();
e3d1fd32
PB
2226#if USE_CPPLIB
2227 init_parse (name);
2228#else
4291d9c8 2229 init_lex ();
e3d1fd32 2230#endif
ca695ac9
JB
2231 /* Some of these really don't need to be called when generating bytecode,
2232 but the options would have to be parsed first to know that. -bson */
4291d9c8
RS
2233 init_rtl ();
2234 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
0d332add
DE
2235 || debug_info_level == DINFO_LEVEL_VERBOSE
2236 || flag_test_coverage);
7f21d440 2237 init_regs ();
4291d9c8
RS
2238 init_decl_processing ();
2239 init_optabs ();
2240 init_stmt ();
2241 init_expmed ();
4fa52007 2242 init_expr_once ();
4291d9c8
RS
2243 init_loop ();
2244 init_reload ();
2245
2246 if (flag_caller_saves)
2247 init_caller_save ();
2248
f246a305
RS
2249 /* If auxiliary info generation is desired, open the output file.
2250 This goes in the same directory as the source file--unlike
2251 all the other output files. */
4291d9c8
RS
2252 if (flag_gen_aux_info)
2253 {
4291d9c8
RS
2254 aux_info_file = fopen (aux_info_file_name, "w");
2255 if (aux_info_file == 0)
2256 pfatal_with_name (aux_info_file_name);
2257 }
2258
2259 /* If rtl dump desired, open the output file. */
2260 if (rtl_dump)
dfe1a916 2261 rtl_dump_file = open_dump_file (dump_base_name, ".rtl");
4291d9c8
RS
2262
2263 /* If jump_opt dump desired, open the output file. */
2264 if (jump_opt_dump)
dfe1a916 2265 jump_opt_dump_file = open_dump_file (dump_base_name, ".jump");
4291d9c8
RS
2266
2267 /* If cse dump desired, open the output file. */
2268 if (cse_dump)
dfe1a916 2269 cse_dump_file = open_dump_file (dump_base_name, ".cse");
4291d9c8
RS
2270
2271 /* If loop dump desired, open the output file. */
2272 if (loop_dump)
dfe1a916 2273 loop_dump_file = open_dump_file (dump_base_name, ".loop");
4291d9c8
RS
2274
2275 /* If cse2 dump desired, open the output file. */
2276 if (cse2_dump)
dfe1a916 2277 cse2_dump_file = open_dump_file (dump_base_name, ".cse2");
4291d9c8 2278
0d332add
DE
2279 /* If branch_prob dump desired, open the output file. */
2280 if (branch_prob_dump)
2281 branch_prob_dump_file = open_dump_file (dump_base_name, ".bp");
2282
4291d9c8
RS
2283 /* If flow dump desired, open the output file. */
2284 if (flow_dump)
dfe1a916 2285 flow_dump_file = open_dump_file (dump_base_name, ".flow");
4291d9c8
RS
2286
2287 /* If combine dump desired, open the output file. */
2288 if (combine_dump)
dfe1a916 2289 combine_dump_file = open_dump_file (dump_base_name, ".combine");
4291d9c8 2290
8c660648
JL
2291 /* If regmove dump desired, open the output file. */
2292 if (regmove_dump)
2293 regmove_dump_file = open_dump_file (dump_base_name, ".regmove");
2294
4291d9c8
RS
2295 /* If scheduling dump desired, open the output file. */
2296 if (sched_dump)
dfe1a916 2297 sched_dump_file = open_dump_file (dump_base_name, ".sched");
4291d9c8
RS
2298
2299 /* If local_reg dump desired, open the output file. */
2300 if (local_reg_dump)
dfe1a916 2301 local_reg_dump_file = open_dump_file (dump_base_name, ".lreg");
4291d9c8
RS
2302
2303 /* If global_reg dump desired, open the output file. */
2304 if (global_reg_dump)
dfe1a916 2305 global_reg_dump_file = open_dump_file (dump_base_name, ".greg");
4291d9c8
RS
2306
2307 /* If 2nd scheduling dump desired, open the output file. */
2308 if (sched2_dump)
dfe1a916 2309 sched2_dump_file = open_dump_file (dump_base_name, ".sched2");
4291d9c8
RS
2310
2311 /* If jump2_opt dump desired, open the output file. */
2312 if (jump2_opt_dump)
dfe1a916 2313 jump2_opt_dump_file = open_dump_file (dump_base_name, ".jump2");
4291d9c8
RS
2314
2315 /* If dbr_sched dump desired, open the output file. */
2316 if (dbr_sched_dump)
dfe1a916 2317 dbr_sched_dump_file = open_dump_file (dump_base_name, ".dbr");
4291d9c8
RS
2318
2319#ifdef STACK_REGS
2320
2321 /* If stack_reg dump desired, open the output file. */
2322 if (stack_reg_dump)
dfe1a916 2323 stack_reg_dump_file = open_dump_file (dump_base_name, ".stack");
4291d9c8
RS
2324
2325#endif
2326
2327 /* Open assembler code output file. */
2328
2329 if (! name_specified && asm_file_name == 0)
2330 asm_out_file = stdout;
2331 else
2332 {
4291d9c8 2333 int len = strlen (dump_base_name);
dfe1a916 2334 register char *dumpname = (char *) xmalloc (len + 6);
4291d9c8
RS
2335 strcpy (dumpname, dump_base_name);
2336 strip_off_ending (dumpname, len);
2337 strcat (dumpname, ".s");
2338 if (asm_file_name == 0)
2339 {
2340 asm_file_name = (char *) xmalloc (strlen (dumpname) + 1);
2341 strcpy (asm_file_name, dumpname);
2342 }
2343 if (!strcmp (asm_file_name, "-"))
2344 asm_out_file = stdout;
2345 else
2346 asm_out_file = fopen (asm_file_name, "w");
2347 if (asm_out_file == 0)
2348 pfatal_with_name (asm_file_name);
2349 }
2350
f246a305 2351#ifdef IO_BUFFER_SIZE
d7cedf4b
RS
2352 setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
2353 _IOFBF, IO_BUFFER_SIZE);
f246a305
RS
2354#endif
2355
4291d9c8
RS
2356 input_filename = name;
2357
18736654
RK
2358 /* Put an entry on the input file stack for the main input file. */
2359 input_file_stack
2360 = (struct file_stack *) xmalloc (sizeof (struct file_stack));
2361 input_file_stack->next = 0;
2362 input_file_stack->name = input_filename;
2363
4291d9c8
RS
2364 /* Perform language-specific initialization.
2365 This may set main_input_filename. */
2366 lang_init ();
2367
2368 /* If the input doesn't start with a #line, use the input name
2369 as the official input file name. */
2370 if (main_input_filename == 0)
2371 main_input_filename = name;
2372
ca695ac9
JB
2373 if (!output_bytecode)
2374 {
2375 ASM_FILE_START (asm_out_file);
3d5cdd42
DE
2376
2377#ifdef ASM_COMMENT_START
2378 if (flag_verbose_asm)
2379 {
2380 /* Print the list of options in effect. */
3d5cdd42
DE
2381 print_version (asm_out_file, ASM_COMMENT_START);
2382 print_switch_values (asm_out_file, 0, MAX_LINE,
2383 ASM_COMMENT_START, " ", "\n");
2384 /* Add a blank line here so it appears in assembler output but not
2385 screen output. */
2386 fprintf (asm_out_file, "\n");
2387 }
2388#endif
ca695ac9 2389 }
4291d9c8 2390
ca695ac9 2391 /* Output something to inform GDB that this compilation was by GCC. Also
0f41302f 2392 serves to tell GDB file consists of bytecodes. */
ca695ac9
JB
2393 if (output_bytecode)
2394 fprintf (asm_out_file, "bc_gcc2_compiled.:\n");
2395 else
2396 {
4291d9c8 2397#ifndef ASM_IDENTIFY_GCC
ca695ac9 2398 fprintf (asm_out_file, "gcc2_compiled.:\n");
4291d9c8 2399#else
ca695ac9 2400 ASM_IDENTIFY_GCC (asm_out_file);
4291d9c8 2401#endif
ca695ac9 2402 }
d0d4af87 2403
0f41302f 2404 /* Output something to identify which front-end produced this file. */
d0d4af87
MS
2405#ifdef ASM_IDENTIFY_LANGUAGE
2406 ASM_IDENTIFY_LANGUAGE (asm_out_file);
2407#endif
2408
cf440348
JL
2409#ifndef ASM_OUTPUT_SECTION_NAME
2410 if (flag_function_sections)
2411 {
2412 warning ("-ffunction-sections not supported for this target.");
2413 flag_function_sections = 0;
2414 }
2415#endif
2416
2417 if (flag_function_sections
2418 && (profile_flag || profile_block_flag))
2419 {
2420 warning ("-ffunction-sections disabled; it makes profiling impossible.");
2421 flag_function_sections = 0;
2422 }
2423
2424 if (flag_function_sections && write_symbols != NO_DEBUG)
2425 warning ("-ffunction-sections may affect debugging on some targets.");
2426
ca695ac9
JB
2427 if (output_bytecode)
2428 {
2429 if (profile_flag || profile_block_flag)
2430 error ("profiling not supported in bytecode compilation");
2431 }
2432 else
2433 {
2434 /* ??? Note: There used to be a conditional here
2435 to call assemble_zeros without fail if DBX_DEBUGGING_INFO is defined.
2436 This was to guarantee separation between gcc_compiled. and
2437 the first function, for the sake of dbx on Suns.
2438 However, having the extra zero here confused the Emacs
2439 code for unexec, and might confuse other programs too.
2440 Therefore, I took out that change.
2441 In future versions we should find another way to solve
2442 that dbx problem. -- rms, 23 May 93. */
2443
2444 /* Don't let the first function fall at the same address
2445 as gcc_compiled., if profiling. */
2446 if (profile_flag || profile_block_flag)
2447 assemble_zeros (UNITS_PER_WORD);
2448 }
4291d9c8
RS
2449
2450 /* If dbx symbol table desired, initialize writing it
2451 and output the predefined types. */
f246a305
RS
2452#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2453 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
4291d9c8
RS
2454 TIMEVAR (symout_time, dbxout_init (asm_out_file, main_input_filename,
2455 getdecls ()));
2456#endif
2457#ifdef SDB_DEBUGGING_INFO
2458 if (write_symbols == SDB_DEBUG)
2459 TIMEVAR (symout_time, sdbout_init (asm_out_file, main_input_filename,
2460 getdecls ()));
2461#endif
2462#ifdef DWARF_DEBUGGING_INFO
2463 if (write_symbols == DWARF_DEBUG)
2464 TIMEVAR (symout_time, dwarfout_init (asm_out_file, main_input_filename));
2465#endif
0021b564
JM
2466#ifdef DWARF2_UNWIND_INFO
2467 if (dwarf2out_do_frame ())
2468 dwarf2out_frame_init ();
2469#endif
9a666dda
JM
2470#ifdef DWARF2_DEBUGGING_INFO
2471 if (write_symbols == DWARF2_DEBUG)
2472 TIMEVAR (symout_time, dwarf2out_init (asm_out_file, main_input_filename));
2473#endif
4291d9c8
RS
2474
2475 /* Initialize yet another pass. */
2476
ca695ac9
JB
2477 if (!output_bytecode)
2478 init_final (main_input_filename);
0d332add 2479 init_branch_prob (dump_base_name);
4291d9c8
RS
2480
2481 start_time = get_run_time ();
2482
2483 /* Call the parser, which parses the entire file
2484 (calling rest_of_compilation for each function). */
2485
2486 if (yyparse () != 0)
453dfc78
JW
2487 {
2488 if (errorcount == 0)
2489 fprintf (stderr, "Errors detected in input file (your bison.simple is out of date)");
2490
2491 /* In case there were missing closebraces,
2492 get us back to the global binding level. */
2493 while (! global_bindings_p ())
2494 poplevel (0, 0, 0);
2495 }
4291d9c8 2496
0d332add
DE
2497 output_func_start_profiler ();
2498
4291d9c8
RS
2499 /* Compilation is now finished except for writing
2500 what's left of the symbol table output. */
2501
2502 parse_time += get_run_time () - start_time;
2503
2504 parse_time -= integration_time;
2505 parse_time -= varconst_time;
2506
2507 globals = getdecls ();
2508
2509 /* Really define vars that have had only a tentative definition.
2510 Really output inline functions that must actually be callable
2511 and have not been output so far. */
2512
2513 {
2514 int len = list_length (globals);
2515 tree *vec = (tree *) alloca (sizeof (tree) * len);
2516 int i;
2517 tree decl;
2b6c54d6 2518 int reconsider = 1;
4291d9c8
RS
2519
2520 /* Process the decls in reverse order--earliest first.
2521 Put them into VEC from back to front, then take out from front. */
2522
2523 for (i = 0, decl = globals; i < len; i++, decl = TREE_CHAIN (decl))
2524 vec[len - i - 1] = decl;
2525
2526 for (i = 0; i < len; i++)
2527 {
2528 decl = vec[i];
07af9d16
JM
2529
2530 /* We're not deferring this any longer. */
2531 DECL_DEFER_OUTPUT (decl) = 0;
2532
488b1f4f
RS
2533 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0
2534 && incomplete_decl_finalize_hook != 0)
2b599527 2535 (*incomplete_decl_finalize_hook) (decl);
2b6c54d6 2536 }
2b599527 2537
2b6c54d6
JM
2538 /* Now emit any global variables or functions that we have been putting
2539 off. We need to loop in case one of the things emitted here
2540 references another one which comes earlier in the list. */
2541 while (reconsider)
2542 {
2543 reconsider = 0;
2544 for (i = 0; i < len; i++)
4291d9c8 2545 {
2b6c54d6
JM
2546 decl = vec[i];
2547
2548 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
2549 continue;
2550
6b2bd61e
PB
2551 /* Don't write out static consts, unless we still need them.
2552
fbe912dd
BK
2553 We also keep static consts if not optimizing (for debugging),
2554 unless the user specified -fno-keep-static-consts.
6b2bd61e
PB
2555 ??? They might be better written into the debug information.
2556 This is possible when using DWARF.
2557
2558 A language processor that wants static constants to be always
2559 written out (even if it is not used) is responsible for
2560 calling rest_of_decl_compilation itself. E.g. the C front-end
2561 calls rest_of_decl_compilation from finish_decl.
2562 One motivation for this is that is conventional in some
2563 environments to write things like:
2564 static const char rcsid[] = "... version string ...";
2565 intending to force the string to be in the executable.
2566
2567 A language processor that would prefer to have unneeded
2568 static constants "optimized away" would just defer writing
2569 them out until here. E.g. C++ does this, because static
2570 constants are often defined in header files.
2571
2572 ??? A tempting alternative (for both C and C++) would be
2573 to force a constant to be written if and only if it is
0f41302f 2574 defined in a main file, as opposed to an include file. */
6b2bd61e 2575
2b6c54d6
JM
2576 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
2577 && (! TREE_READONLY (decl)
2578 || TREE_PUBLIC (decl)
fbe912dd 2579 || (!optimize && flag_keep_static_consts)
2b6c54d6
JM
2580 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
2581 {
2582 reconsider = 1;
2583 rest_of_decl_compilation (decl, NULL_PTR, 1, 1);
2584 }
2585
2586 if (TREE_CODE (decl) == FUNCTION_DECL
2587 && DECL_INITIAL (decl) != 0
2588 && DECL_SAVED_INSNS (decl) != 0
2589 && (flag_keep_inline_functions
2f8844a8 2590 || TREE_PUBLIC (decl)
2b6c54d6
JM
2591 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
2592 {
2593 reconsider = 1;
2594 temporary_allocation ();
2595 output_inline_function (decl);
2596 permanent_allocation (1);
2597 }
4291d9c8 2598 }
2b6c54d6 2599 }
4291d9c8 2600
3d195391
MS
2601 /* Now that all possible functions have been output, we can dump
2602 the exception table. */
2603
0021b564 2604 output_exception_table ();
3d195391 2605
2b6c54d6
JM
2606 for (i = 0; i < len; i++)
2607 {
2608 decl = vec[i];
2609
2610 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
2611 && ! TREE_ASM_WRITTEN (decl))
2612 /* Cancel the RTL for this decl so that, if debugging info
2613 output for global variables is still to come,
2614 this one will be omitted. */
2615 DECL_RTL (decl) = NULL;
4291d9c8 2616
ac266247
RS
2617 /* Warn about any function
2618 declared static but not defined.
2619 We don't warn about variables,
2620 because many programs have static variables
2621 that exist only to get some text into the object file. */
8c461ea1
JM
2622 if (TREE_CODE (decl) == FUNCTION_DECL
2623 && (warn_unused
2624 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
4291d9c8 2625 && DECL_INITIAL (decl) == 0
216d5cdd 2626 && DECL_EXTERNAL (decl)
d1b01681 2627 && ! DECL_ARTIFICIAL (decl)
4291d9c8 2628 && ! TREE_PUBLIC (decl))
7d429c41 2629 {
8c461ea1 2630 pedwarn_with_decl (decl,
7d429c41
RS
2631 "`%s' declared `static' but never defined");
2632 /* This symbol is effectively an "extern" declaration now. */
2633 TREE_PUBLIC (decl) = 1;
2634 assemble_external (decl);
7d429c41 2635 }
8c461ea1 2636
4291d9c8 2637 /* Warn about static fns or vars defined but not used,
7062b881
PB
2638 but not about inline functions or static consts
2639 since defining those in header files is normal practice. */
4291d9c8 2640 if (warn_unused
7062b881
PB
2641 && ((TREE_CODE (decl) == FUNCTION_DECL && ! DECL_INLINE (decl))
2642 || (TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
0c20aabf 2643 && ! DECL_IN_SYSTEM_HEADER (decl)
216d5cdd 2644 && ! DECL_EXTERNAL (decl)
4291d9c8
RS
2645 && ! TREE_PUBLIC (decl)
2646 && ! TREE_USED (decl)
f843649d 2647 && (TREE_CODE (decl) == FUNCTION_DECL || ! DECL_REGISTER (decl))
4291d9c8
RS
2648 /* The TREE_USED bit for file-scope decls
2649 is kept in the identifier, to handle multiple
2650 external decls in different scopes. */
2651 && ! TREE_USED (DECL_NAME (decl)))
2652 warning_with_decl (decl, "`%s' defined but not used");
2653
2654#ifdef SDB_DEBUGGING_INFO
2655 /* The COFF linker can move initialized global vars to the end.
2656 And that can screw up the symbol ordering.
2657 By putting the symbols in that order to begin with,
2658 we avoid a problem. mcsun!unido!fauern!tumuc!pes@uunet.uu.net. */
2659 if (write_symbols == SDB_DEBUG && TREE_CODE (decl) == VAR_DECL
2660 && TREE_PUBLIC (decl) && DECL_INITIAL (decl)
7efad3f7 2661 && ! DECL_EXTERNAL (decl)
4291d9c8
RS
2662 && DECL_RTL (decl) != 0)
2663 TIMEVAR (symout_time, sdbout_symbol (decl, 0));
2664
2665 /* Output COFF information for non-global
0f41302f 2666 file-scope initialized variables. */
4291d9c8
RS
2667 if (write_symbols == SDB_DEBUG
2668 && TREE_CODE (decl) == VAR_DECL
2669 && DECL_INITIAL (decl)
7efad3f7 2670 && ! DECL_EXTERNAL (decl)
4291d9c8
RS
2671 && DECL_RTL (decl) != 0
2672 && GET_CODE (DECL_RTL (decl)) == MEM)
2673 TIMEVAR (symout_time, sdbout_toplevel_data (decl));
2674#endif /* SDB_DEBUGGING_INFO */
2675#ifdef DWARF_DEBUGGING_INFO
6dc42e49 2676 /* Output DWARF information for file-scope tentative data object
4291d9c8
RS
2677 declarations, file-scope (extern) function declarations (which
2678 had no corresponding body) and file-scope tagged type declarations
2679 and definitions which have not yet been forced out. */
2680
2681 if (write_symbols == DWARF_DEBUG
2682 && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
2683 TIMEVAR (symout_time, dwarfout_file_scope_decl (decl, 1));
9a666dda
JM
2684#endif
2685#ifdef DWARF2_DEBUGGING_INFO
2686 /* Output DWARF2 information for file-scope tentative data object
2687 declarations, file-scope (extern) function declarations (which
2688 had no corresponding body) and file-scope tagged type declarations
2689 and definitions which have not yet been forced out. */
2690
2691 if (write_symbols == DWARF2_DEBUG
2692 && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
88dad228 2693 TIMEVAR (symout_time, dwarf2out_decl (decl));
4291d9c8
RS
2694#endif
2695 }
2696 }
2697
4b8af8d9
JM
2698 /* Write out any pending weak symbol declarations. */
2699
2700 weak_finish ();
2701
4291d9c8 2702 /* Do dbx symbols */
f246a305
RS
2703#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2704 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
4291d9c8
RS
2705 TIMEVAR (symout_time,
2706 {
2707 dbxout_finish (asm_out_file, main_input_filename);
2708 });
2709#endif
2710
2711#ifdef DWARF_DEBUGGING_INFO
2712 if (write_symbols == DWARF_DEBUG)
2713 TIMEVAR (symout_time,
2714 {
2715 dwarfout_finish ();
2716 });
2717#endif
2718
0021b564
JM
2719#ifdef DWARF2_UNWIND_INFO
2720 if (dwarf2out_do_frame ())
2721 dwarf2out_frame_finish ();
2722#endif
2723
9a666dda
JM
2724#ifdef DWARF2_DEBUGGING_INFO
2725 if (write_symbols == DWARF2_DEBUG)
2726 TIMEVAR (symout_time,
2727 {
2728 dwarf2out_finish ();
2729 });
2730#endif
2731
4291d9c8
RS
2732 /* Output some stuff at end of file if nec. */
2733
ca695ac9
JB
2734 if (!output_bytecode)
2735 {
0d332add
DE
2736 end_final (dump_base_name);
2737 end_branch_prob (branch_prob_dump_file);
4291d9c8
RS
2738
2739#ifdef ASM_FILE_END
ca695ac9 2740 ASM_FILE_END (asm_out_file);
4291d9c8 2741#endif
ca695ac9 2742 }
4291d9c8 2743
4291d9c8
RS
2744 /* Language-specific end of compilation actions. */
2745
2746 lang_finish ();
2747
0207ea82
RK
2748 if (output_bytecode)
2749 bc_write_file (asm_out_file);
2750
4291d9c8
RS
2751 /* Close the dump files. */
2752
2753 if (flag_gen_aux_info)
2754 {
2755 fclose (aux_info_file);
2756 if (errorcount)
2757 unlink (aux_info_file_name);
2758 }
2759
2760 if (rtl_dump)
2761 fclose (rtl_dump_file);
2762
2763 if (jump_opt_dump)
2764 fclose (jump_opt_dump_file);
2765
2766 if (cse_dump)
2767 fclose (cse_dump_file);
2768
2769 if (loop_dump)
2770 fclose (loop_dump_file);
2771
2772 if (cse2_dump)
2773 fclose (cse2_dump_file);
2774
0d332add
DE
2775 if (branch_prob_dump)
2776 fclose (branch_prob_dump_file);
2777
4291d9c8
RS
2778 if (flow_dump)
2779 fclose (flow_dump_file);
2780
2781 if (combine_dump)
2782 {
2783 dump_combine_total_stats (combine_dump_file);
2784 fclose (combine_dump_file);
2785 }
2786
8c660648
JL
2787 if (regmove_dump)
2788 fclose (regmove_dump_file);
2789
4291d9c8
RS
2790 if (sched_dump)
2791 fclose (sched_dump_file);
2792
2793 if (local_reg_dump)
2794 fclose (local_reg_dump_file);
2795
2796 if (global_reg_dump)
2797 fclose (global_reg_dump_file);
2798
2799 if (sched2_dump)
2800 fclose (sched2_dump_file);
2801
2802 if (jump2_opt_dump)
2803 fclose (jump2_opt_dump_file);
2804
2805 if (dbr_sched_dump)
2806 fclose (dbr_sched_dump_file);
2807
2808#ifdef STACK_REGS
2809 if (stack_reg_dump)
2810 fclose (stack_reg_dump_file);
2811#endif
2812
2813 /* Close non-debugging input and output files. Take special care to note
2814 whether fclose returns an error, since the pages might still be on the
2815 buffer chain while the file is open. */
2816
e3d1fd32
PB
2817#if USE_CPPLIB
2818 finish_parse ();
2819#else
4291d9c8 2820 fclose (finput);
e3d1fd32 2821#endif
4291d9c8
RS
2822 if (ferror (asm_out_file) != 0 || fclose (asm_out_file) != 0)
2823 fatal_io_error (asm_file_name);
2824
2825 /* Print the times. */
2826
2827 if (! quiet_flag)
2828 {
2829 fprintf (stderr,"\n");
2830 print_time ("parse", parse_time);
ca695ac9
JB
2831
2832 if (!output_bytecode)
2833 {
2834 print_time ("integration", integration_time);
2835 print_time ("jump", jump_time);
2836 print_time ("cse", cse_time);
2837 print_time ("loop", loop_time);
2838 print_time ("cse2", cse2_time);
116758a7 2839 print_time ("branch-prob", branch_prob_time);
ca695ac9
JB
2840 print_time ("flow", flow_time);
2841 print_time ("combine", combine_time);
8c660648 2842 print_time ("regmove", regmove_time);
ca695ac9
JB
2843 print_time ("sched", sched_time);
2844 print_time ("local-alloc", local_alloc_time);
2845 print_time ("global-alloc", global_alloc_time);
2846 print_time ("sched2", sched2_time);
2847 print_time ("dbranch", dbr_sched_time);
2848 print_time ("shorten-branch", shorten_branch_time);
2849 print_time ("stack-reg", stack_reg_time);
2850 print_time ("final", final_time);
2851 print_time ("varconst", varconst_time);
2852 print_time ("symout", symout_time);
2853 print_time ("dump", dump_time);
2854 }
4291d9c8
RS
2855 }
2856}
2857\f
2858/* This is called from various places for FUNCTION_DECL, VAR_DECL,
2859 and TYPE_DECL nodes.
2860
2861 This does nothing for local (non-static) variables.
2862 Otherwise, it sets up the RTL and outputs any assembler code
2863 (label definition, storage allocation and initialization).
2864
2865 DECL is the declaration. If ASMSPEC is nonzero, it specifies
2866 the assembler symbol name to be used. TOP_LEVEL is nonzero
2867 if this declaration is not within a function. */
2868
2869void
2870rest_of_decl_compilation (decl, asmspec, top_level, at_end)
2871 tree decl;
2872 char *asmspec;
2873 int top_level;
2874 int at_end;
2875{
2876 /* Declarations of variables, and of functions defined elsewhere. */
2877
928eb380
RS
2878/* The most obvious approach, to put an #ifndef around where
2879 this macro is used, doesn't work since it's inside a macro call. */
2880#ifndef ASM_FINISH_DECLARE_OBJECT
2881#define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP, END)
2882#endif
2883
4291d9c8
RS
2884 /* Forward declarations for nested functions are not "external",
2885 but we need to treat them as if they were. */
216d5cdd 2886 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
4291d9c8
RS
2887 || TREE_CODE (decl) == FUNCTION_DECL)
2888 TIMEVAR (varconst_time,
2889 {
2890 make_decl_rtl (decl, asmspec, top_level);
9a9a9643
RS
2891 /* Initialized extern variable exists to be replaced
2892 with its value, or represents something that will be
2893 output in another file. */
6dbf678a 2894 if (! (TREE_CODE (decl) == VAR_DECL
9a9a9643
RS
2895 && DECL_EXTERNAL (decl) && TREE_READONLY (decl)
2896 && DECL_INITIAL (decl) != 0
5b272d50 2897 && DECL_INITIAL (decl) != error_mark_node))
6dbf678a
RS
2898 /* Don't output anything
2899 when a tentative file-scope definition is seen.
2900 But at end of compilation, do output code for them. */
2901 if (! (! at_end && top_level
2902 && (DECL_INITIAL (decl) == 0
9a9a9643 2903 || DECL_INITIAL (decl) == error_mark_node)))
8380e2f2 2904 assemble_variable (decl, top_level, at_end, 0);
5b7540b6
DE
2905 if (!output_bytecode
2906 && decl == last_assemble_variable_decl)
5e10b3cc
RS
2907 {
2908 ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
2909 top_level, at_end);
2910 }
4291d9c8 2911 });
216d5cdd 2912 else if (DECL_REGISTER (decl) && asmspec != 0)
4291d9c8
RS
2913 {
2914 if (decode_reg_name (asmspec) >= 0)
2915 {
2916 DECL_RTL (decl) = 0;
2917 make_decl_rtl (decl, asmspec, top_level);
2918 }
2919 else
2920 error ("invalid register name `%s' for register variable", asmspec);
2921 }
f246a305
RS
2922#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2923 else if ((write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2924 && TREE_CODE (decl) == TYPE_DECL)
4291d9c8
RS
2925 TIMEVAR (symout_time, dbxout_symbol (decl, 0));
2926#endif
2927#ifdef SDB_DEBUGGING_INFO
2928 else if (write_symbols == SDB_DEBUG && top_level
2929 && TREE_CODE (decl) == TYPE_DECL)
2930 TIMEVAR (symout_time, sdbout_symbol (decl, 0));
2931#endif
2932}
2933
2934/* Called after finishing a record, union or enumeral type. */
2935
2936void
2937rest_of_type_compilation (type, toplev)
2938 tree type;
2939 int toplev;
2940{
f246a305
RS
2941#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2942 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
4291d9c8
RS
2943 TIMEVAR (symout_time, dbxout_symbol (TYPE_STUB_DECL (type), !toplev));
2944#endif
2945#ifdef SDB_DEBUGGING_INFO
2946 if (write_symbols == SDB_DEBUG)
2947 TIMEVAR (symout_time, sdbout_symbol (TYPE_STUB_DECL (type), !toplev));
2948#endif
2949}
2950
2951/* This is called from finish_function (within yyparse)
2952 after each top-level definition is parsed.
2953 It is supposed to compile that function or variable
2954 and output the assembler code for it.
2955 After we return, the tree storage is freed. */
2956
2957void
2958rest_of_compilation (decl)
2959 tree decl;
2960{
2961 register rtx insns;
2962 int start_time = get_run_time ();
2963 int tem;
2964 /* Nonzero if we have saved the original DECL_INITIAL of the function,
2965 to be restored after we finish compiling the function
2966 (for use when compiling inline calls to this function). */
2967 tree saved_block_tree = 0;
8a958768
RS
2968 /* Likewise, for DECL_ARGUMENTS. */
2969 tree saved_arguments = 0;
ab40ad2b 2970 int failure = 0;
4291d9c8 2971
ca695ac9
JB
2972 if (output_bytecode)
2973 return;
2974
4291d9c8
RS
2975 /* If we are reconsidering an inline function
2976 at the end of compilation, skip the stuff for making it inline. */
2977
2978 if (DECL_SAVED_INSNS (decl) == 0)
2979 {
9deaf1b1 2980 int inlineable = 0;
4291d9c8
RS
2981 char *lose;
2982
2983 /* If requested, consider whether to make this function inline. */
9deaf1b1 2984 if (DECL_INLINE (decl) || flag_inline_functions)
4291d9c8
RS
2985 TIMEVAR (integration_time,
2986 {
2987 lose = function_cannot_inline_p (decl);
caa0eccd 2988 if (lose || ! optimize)
4291d9c8 2989 {
9deaf1b1 2990 if (warn_inline && DECL_INLINE (decl))
4291d9c8 2991 warning_with_decl (decl, lose);
9548c538 2992 DECL_ABSTRACT_ORIGIN (decl) = 0;
46dbb914
RS
2993 /* Don't really compile an extern inline function.
2994 If we can't make it inline, pretend
2995 it was only declared. */
2996 if (DECL_EXTERNAL (decl))
27937f46
RS
2997 {
2998 DECL_INITIAL (decl) = 0;
2999 goto exit_rest_of_compilation;
3000 }
4291d9c8
RS
3001 }
3002 else
9deaf1b1
RK
3003 /* ??? Note that this has the effect of making it look
3004 like "inline" was specified for a function if we choose
3005 to inline it. This isn't quite right, but it's
3006 probably not worth the trouble to fix. */
3007 inlineable = DECL_INLINE (decl) = 1;
4291d9c8
RS
3008 });
3009
3010 insns = get_insns ();
3011
3012 /* Dump the rtl code if we are dumping rtl. */
3013
3014 if (rtl_dump)
3015 TIMEVAR (dump_time,
3016 {
3017 fprintf (rtl_dump_file, "\n;; Function %s\n\n",
2f8844a8 3018 (*decl_printable_name) (decl, 2));
4291d9c8
RS
3019 if (DECL_SAVED_INSNS (decl))
3020 fprintf (rtl_dump_file, ";; (integrable)\n\n");
3021 print_rtl (rtl_dump_file, insns);
3022 fflush (rtl_dump_file);
3023 });
3024
c0da11c4
JM
3025 /* If we can, defer compiling inlines until EOF.
3026 save_for_inline_copying can be extremely expensive. */
3027 if (inlineable && ! decl_function_context (decl))
3028 DECL_DEFER_OUTPUT (decl) = 1;
3029
4291d9c8
RS
3030 /* If function is inline, and we don't yet know whether to
3031 compile it by itself, defer decision till end of compilation.
3032 finish_compilation will call rest_of_compilation again
16411ea6 3033 for those functions that need to be output. Also defer those
ec6c615d
RK
3034 functions that we are supposed to defer. We cannot defer
3035 functions containing nested functions since the nested function
3036 data is in our non-saved obstack. */
3037
3038 if (! current_function_contains_functions
3039 && (DECL_DEFER_OUTPUT (decl)
9deaf1b1 3040 || (DECL_INLINE (decl)
ec6c615d
RK
3041 && ((! TREE_PUBLIC (decl) && ! TREE_ADDRESSABLE (decl)
3042 && ! flag_keep_inline_functions)
3043 || DECL_EXTERNAL (decl)))))
4291d9c8 3044 {
951af26e
JM
3045 DECL_DEFER_OUTPUT (decl) = 1;
3046
3047 /* If -Wreturn-type, we have to do a bit of compilation. */
3048 if (! warn_return_type)
937522b5 3049 {
951af26e
JM
3050#ifdef DWARF_DEBUGGING_INFO
3051 /* Generate the DWARF info for the "abstract" instance
3052 of a function which we may later generate inlined and/or
3053 out-of-line instances of. */
3054 if (write_symbols == DWARF_DEBUG)
3055 {
3056 set_decl_abstract_flags (decl, 1);
3057 TIMEVAR (symout_time, dwarfout_file_scope_decl (decl, 0));
3058 set_decl_abstract_flags (decl, 0);
3059 }
9a666dda
JM
3060#endif
3061#ifdef DWARF2_DEBUGGING_INFO
3062 /* Generate the DWARF2 info for the "abstract" instance
3063 of a function which we may later generate inlined and/or
3064 out-of-line instances of. */
3065 if (write_symbols == DWARF2_DEBUG)
3066 {
3067 set_decl_abstract_flags (decl, 1);
88dad228 3068 TIMEVAR (symout_time, dwarf2out_decl (decl));
9a666dda
JM
3069 set_decl_abstract_flags (decl, 0);
3070 }
951af26e
JM
3071#endif
3072 TIMEVAR (integration_time, save_for_inline_nocopy (decl));
ac02eb62 3073 RTX_INTEGRATED_P (DECL_SAVED_INSNS (decl)) = inlineable;
951af26e 3074 goto exit_rest_of_compilation;
937522b5 3075 }
4291d9c8
RS
3076 }
3077
8a958768 3078 /* If we have to compile the function now, save its rtl and subdecls
4291d9c8 3079 so that its compilation will not affect what others get. */
9deaf1b1 3080 if (inlineable || DECL_DEFER_OUTPUT (decl))
4291d9c8 3081 {
937522b5
RS
3082#ifdef DWARF_DEBUGGING_INFO
3083 /* Generate the DWARF info for the "abstract" instance of
3084 a function which we will generate an out-of-line instance
3085 of almost immediately (and which we may also later generate
3086 various inlined instances of). */
3087 if (write_symbols == DWARF_DEBUG)
3088 {
3089 set_decl_abstract_flags (decl, 1);
3090 TIMEVAR (symout_time, dwarfout_file_scope_decl (decl, 0));
3091 set_decl_abstract_flags (decl, 0);
3092 }
9a666dda
JM
3093#endif
3094#ifdef DWARF2_DEBUGGING_INFO
3095 /* Generate the DWARF2 info for the "abstract" instance of
3096 a function which we will generate an out-of-line instance
3097 of almost immediately (and which we may also later generate
3098 various inlined instances of). */
3099 if (write_symbols == DWARF2_DEBUG)
3100 {
3101 set_decl_abstract_flags (decl, 1);
88dad228 3102 TIMEVAR (symout_time, dwarf2out_decl (decl));
9a666dda
JM
3103 set_decl_abstract_flags (decl, 0);
3104 }
937522b5 3105#endif
4291d9c8 3106 saved_block_tree = DECL_INITIAL (decl);
8a958768 3107 saved_arguments = DECL_ARGUMENTS (decl);
4291d9c8 3108 TIMEVAR (integration_time, save_for_inline_copying (decl));
912c4289 3109 RTX_INTEGRATED_P (DECL_SAVED_INSNS (decl)) = inlineable;
4291d9c8 3110 }
4291d9c8 3111
b8471b65
RK
3112 /* If specified extern inline but we aren't inlining it, we are
3113 done. */
9deaf1b1 3114 if (DECL_INLINE (decl) && DECL_EXTERNAL (decl))
b8471b65
RK
3115 goto exit_rest_of_compilation;
3116 }
07af9d16 3117
951af26e
JM
3118 if (! DECL_DEFER_OUTPUT (decl))
3119 TREE_ASM_WRITTEN (decl) = 1;
4291d9c8
RS
3120
3121 /* Now that integrate will no longer see our rtl, we need not distinguish
3122 between the return value of this function and the return value of called
3123 functions. */
3124 rtx_equal_function_value_matters = 0;
3125
32235b30
RS
3126 /* Don't return yet if -Wreturn-type; we need to do jump_optimize. */
3127 if ((rtl_dump_and_exit || flag_syntax_only) && !warn_return_type)
4291d9c8
RS
3128 {
3129 goto exit_rest_of_compilation;
3130 }
3131
89418a92
BK
3132 /* Add an unwinder for exception handling, if needed.
3133 This must be done before we finalize PIC code. */
3134 emit_unwinder ();
4291d9c8
RS
3135
3136#ifdef FINALIZE_PIC
3137 /* If we are doing position-independent code generation, now
3138 is the time to output special prologues and epilogues.
3139 We do not want to do this earlier, because it just clutters
3140 up inline functions with meaningless insns. */
3141 if (flag_pic)
3142 FINALIZE_PIC;
3143#endif
3144
89418a92
BK
3145 /* From now on, allocate rtl in current_obstack, not in saveable_obstack.
3146 Note that that may have been done above, in save_for_inline_copying.
3147 The call to resume_temporary_allocation near the end of this function
3148 goes back to the usual state of affairs. This must be done after
3149 we've built up any unwinders for exception handling, and done
3150 the FINALIZE_PIC work, if necessary. */
3151
3152 rtl_in_current_obstack ();
3d195391 3153
4291d9c8
RS
3154 insns = get_insns ();
3155
3156 /* Copy any shared structure that should not be shared. */
3157
3158 unshare_all_rtl (insns);
3159
3160 /* Instantiate all virtual registers. */
3161
3162 instantiate_virtual_regs (current_function_decl, get_insns ());
3163
3164 /* See if we have allocated stack slots that are not directly addressable.
3165 If so, scan all the insns and create explicit address computation
3166 for all references to such slots. */
3167/* fixup_stack_slots (); */
3168
3d195391
MS
3169 /* Find all the EH handlers. */
3170 find_exception_handler_labels ();
3171
cc4e79d8
JL
3172 /* Always do one jump optimization pass to ensure that JUMP_LABEL fields
3173 are initialized and to compute whether control can drop off the end
3174 of the function. */
3175 TIMEVAR (jump_time, reg_scan (insns, max_reg_num (), 0));
3176 TIMEVAR (jump_time, jump_optimize (insns, 0, 0, 1));
4291d9c8 3177
32235b30 3178 /* Now is when we stop if -fsyntax-only and -Wreturn-type. */
951af26e 3179 if (rtl_dump_and_exit || flag_syntax_only || DECL_DEFER_OUTPUT (decl))
32235b30
RS
3180 goto exit_rest_of_compilation;
3181
4291d9c8
RS
3182 /* Dump rtl code after jump, if we are doing that. */
3183
3184 if (jump_opt_dump)
3185 TIMEVAR (dump_time,
3186 {
3187 fprintf (jump_opt_dump_file, "\n;; Function %s\n\n",
2f8844a8 3188 (*decl_printable_name) (decl, 2));
4291d9c8
RS
3189 print_rtl (jump_opt_dump_file, insns);
3190 fflush (jump_opt_dump_file);
3191 });
3192
3193 /* Perform common subexpression elimination.
3194 Nonzero value from `cse_main' means that jumps were simplified
3195 and some code may now be unreachable, so do
3196 jump optimization again. */
3197
3198 if (cse_dump)
3199 TIMEVAR (dump_time,
3200 {
3201 fprintf (cse_dump_file, "\n;; Function %s\n\n",
2f8844a8 3202 (*decl_printable_name) (decl, 2));
4291d9c8
RS
3203 });
3204
3205 if (optimize > 0)
3206 {
3207 TIMEVAR (cse_time, reg_scan (insns, max_reg_num (), 1));
3208
3209 if (flag_thread_jumps)
3210 /* Hacks by tiemann & kenner. */
6f606d63 3211 TIMEVAR (jump_time, thread_jumps (insns, max_reg_num (), 1));
4291d9c8
RS
3212
3213 TIMEVAR (cse_time, tem = cse_main (insns, max_reg_num (),
3214 0, cse_dump_file));
3215 TIMEVAR (cse_time, delete_dead_from_cse (insns, max_reg_num ()));
3216
534bfae4 3217 if (tem || optimize > 1)
4291d9c8
RS
3218 TIMEVAR (jump_time, jump_optimize (insns, 0, 0, 0));
3219 }
3220
3221 /* Dump rtl code after cse, if we are doing that. */
3222
3223 if (cse_dump)
3224 TIMEVAR (dump_time,
3225 {
3226 print_rtl (cse_dump_file, insns);
3227 fflush (cse_dump_file);
3228 });
3229
3230 if (loop_dump)
3231 TIMEVAR (dump_time,
3232 {
3233 fprintf (loop_dump_file, "\n;; Function %s\n\n",
2f8844a8 3234 (*decl_printable_name) (decl, 2));
4291d9c8
RS
3235 });
3236
3237 /* Move constant computations out of loops. */
3238
3239 if (optimize > 0)
3240 {
3241 TIMEVAR (loop_time,
3242 {
37366632 3243 loop_optimize (insns, loop_dump_file);
4291d9c8
RS
3244 });
3245 }
3246
3247 /* Dump rtl code after loop opt, if we are doing that. */
3248
3249 if (loop_dump)
3250 TIMEVAR (dump_time,
3251 {
3252 print_rtl (loop_dump_file, insns);
3253 fflush (loop_dump_file);
3254 });
3255
3256 if (cse2_dump)
3257 TIMEVAR (dump_time,
3258 {
3259 fprintf (cse2_dump_file, "\n;; Function %s\n\n",
2f8844a8 3260 (*decl_printable_name) (decl, 2));
4291d9c8
RS
3261 });
3262
3263 if (optimize > 0 && flag_rerun_cse_after_loop)
3264 {
44333223
JL
3265 /* Running another jump optimization pass before the second
3266 cse pass sometimes simplifies the RTL enough to allow
9e9b48a4
DE
3267 the second CSE pass to do a better job. Jump_optimize can change
3268 max_reg_num so we must rerun reg_scan afterwards.
3269 ??? Rework to not call reg_scan so often. */
3270 TIMEVAR (jump_time, reg_scan (insns, max_reg_num (), 0));
44333223 3271 TIMEVAR (jump_time, jump_optimize (insns, 0, 0, 1));
4291d9c8 3272
9e9b48a4 3273 TIMEVAR (cse2_time, reg_scan (insns, max_reg_num (), 0));
4291d9c8
RS
3274 TIMEVAR (cse2_time, tem = cse_main (insns, max_reg_num (),
3275 1, cse2_dump_file));
3276 if (tem)
3277 TIMEVAR (jump_time, jump_optimize (insns, 0, 0, 0));
3278 }
3279
3280 if (optimize > 0 && flag_thread_jumps)
c2f006ec
RK
3281 {
3282 /* This pass of jump threading straightens out code
3283 that was kinked by loop optimization. */
3284 TIMEVAR (jump_time, reg_scan (insns, max_reg_num (), 0));
3285 TIMEVAR (jump_time, thread_jumps (insns, max_reg_num (), 0));
3286 }
4291d9c8
RS
3287 /* Dump rtl code after cse, if we are doing that. */
3288
3289 if (cse2_dump)
3290 TIMEVAR (dump_time,
3291 {
3292 print_rtl (cse2_dump_file, insns);
3293 fflush (cse2_dump_file);
3294 });
3295
0d332add
DE
3296 if (branch_prob_dump)
3297 TIMEVAR (dump_time,
3298 {
3299 fprintf (branch_prob_dump_file, "\n;; Function %s\n\n",
2f8844a8 3300 (*decl_printable_name) (decl, 2));
0d332add
DE
3301 });
3302
3303 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
3304 TIMEVAR (branch_prob_time,
3305 {
3306 branch_prob (insns, branch_prob_dump_file);
3307 });
3308
3309 if (branch_prob_dump)
3310 TIMEVAR (dump_time,
3311 {
3312 print_rtl (branch_prob_dump_file, insns);
3313 fflush (branch_prob_dump_file);
3314 });
4291d9c8
RS
3315 /* We are no longer anticipating cse in this function, at least. */
3316
3317 cse_not_expected = 1;
3318
3319 /* Now we choose between stupid (pcc-like) register allocation
3320 (if we got the -noreg switch and not -opt)
3321 and smart register allocation. */
3322
3323 if (optimize > 0) /* Stupid allocation probably won't work */
3324 obey_regdecls = 0; /* if optimizations being done. */
3325
3326 regclass_init ();
3327
3328 /* Print function header into flow dump now
3329 because doing the flow analysis makes some of the dump. */
3330
3331 if (flow_dump)
3332 TIMEVAR (dump_time,
3333 {
3334 fprintf (flow_dump_file, "\n;; Function %s\n\n",
2f8844a8 3335 (*decl_printable_name) (decl, 2));
4291d9c8
RS
3336 });
3337
3338 if (obey_regdecls)
3339 {
3340 TIMEVAR (flow_time,
3341 {
3342 regclass (insns, max_reg_num ());
3343 stupid_life_analysis (insns, max_reg_num (),
3344 flow_dump_file);
3345 });
3346 }
3347 else
3348 {
3349 /* Do control and data flow analysis,
3350 and write some of the results to dump file. */
3351
3352 TIMEVAR (flow_time, flow_analysis (insns, max_reg_num (),
3353 flow_dump_file));
3354 if (warn_uninitialized)
3355 {
3356 uninitialized_vars_warning (DECL_INITIAL (decl));
3357 setjmp_args_warning ();
3358 }
3359 }
3360
3361 /* Dump rtl after flow analysis. */
3362
3363 if (flow_dump)
3364 TIMEVAR (dump_time,
3365 {
3e28fe44 3366 print_rtl_with_bb (flow_dump_file, insns);
4291d9c8
RS
3367 fflush (flow_dump_file);
3368 });
3369
3370 /* If -opt, try combining insns through substitution. */
3371
3372 if (optimize > 0)
3373 TIMEVAR (combine_time, combine_instructions (insns, max_reg_num ()));
3374
3375 /* Dump rtl code after insn combination. */
3376
3377 if (combine_dump)
3378 TIMEVAR (dump_time,
3379 {
3380 fprintf (combine_dump_file, "\n;; Function %s\n\n",
2f8844a8 3381 (*decl_printable_name) (decl, 2));
4291d9c8 3382 dump_combine_stats (combine_dump_file);
3e28fe44 3383 print_rtl_with_bb (combine_dump_file, insns);
4291d9c8
RS
3384 fflush (combine_dump_file);
3385 });
3386
8c660648
JL
3387 if (regmove_dump)
3388 TIMEVAR (dump_time,
3389 {
3390 fprintf (regmove_dump_file, "\n;; Function %s\n\n",
3391 (*decl_printable_name) (decl, 2));
3392 });
3393
3394 /* Register allocation pre-pass, to reduce number of moves
3395 necessary for two-address machines. */
3396 if (optimize > 0 && flag_regmove)
3397 TIMEVAR (regmove_time, regmove_optimize (insns, max_reg_num (),
3398 regmove_dump_file));
3399
3400 if (regmove_dump)
3401 TIMEVAR (dump_time,
3402 {
3e28fe44 3403 print_rtl_with_bb (regmove_dump_file, insns);
8c660648
JL
3404 fflush (regmove_dump_file);
3405 });
3406
4291d9c8
RS
3407 /* Print function header into sched dump now
3408 because doing the sched analysis makes some of the dump. */
3409
3410 if (sched_dump)
3411 TIMEVAR (dump_time,
3412 {
3413 fprintf (sched_dump_file, "\n;; Function %s\n\n",
2f8844a8 3414 (*decl_printable_name) (decl, 2));
4291d9c8
RS
3415 });
3416
3417 if (optimize > 0 && flag_schedule_insns)
3418 {
3419 /* Do control and data sched analysis,
3420 and write some of the results to dump file. */
3421
3422 TIMEVAR (sched_time, schedule_insns (sched_dump_file));
3423 }
3424
3425 /* Dump rtl after instruction scheduling. */
3426
3427 if (sched_dump)
3428 TIMEVAR (dump_time,
3429 {
3e28fe44 3430 print_rtl_with_bb (sched_dump_file, insns);
4291d9c8
RS
3431 fflush (sched_dump_file);
3432 });
3433
3434 /* Unless we did stupid register allocation,
3435 allocate pseudo-regs that are used only within 1 basic block. */
3436
3437 if (!obey_regdecls)
3438 TIMEVAR (local_alloc_time,
3439 {
3440 regclass (insns, max_reg_num ());
3441 local_alloc ();
3442 });
3443
3444 /* Dump rtl code after allocating regs within basic blocks. */
3445
3446 if (local_reg_dump)
3447 TIMEVAR (dump_time,
3448 {
3449 fprintf (local_reg_dump_file, "\n;; Function %s\n\n",
2f8844a8 3450 (*decl_printable_name) (decl, 2));
4291d9c8
RS
3451 dump_flow_info (local_reg_dump_file);
3452 dump_local_alloc (local_reg_dump_file);
3e28fe44 3453 print_rtl_with_bb (local_reg_dump_file, insns);
4291d9c8
RS
3454 fflush (local_reg_dump_file);
3455 });
3456
3457 if (global_reg_dump)
3458 TIMEVAR (dump_time,
3459 fprintf (global_reg_dump_file, "\n;; Function %s\n\n",
2f8844a8 3460 (*decl_printable_name) (decl, 2)));
4291d9c8 3461
bf8b4985
RK
3462 /* Save the last label number used so far, so reorg can tell
3463 when it's safe to kill spill regs. */
3464 max_label_num_after_reload = max_label_num ();
3465
4291d9c8
RS
3466 /* Unless we did stupid register allocation,
3467 allocate remaining pseudo-regs, then do the reload pass
3468 fixing up any insns that are invalid. */
3469
3470 TIMEVAR (global_alloc_time,
3471 {
3472 if (!obey_regdecls)
37366632 3473 failure = global_alloc (global_reg_dump_file);
4291d9c8 3474 else
37366632 3475 failure = reload (insns, 0, global_reg_dump_file);
4291d9c8
RS
3476 });
3477
3478 if (global_reg_dump)
3479 TIMEVAR (dump_time,
3480 {
3481 dump_global_regs (global_reg_dump_file);
3e28fe44 3482 print_rtl_with_bb (global_reg_dump_file, insns);
4291d9c8
RS
3483 fflush (global_reg_dump_file);
3484 });
3485
ab40ad2b
RS
3486 if (failure)
3487 goto exit_rest_of_compilation;
3488
4291d9c8
RS
3489 reload_completed = 1;
3490
c8ed219d
RK
3491 /* Do a very simple CSE pass over just the hard registers. */
3492 if (optimize > 0)
3493 reload_cse_regs (insns);
3494
bdac5f58
TW
3495 /* On some machines, the prologue and epilogue code, or parts thereof,
3496 can be represented as RTL. Doing so lets us schedule insns between
3497 it and the rest of the code and also allows delayed branch
3498 scheduling to operate in the epilogue. */
3499
3500 thread_prologue_and_epilogue_insns (insns);
3501
4291d9c8
RS
3502 if (optimize > 0 && flag_schedule_insns_after_reload)
3503 {
3504 if (sched2_dump)
3505 TIMEVAR (dump_time,
3506 {
3507 fprintf (sched2_dump_file, "\n;; Function %s\n\n",
2f8844a8 3508 (*decl_printable_name) (decl, 2));
4291d9c8
RS
3509 });
3510
3511 /* Do control and data sched analysis again,
3512 and write some more of the results to dump file. */
3513
3514 TIMEVAR (sched2_time, schedule_insns (sched2_dump_file));
3515
3516 /* Dump rtl after post-reorder instruction scheduling. */
3517
3518 if (sched2_dump)
3519 TIMEVAR (dump_time,
3520 {
3e28fe44 3521 print_rtl_with_bb (sched2_dump_file, insns);
4291d9c8
RS
3522 fflush (sched2_dump_file);
3523 });
3524 }
3525
3526#ifdef LEAF_REGISTERS
3527 leaf_function = 0;
3528 if (optimize > 0 && only_leaf_regs_used () && leaf_function_p ())
ab40ad2b 3529 leaf_function = 1;
4291d9c8
RS
3530#endif
3531
3532 /* One more attempt to remove jumps to .+1
3533 left by dead-store-elimination.
3534 Also do cross-jumping this time
3535 and delete no-op move insns. */
3536
3537 if (optimize > 0)
3538 {
3539 TIMEVAR (jump_time, jump_optimize (insns, 1, 1, 0));
3540 }
3541
3542 /* Dump rtl code after jump, if we are doing that. */
3543
3544 if (jump2_opt_dump)
3545 TIMEVAR (dump_time,
3546 {
3547 fprintf (jump2_opt_dump_file, "\n;; Function %s\n\n",
2f8844a8 3548 (*decl_printable_name) (decl, 2));
3e28fe44 3549 print_rtl_with_bb (jump2_opt_dump_file, insns);
4291d9c8
RS
3550 fflush (jump2_opt_dump_file);
3551 });
3552
2c65021a
RK
3553 /* If a machine dependent reorganization is needed, call it. */
3554#ifdef MACHINE_DEPENDENT_REORG
3555 MACHINE_DEPENDENT_REORG (insns);
3556#endif
3557
4291d9c8 3558 /* If a scheduling pass for delayed branches is to be done,
0f41302f 3559 call the scheduling code. */
4291d9c8
RS
3560
3561#ifdef DELAY_SLOTS
3562 if (optimize > 0 && flag_delayed_branch)
3563 {
3564 TIMEVAR (dbr_sched_time, dbr_schedule (insns, dbr_sched_dump_file));
3565 if (dbr_sched_dump)
3566 {
3567 TIMEVAR (dump_time,
3568 {
3569 fprintf (dbr_sched_dump_file, "\n;; Function %s\n\n",
2f8844a8 3570 (*decl_printable_name) (decl, 2));
3e28fe44 3571 print_rtl_with_bb (dbr_sched_dump_file, insns);
4291d9c8
RS
3572 fflush (dbr_sched_dump_file);
3573 });
3574 }
3575 }
3576#endif
3577
d0c874f6
TG
3578 /* Shorten branches. */
3579 TIMEVAR (shorten_branch_time,
3580 {
3581 shorten_branches (get_insns ());
3582 });
4291d9c8
RS
3583
3584#ifdef STACK_REGS
3585 TIMEVAR (stack_reg_time, reg_to_stack (insns, stack_reg_dump_file));
3586 if (stack_reg_dump)
3587 {
3588 TIMEVAR (dump_time,
3589 {
3590 fprintf (stack_reg_dump_file, "\n;; Function %s\n\n",
2f8844a8 3591 (*decl_printable_name) (decl, 2));
3e28fe44 3592 print_rtl_with_bb (stack_reg_dump_file, insns);
4291d9c8
RS
3593 fflush (stack_reg_dump_file);
3594 });
3595 }
3596#endif
3597
3598 /* Now turn the rtl into assembler code. */
3599
3600 TIMEVAR (final_time,
3601 {
3602 rtx x;
3603 char *fnname;
3604
3605 /* Get the function's name, as described by its RTL.
3606 This may be different from the DECL_NAME name used
3607 in the source file. */
3608
3609 x = DECL_RTL (decl);
3610 if (GET_CODE (x) != MEM)
3611 abort ();
3612 x = XEXP (x, 0);
3613 if (GET_CODE (x) != SYMBOL_REF)
3614 abort ();
3615 fnname = XSTR (x, 0);
3616
3617 assemble_start_function (decl, fnname);
3618 final_start_function (insns, asm_out_file, optimize);
3619 final (insns, asm_out_file, optimize, 0);
3620 final_end_function (insns, asm_out_file, optimize);
3621 assemble_end_function (decl, fnname);
3622 fflush (asm_out_file);
9ddca353
RK
3623
3624 /* Release all memory held by regsets now */
3625 regset_release_memory ();
4291d9c8
RS
3626 });
3627
3628 /* Write DBX symbols if requested */
3629
3630 /* Note that for those inline functions where we don't initially
3631 know for certain that we will be generating an out-of-line copy,
3632 the first invocation of this routine (rest_of_compilation) will
3633 skip over this code by doing a `goto exit_rest_of_compilation;'.
3634 Later on, finish_compilation will call rest_of_compilation again
3635 for those inline functions that need to have out-of-line copies
3636 generated. During that call, we *will* be routed past here. */
3637
3638#ifdef DBX_DEBUGGING_INFO
3639 if (write_symbols == DBX_DEBUG)
3640 TIMEVAR (symout_time, dbxout_function (decl));
3641#endif
3642
3643#ifdef DWARF_DEBUGGING_INFO
3644 if (write_symbols == DWARF_DEBUG)
3645 TIMEVAR (symout_time, dwarfout_file_scope_decl (decl, 0));
3646#endif
3647
9a666dda
JM
3648#ifdef DWARF2_DEBUGGING_INFO
3649 if (write_symbols == DWARF2_DEBUG)
88dad228 3650 TIMEVAR (symout_time, dwarf2out_decl (decl));
9a666dda
JM
3651#endif
3652
4291d9c8
RS
3653 exit_rest_of_compilation:
3654
f246a305
RS
3655 /* In case the function was not output,
3656 don't leave any temporary anonymous types
3657 queued up for sdb output. */
3658#ifdef SDB_DEBUGGING_INFO
3659 if (write_symbols == SDB_DEBUG)
37366632 3660 sdbout_types (NULL_TREE);
f246a305
RS
3661#endif
3662
8a958768
RS
3663 /* Put back the tree of subblocks and list of arguments
3664 from before we copied them.
4291d9c8
RS
3665 Code generation and the output of debugging info may have modified
3666 the copy, but the original is unchanged. */
3667
3668 if (saved_block_tree != 0)
fb19c456
JM
3669 {
3670 DECL_INITIAL (decl) = saved_block_tree;
3671 DECL_ARGUMENTS (decl) = saved_arguments;
3672 DECL_ABSTRACT_ORIGIN (decl) = NULL_TREE;
3673 }
4291d9c8
RS
3674
3675 reload_completed = 0;
3676
9fe320d7
RK
3677 /* Clear out the insn_length contents now that they are no longer valid. */
3678 init_insn_lengths ();
3679
4291d9c8
RS
3680 /* Clear out the real_constant_chain before some of the rtx's
3681 it runs through become garbage. */
3682
3683 clear_const_double_mem ();
3684
3685 /* Cancel the effect of rtl_in_current_obstack. */
3686
3687 resume_temporary_allocation ();
3688
adcd38c9
RK
3689 /* Show no temporary slots allocated. */
3690
3691 init_temp_slots ();
3692
4291d9c8
RS
3693 /* The parsing time is all the time spent in yyparse
3694 *except* what is spent in this function. */
3695
3696 parse_time -= get_run_time () - start_time;
3697}
3698\f
3699/* Entry point of cc1/c++. Decode command args, then call compile_file.
3700 Exit code is 35 if can't open files, 34 if fatal error,
3701 33 if had nonfatal errors, else success. */
3702
3703int
3704main (argc, argv, envp)
3705 int argc;
3706 char **argv;
3707 char **envp;
3708{
3709 register int i;
3710 char *filename = 0;
3711 int flag_print_mem = 0;
3712 int version_flag = 0;
3713 char *p;
3714
3715 /* save in case md file wants to emit args as a comment. */
3716 save_argc = argc;
3717 save_argv = argv;
3718
3719 p = argv[0] + strlen (argv[0]);
128373ac
RK
3720 while (p != argv[0] && p[-1] != '/'
3721#ifdef DIR_SEPARATOR
3722 && p[-1] != DIR_SEPARATOR
3723#endif
3724 )
3725 --p;
4291d9c8
RS
3726 progname = p;
3727
3728#ifdef RLIMIT_STACK
3729 /* Get rid of any avoidable limit on stack size. */
3730 {
3731 struct rlimit rlim;
3732
0f41302f 3733 /* Set the stack limit huge so that alloca does not fail. */
4291d9c8
RS
3734 getrlimit (RLIMIT_STACK, &rlim);
3735 rlim.rlim_cur = rlim.rlim_max;
3736 setrlimit (RLIMIT_STACK, &rlim);
3737 }
3738#endif /* RLIMIT_STACK */
3739
3740 signal (SIGFPE, float_signal);
3741
935d4b07 3742#ifdef SIGPIPE
4291d9c8 3743 signal (SIGPIPE, pipe_closed);
935d4b07 3744#endif
4291d9c8
RS
3745
3746 decl_printable_name = decl_name;
3747 lang_expand_expr = (struct rtx_def *(*)()) do_abort;
3748
3749 /* Initialize whether `char' is signed. */
3750 flag_signed_char = DEFAULT_SIGNED_CHAR;
3751#ifdef DEFAULT_SHORT_ENUMS
3752 /* Initialize how much space enums occupy, by default. */
3753 flag_short_enums = DEFAULT_SHORT_ENUMS;
3754#endif
3755
3756 /* Scan to see what optimization level has been specified. That will
3757 determine the default value of many flags. */
3758 for (i = 1; i < argc; i++)
3759 {
3760 if (!strcmp (argv[i], "-O"))
3761 {
3762 optimize = 1;
3763 }
3764 else if (argv[i][0] == '-' && argv[i][1] == 'O')
3765 {
3766 /* Handle -O2, -O3, -O69, ... */
3767 char *p = &argv[i][2];
3768 int c;
3769
3770 while (c = *p++)
3771 if (! (c >= '0' && c <= '9'))
3772 break;
3773 if (c == 0)
3774 optimize = atoi (&argv[i][2]);
3775 }
3776 }
3777
3778 obey_regdecls = (optimize == 0);
4291d9c8
RS
3779
3780 if (optimize >= 1)
3781 {
6731a3e3 3782 flag_defer_pop = 1;
4291d9c8
RS
3783 flag_thread_jumps = 1;
3784#ifdef DELAY_SLOTS
3785 flag_delayed_branch = 1;
7e89c3a3
RK
3786#endif
3787#ifdef CAN_DEBUG_WITHOUT_FP
3788 flag_omit_frame_pointer = 1;
4291d9c8 3789#endif
9ae8ffe7 3790 flag_alias_check = 1;
4291d9c8
RS
3791 }
3792
3793 if (optimize >= 2)
3794 {
3795 flag_cse_follow_jumps = 1;
8b3686ed 3796 flag_cse_skip_blocks = 1;
4291d9c8
RS
3797 flag_expensive_optimizations = 1;
3798 flag_strength_reduce = 1;
3799 flag_rerun_cse_after_loop = 1;
ac266247 3800 flag_caller_saves = 1;
4ac8e06e 3801 flag_force_mem = 1;
4291d9c8
RS
3802#ifdef INSN_SCHEDULING
3803 flag_schedule_insns = 1;
3804 flag_schedule_insns_after_reload = 1;
3805#endif
8c660648 3806 flag_regmove = 1;
4291d9c8
RS
3807 }
3808
7e89c3a3
RK
3809 if (optimize >= 3)
3810 {
3811 flag_inline_functions = 1;
3812 }
3813
c1da383f
DE
3814 /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
3815 modify it. */
3816 target_flags = 0;
3817 set_target_switch ("");
3818
4291d9c8
RS
3819#ifdef OPTIMIZATION_OPTIONS
3820 /* Allow default optimizations to be specified on a per-machine basis. */
3821 OPTIMIZATION_OPTIONS (optimize);
3822#endif
3823
3824 /* Initialize register usage now so switches may override. */
3825 init_reg_sets ();
3826
4291d9c8
RS
3827 for (i = 1; i < argc; i++)
3828 {
b99933c7
RS
3829 int j;
3830 /* If this is a language-specific option,
3831 decode it in a language-specific way. */
3832 for (j = 0; lang_options[j] != 0; j++)
7e6c0864
RK
3833 if (!strncmp (argv[i], lang_options[j],
3834 strlen (lang_options[j])))
b99933c7
RS
3835 break;
3836 if (lang_options[j] != 0)
3837 /* If the option is valid for *some* language,
3838 treat it as valid even if this language doesn't understand it. */
3839 lang_decode_option (argv[i]);
3840 else if (argv[i][0] == '-' && argv[i][1] != 0)
4291d9c8
RS
3841 {
3842 register char *str = argv[i] + 1;
3843 if (str[0] == 'Y')
3844 str++;
3845
3846 if (str[0] == 'm')
3847 set_target_switch (&str[1]);
3848 else if (!strcmp (str, "dumpbase"))
3849 {
3850 dump_base_name = argv[++i];
3851 }
3852 else if (str[0] == 'd')
3853 {
3854 register char *p = &str[1];
3855 while (*p)
3856 switch (*p++)
3857 {
3858 case 'a':
0d332add 3859 branch_prob_dump = 1;
4291d9c8
RS
3860 combine_dump = 1;
3861 dbr_sched_dump = 1;
3862 flow_dump = 1;
3863 global_reg_dump = 1;
3864 jump_opt_dump = 1;
3865 jump2_opt_dump = 1;
3866 local_reg_dump = 1;
3867 loop_dump = 1;
8c660648 3868 regmove_dump = 1;
4291d9c8
RS
3869 rtl_dump = 1;
3870 cse_dump = 1, cse2_dump = 1;
3871 sched_dump = 1;
3872 sched2_dump = 1;
3873 stack_reg_dump = 1;
3874 break;
0d332add
DE
3875 case 'b':
3876 branch_prob_dump = 1;
3877 break;
4291d9c8
RS
3878 case 'k':
3879 stack_reg_dump = 1;
3880 break;
3881 case 'c':
3882 combine_dump = 1;
3883 break;
3884 case 'd':
3885 dbr_sched_dump = 1;
3886 break;
3887 case 'f':
3888 flow_dump = 1;
3889 break;
3890 case 'g':
3891 global_reg_dump = 1;
3892 break;
3893 case 'j':
3894 jump_opt_dump = 1;
3895 break;
3896 case 'J':
3897 jump2_opt_dump = 1;
3898 break;
3899 case 'l':
3900 local_reg_dump = 1;
3901 break;
3902 case 'L':
3903 loop_dump = 1;
3904 break;
3905 case 'm':
3906 flag_print_mem = 1;
3907 break;
3908 case 'p':
3909 flag_print_asm_name = 1;
3910 break;
3911 case 'r':
3912 rtl_dump = 1;
3913 break;
3914 case 's':
3915 cse_dump = 1;
3916 break;
3917 case 't':
3918 cse2_dump = 1;
3919 break;
8c660648
JL
3920 case 'N':
3921 regmove_dump = 1;
3922 break;
4291d9c8
RS
3923 case 'S':
3924 sched_dump = 1;
3925 break;
3926 case 'R':
3927 sched2_dump = 1;
3928 break;
3929 case 'y':
3930 set_yydebug (1);
3931 break;
4291d9c8
RS
3932 case 'x':
3933 rtl_dump_and_exit = 1;
3934 break;
3d5cdd42
DE
3935 case 'A':
3936 flag_debug_asm = 1;
3937 break;
4291d9c8
RS
3938 }
3939 }
3940 else if (str[0] == 'f')
3941 {
4291d9c8
RS
3942 register char *p = &str[1];
3943 int found = 0;
3944
3945 /* Some kind of -f option.
3946 P's value is the option sans `-f'.
3947 Search for it in the table of options. */
3948
3949 for (j = 0;
3950 !found && j < sizeof (f_options) / sizeof (f_options[0]);
3951 j++)
3952 {
3953 if (!strcmp (p, f_options[j].string))
3954 {
3955 *f_options[j].variable = f_options[j].on_value;
3956 /* A goto here would be cleaner,
3957 but breaks the vax pcc. */
3958 found = 1;
3959 }
3960 if (p[0] == 'n' && p[1] == 'o' && p[2] == '-'
3961 && ! strcmp (p+3, f_options[j].string))
3962 {
3963 *f_options[j].variable = ! f_options[j].on_value;
3964 found = 1;
3965 }
3966 }
3967
3968 if (found)
3969 ;
8c660648
JL
3970#ifdef HAIFA
3971#ifdef INSN_SCHEDULING
3972 else if (!strncmp (p, "sched-verbose-",14))
3973 fix_sched_param("verbose",&p[14]);
3974 else if (!strncmp (p, "sched-max-",10))
3975 fix_sched_param("max",&p[10]);
3976 else if (!strncmp (p, "sched-inter-max-b-",18))
3977 fix_sched_param("interblock-max-blocks",&p[18]);
3978 else if (!strncmp (p, "sched-inter-max-i-",18))
3979 fix_sched_param("interblock-max-insns",&p[18]);
3980#endif
3981#endif /* HAIFA */
4291d9c8
RS
3982 else if (!strncmp (p, "fixed-", 6))
3983 fix_register (&p[6], 1, 1);
3984 else if (!strncmp (p, "call-used-", 10))
3985 fix_register (&p[10], 0, 1);
3986 else if (!strncmp (p, "call-saved-", 11))
3987 fix_register (&p[11], 0, 0);
b99933c7 3988 else
4291d9c8
RS
3989 error ("Invalid option `%s'", argv[i]);
3990 }
3991 else if (str[0] == 'O')
3992 {
3993 register char *p = str+1;
3994 while (*p && *p >= '0' && *p <= '9')
3995 p++;
3996 if (*p == '\0')
3997 ;
3998 else
3999 error ("Invalid option `%s'", argv[i]);
4000 }
4001 else if (!strcmp (str, "pedantic"))
4002 pedantic = 1;
4003 else if (!strcmp (str, "pedantic-errors"))
4004 flag_pedantic_errors = pedantic = 1;
4291d9c8
RS
4005 else if (!strcmp (str, "quiet"))
4006 quiet_flag = 1;
4007 else if (!strcmp (str, "version"))
4008 version_flag = 1;
4009 else if (!strcmp (str, "w"))
4010 inhibit_warnings = 1;
4011 else if (!strcmp (str, "W"))
4012 {
4013 extra_warnings = 1;
fa1a4543
RS
4014 /* We save the value of warn_uninitialized, since if they put
4015 -Wuninitialized on the command line, we need to generate a
4016 warning about not using it without also specifying -O. */
4017 if (warn_uninitialized != 1)
4018 warn_uninitialized = 2;
4291d9c8
RS
4019 }
4020 else if (str[0] == 'W')
4021 {
4291d9c8
RS
4022 register char *p = &str[1];
4023 int found = 0;
4024
4025 /* Some kind of -W option.
4026 P's value is the option sans `-W'.
4027 Search for it in the table of options. */
4028
4029 for (j = 0;
4030 !found && j < sizeof (W_options) / sizeof (W_options[0]);
4031 j++)
4032 {
4033 if (!strcmp (p, W_options[j].string))
4034 {
4035 *W_options[j].variable = W_options[j].on_value;
4036 /* A goto here would be cleaner,
4037 but breaks the vax pcc. */
4038 found = 1;
4039 }
4040 if (p[0] == 'n' && p[1] == 'o' && p[2] == '-'
4041 && ! strcmp (p+3, W_options[j].string))
4042 {
4043 *W_options[j].variable = ! W_options[j].on_value;
4044 found = 1;
4045 }
4046 }
4047
4048 if (found)
4049 ;
4050 else if (!strncmp (p, "id-clash-", 9))
4051 {
4052 char *endp = p + 9;
4053
4054 while (*endp)
4055 {
4056 if (*endp >= '0' && *endp <= '9')
4057 endp++;
4058 else
7085b873
RS
4059 {
4060 error ("Invalid option `%s'", argv[i]);
4061 goto id_clash_lose;
4062 }
4291d9c8
RS
4063 }
4064 warn_id_clash = 1;
4065 id_clash_len = atoi (str + 10);
7085b873 4066 id_clash_lose: ;
4291d9c8 4067 }
b51e9c62
RK
4068 else if (!strncmp (p, "larger-than-", 12))
4069 {
4070 char *endp = p + 12;
4071
4072 while (*endp)
4073 {
4074 if (*endp >= '0' && *endp <= '9')
4075 endp++;
4076 else
4077 {
4078 error ("Invalid option `%s'", argv[i]);
4079 goto larger_than_lose;
4080 }
4081 }
4082 warn_larger_than = 1;
4083 larger_than_size = atoi (str + 13);
4084 larger_than_lose: ;
4085 }
4291d9c8
RS
4086 else
4087 error ("Invalid option `%s'", argv[i]);
4088 }
4089 else if (!strcmp (str, "p"))
ca695ac9 4090 {
c2d12c8b 4091 profile_flag = 1;
ca695ac9 4092 }
4291d9c8
RS
4093 else if (!strcmp (str, "a"))
4094 {
4095#if !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4096 warning ("`-a' option (basic block profile) not supported");
4097#else
ec6c615d
RK
4098 profile_block_flag = (profile_block_flag < 2) ? 1 : 3;
4099#endif
4100 }
4101 else if (!strcmp (str, "ax"))
4102 {
4103#if !defined (FUNCTION_BLOCK_PROFILER_EXIT) || !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4104 warning ("`-ax' option (jump profiling) not supported");
4105#else
4106 profile_block_flag = (!profile_block_flag
4107 || profile_block_flag == 2) ? 2 : 3;
4291d9c8
RS
4108#endif
4109 }
4110 else if (str[0] == 'g')
4111 {
4291d9c8
RS
4112 unsigned len;
4113 unsigned level;
ff482cef
DE
4114 /* A lot of code assumes write_symbols == NO_DEBUG if the
4115 debugging level is 0 (thus -gstabs1 -gstabs0 would lose track
4116 of what debugging type has been selected). This records the
4117 selected type. It is an error to specify more than one
4118 debugging type. */
4119 static enum debug_info_type selected_debug_type = NO_DEBUG;
4120 /* Non-zero if debugging format has been explicitly set.
4121 -g and -ggdb don't explicitly set the debugging format so
4122 -gdwarf -g3 is equivalent to -gdwarf3. */
4123 static int type_explicitly_set_p = 0;
4124 /* Table of supported debugging formats. */
4125 static struct {
4126 char *arg;
4127 /* Since PREFERRED_DEBUGGING_TYPE isn't necessarily a
4128 constant expression, we use NO_DEBUG in its place. */
4129 enum debug_info_type debug_type;
4130 int use_extensions_p;
4131 } *da, debug_args[] = {
4132 { "g", NO_DEBUG, DEFAULT_GDB_EXTENSIONS },
4133 { "ggdb", NO_DEBUG, 1 },
4134#ifdef DBX_DEBUGGING_INFO
4135 { "gstabs", DBX_DEBUG, 0 },
4136 { "gstabs+", DBX_DEBUG, 1 },
4137#endif
4138#ifdef DWARF_DEBUGGING_INFO
4139 { "gdwarf", DWARF_DEBUG, 0 },
4140 { "gdwarf+", DWARF_DEBUG, 1 },
9a666dda 4141#endif
a94dbf2c
JM
4142#ifdef DWARF2_DEBUGGING_INFO
4143 { "gdwarf-2", DWARF2_DEBUG, 0 },
ff482cef
DE
4144#endif
4145#ifdef XCOFF_DEBUGGING_INFO
4146 { "gxcoff", XCOFF_DEBUG, 0 },
4147 { "gxcoff+", XCOFF_DEBUG, 1 },
4148#endif
4149#ifdef SDB_DEBUGGING_INFO
4150 { "gcoff", SDB_DEBUG, 0 },
4151#endif
4152 { 0, 0, 0 }
4153 };
4154 /* Indexed by enum debug_info_type. */
4155 static char *debug_type_names[] = {
9a666dda 4156 "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff"
ff482cef 4157 };
4291d9c8 4158
ff482cef
DE
4159 /* Look up STR in the table. */
4160 for (da = debug_args; da->arg; da++)
4161 {
9a666dda 4162 if (! strncmp (str, da->arg, strlen (da->arg)))
ff482cef
DE
4163 {
4164 enum debug_info_type type = da->debug_type;
9a666dda
JM
4165 char *p, *q;
4166
4167 p = str + strlen (da->arg);
4168 if (*p && (*p < '0' || *p > '9'))
4169 continue;
4170 q = p;
5d38efae 4171 len = p - str;
9a666dda
JM
4172 while (*q && (*q >= '0' && *q <= '9'))
4173 q++;
4174 if (*p)
4175 level = atoi (p);
4176 else
4177 level = 2; /* default debugging info level */
4178 if (*q || level > 3)
4179 {
4180 warning ("invalid debug level specification in option: `-%s'",
4181 str);
4182 /* ??? This error message is incorrect in the case of
4183 -g4 -g. */
4184 warning ("no debugging information will be generated");
4185 level = 0;
4186 }
4187
ff482cef 4188 if (type == NO_DEBUG)
fe0986b4
JM
4189 {
4190 type = PREFERRED_DEBUGGING_TYPE;
4191 if (len > 1 && strncmp (str, "ggdb", len) == 0)
4192 {
4193#ifdef DWARF2_DEBUGGING_INFO
4194 type = DWARF2_DEBUG;
417b0fa2
JW
4195#else
4196#ifdef DBX_DEBUGGING_INFO
fe0986b4 4197 type = DBX_DEBUG;
417b0fa2 4198#endif
fe0986b4
JM
4199#endif
4200 }
4201 }
ff482cef 4202
e38eaffd
RK
4203 if (type == NO_DEBUG)
4204 warning ("`-%s' not supported by this configuration of GCC",
4205 str);
4206
ff482cef
DE
4207 /* Does it conflict with an already selected type? */
4208 if (type_explicitly_set_p
4209 /* -g/-ggdb don't conflict with anything */
4210 && da->debug_type != NO_DEBUG
4211 && type != selected_debug_type)
4212 warning ("`-%s' ignored, conflicts with `-g%s'",
4213 str, debug_type_names[(int) selected_debug_type]);
4214 else
4215 {
4216 /* If the format has already been set, -g/-ggdb
4217 only change the debug level. */
4218 if (type_explicitly_set_p
4219 && da->debug_type == NO_DEBUG)
4220 ; /* don't change debugging type */
4221 else
4222 {
4223 selected_debug_type = type;
4224 type_explicitly_set_p = da->debug_type != NO_DEBUG;
4225 }
4226 write_symbols = (level == 0
4227 ? NO_DEBUG
4228 : selected_debug_type);
4229 use_gnu_debug_info_extensions = da->use_extensions_p;
4230 debug_info_level = (enum debug_info_level) level;
4231 }
4232 break;
4233 }
4234 }
4235 if (! da->arg)
7276e85d
RK
4236 warning ("`-%s' not supported by this configuration of GCC",
4237 str);
4291d9c8
RS
4238 }
4239 else if (!strcmp (str, "o"))
4240 {
4241 asm_file_name = argv[++i];
4242 }
4243 else if (str[0] == 'G')
4244 {
4245 g_switch_set = TRUE;
4246 g_switch_value = atoi ((str[1] != '\0') ? str+1 : argv[++i]);
4247 }
f246a305
RS
4248 else if (!strncmp (str, "aux-info", 8))
4249 {
4250 flag_gen_aux_info = 1;
4251 aux_info_file_name = (str[8] != '\0' ? str+8 : argv[++i]);
4252 }
4291d9c8
RS
4253 else
4254 error ("Invalid option `%s'", argv[i]);
4255 }
4256 else if (argv[i][0] == '+')
b99933c7 4257 error ("Invalid option `%s'", argv[i]);
4291d9c8
RS
4258 else
4259 filename = argv[i];
4260 }
4261
f602c208
RK
4262 /* Checker uses the frame pointer. */
4263 if (flag_check_memory_usage)
4264 flag_omit_frame_pointer = 0;
4265
ca695ac9 4266 /* Initialize for bytecode output. A good idea to do this as soon as
0f41302f 4267 possible after the "-f" options have been parsed. */
ca695ac9
JB
4268 if (output_bytecode)
4269 {
4270#ifndef TARGET_SUPPORTS_BYTECODE
4271 /* Just die with a fatal error if not supported */
40e6003c 4272 fatal ("-fbytecode not supported for this target");
ca695ac9
JB
4273#else
4274 bc_initialize ();
4275#endif
4276 }
4277
f246a305
RS
4278 if (optimize == 0)
4279 {
a2468e45
BK
4280 /* Inlining does not work if not optimizing,
4281 so force it not to be done. */
f246a305
RS
4282 flag_no_inline = 1;
4283 warn_inline = 0;
a2468e45
BK
4284
4285 /* The c_decode_option and lang_decode_option functions set
4286 this to `2' if -Wall is used, so we can avoid giving out
4287 lots of errors for people who don't realize what -Wall does. */
4288 if (warn_uninitialized == 1)
4289 warning ("-Wuninitialized is not supported without -O");
f246a305
RS
4290 }
4291
4291d9c8
RS
4292#ifdef OVERRIDE_OPTIONS
4293 /* Some machines may reject certain combinations of options. */
4294 OVERRIDE_OPTIONS;
4295#endif
4296
d1485032
JM
4297 if (exceptions_via_longjmp == 2)
4298 {
4299#ifdef DWARF2_UNWIND_INFO
4300 exceptions_via_longjmp = ! DWARF2_UNWIND_INFO;
4301#else
4302 exceptions_via_longjmp = 1;
4303#endif
4304 }
4305
ec6c615d
RK
4306 if (profile_block_flag == 3)
4307 {
4308 warning ("`-ax' and `-a' are conflicting options. `-a' ignored.");
4309 profile_block_flag = 2;
4310 }
4311
4291d9c8
RS
4312 /* Unrolling all loops implies that standard loop unrolling must also
4313 be done. */
4314 if (flag_unroll_all_loops)
4315 flag_unroll_loops = 1;
4316 /* Loop unrolling requires that strength_reduction be on also. Silently
4317 turn on strength reduction here if it isn't already on. Also, the loop
4318 unrolling code assumes that cse will be run after loop, so that must
4319 be turned on also. */
4320 if (flag_unroll_loops)
4321 {
4322 flag_strength_reduce = 1;
4323 flag_rerun_cse_after_loop = 1;
4324 }
4325
4326 /* Warn about options that are not supported on this machine. */
4327#ifndef INSN_SCHEDULING
4328 if (flag_schedule_insns || flag_schedule_insns_after_reload)
4329 warning ("instruction scheduling not supported on this target machine");
4330#endif
4331#ifndef DELAY_SLOTS
4332 if (flag_delayed_branch)
4333 warning ("this target machine does not have delayed branches");
4334#endif
4335
4336 /* If we are in verbose mode, write out the version and maybe all the
4337 option flags in use. */
4338 if (version_flag)
4339 {
3d5cdd42 4340 print_version (stderr, "");
4291d9c8 4341 if (! quiet_flag)
3d5cdd42 4342 print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
4291d9c8
RS
4343 }
4344
4291d9c8
RS
4345 compile_file (filename);
4346
876ac40d 4347#if !defined(OS2) && !defined(VMS) && (!defined(_WIN32) || defined (__CYGWIN32__))
4291d9c8
RS
4348 if (flag_print_mem)
4349 {
4350 char *lim = (char *) sbrk (0);
4351
4352 fprintf (stderr, "Data size %d.\n",
b61b1c91 4353 lim - (char *) &environ);
4291d9c8
RS
4354 fflush (stderr);
4355
4356#ifdef USG
4357 system ("ps -l 1>&2");
4358#else /* not USG */
4359 system ("ps v");
4360#endif /* not USG */
4361 }
876ac40d 4362#endif /* ! OS2 && ! VMS && (! _WIN32 || CYGWIN32) */
4291d9c8
RS
4363
4364 if (errorcount)
4365 exit (FATAL_EXIT_CODE);
4366 if (sorrycount)
4367 exit (FATAL_EXIT_CODE);
4368 exit (SUCCESS_EXIT_CODE);
299846f2 4369 return 0;
4291d9c8
RS
4370}
4371\f
4372/* Decode -m switches. */
4373
4374/* Here is a table, controlled by the tm.h file, listing each -m switch
4375 and which bits in `target_switches' it should set or clear.
4376 If VALUE is positive, it is bits to set.
4377 If VALUE is negative, -VALUE is bits to clear.
4378 (The sign bit is not used so there is no confusion.) */
4379
4380struct {char *name; int value;} target_switches []
4381 = TARGET_SWITCHES;
4382
4383/* This table is similar, but allows the switch to have a value. */
4384
4385#ifdef TARGET_OPTIONS
4386struct {char *prefix; char ** variable;} target_options []
4387 = TARGET_OPTIONS;
4388#endif
4389
4390/* Decode the switch -mNAME. */
4391
4392void
4393set_target_switch (name)
4394 char *name;
4395{
4396 register int j;
4397 int valid = 0;
4398
4399 for (j = 0; j < sizeof target_switches / sizeof target_switches[0]; j++)
4400 if (!strcmp (target_switches[j].name, name))
4401 {
4402 if (target_switches[j].value < 0)
4403 target_flags &= ~-target_switches[j].value;
4404 else
4405 target_flags |= target_switches[j].value;
4406 valid = 1;
4407 }
4408
4409#ifdef TARGET_OPTIONS
4410 if (!valid)
4411 for (j = 0; j < sizeof target_options / sizeof target_options[0]; j++)
4412 {
4413 int len = strlen (target_options[j].prefix);
4414 if (!strncmp (target_options[j].prefix, name, len))
4415 {
4416 *target_options[j].variable = name + len;
4417 valid = 1;
4418 }
4419 }
4420#endif
4421
4422 if (!valid)
4423 error ("Invalid option `%s'", name);
4424}
4425\f
3d5cdd42
DE
4426/* Print version information to FILE.
4427 Each line begins with INDENT (for the case where FILE is the
4428 assembler output file). */
4291d9c8 4429
3d5cdd42
DE
4430void
4431print_version (file, indent)
4432 FILE *file;
4433 char *indent;
4291d9c8 4434{
3d5cdd42
DE
4435 fprintf (file, "%s%s%s version %s", indent, *indent != 0 ? " " : "",
4436 language_string, version_string);
4437 fprintf (file, " (%s)", TARGET_NAME);
4438#ifdef __GNUC__
4439#ifndef __VERSION__
4440#define __VERSION__ "[unknown]"
4441#endif
4442 fprintf (file, " compiled by GNU C version %s.\n", __VERSION__);
4443#else
4444 fprintf (file, " compiled by CC.\n");
4445#endif
4446}
4291d9c8 4447
3d5cdd42 4448/* Print an option value and return the adjusted position in the line.
309a8875
DE
4449 ??? We don't handle error returns from fprintf (disk full); presumably
4450 other code will catch a disk full though. */
4291d9c8 4451
3d5cdd42
DE
4452int
4453print_single_switch (file, pos, max, indent, sep, term, type, name)
4454 FILE *file;
4455 int pos, max;
4456 char *indent, *sep, *term, *type, *name;
4457{
309a8875
DE
4458 /* The ultrix fprintf returns 0 on success, so compute the result we want
4459 here since we need it for the following test. */
4460 int len = strlen (sep) + strlen (type) + strlen (name);
4461
3d5cdd42 4462 if (pos != 0
309a8875 4463 && pos + len > max)
4291d9c8 4464 {
3d5cdd42
DE
4465 fprintf (file, "%s", term);
4466 pos = 0;
4291d9c8 4467 }
3d5cdd42
DE
4468 if (pos == 0)
4469 {
309a8875
DE
4470 fprintf (file, "%s", indent);
4471 pos = strlen (indent);
3d5cdd42 4472 }
309a8875
DE
4473 fprintf (file, "%s%s%s", sep, type, name);
4474 pos += len;
3d5cdd42 4475 return pos;
4291d9c8
RS
4476}
4477
3d5cdd42
DE
4478/* Print active target switches to FILE.
4479 POS is the current cursor position and MAX is the size of a "line".
4480 Each line begins with INDENT and ends with TERM.
4481 Each switch is separated from the next by SEP. */
4291d9c8 4482
3d5cdd42
DE
4483void
4484print_switch_values (file, pos, max, indent, sep, term)
4485 FILE *file;
4486 int pos, max;
4487 char *indent, *sep, *term;
4291d9c8 4488{
3d5cdd42
DE
4489 int j, flags;
4490 char **p;
4491
4492 /* Print the options as passed. */
4291d9c8 4493
3d5cdd42
DE
4494 pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
4495 "options passed: ", "");
4496
520e7ff5 4497 for (p = &save_argv[1]; *p != NULL; p++)
3d5cdd42
DE
4498 if (**p == '-')
4499 {
4500 /* Ignore these. */
520e7ff5
DE
4501 if (strcmp (*p, "-o") == 0)
4502 {
4503 if (p[1] != NULL)
4504 p++;
4505 continue;
4506 }
3d5cdd42
DE
4507 if (strcmp (*p, "-quiet") == 0)
4508 continue;
4509 if (strcmp (*p, "-version") == 0)
4510 continue;
4511 if ((*p)[1] == 'd')
4512 continue;
4513
4514 pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
4515 }
4516 if (pos > 0)
4517 fprintf (file, "%s", term);
4518
4519 /* Print the -f and -m options that have been enabled.
4520 We don't handle language specific options but printing argv
4521 should suffice. */
4522
4523 pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
4524 "options enabled: ", "");
4291d9c8
RS
4525
4526 for (j = 0; j < sizeof f_options / sizeof f_options[0]; j++)
4527 if (*f_options[j].variable == f_options[j].on_value)
3d5cdd42
DE
4528 pos = print_single_switch (file, pos, max, indent, sep, term,
4529 "-f", f_options[j].string);
4291d9c8 4530
3d5cdd42 4531 /* Print target specific options. */
4291d9c8 4532
3d5cdd42 4533 flags = target_flags;
4291d9c8
RS
4534 for (j = 0; j < sizeof target_switches / sizeof target_switches[0]; j++)
4535 if (target_switches[j].name[0] != '\0'
4536 && target_switches[j].value > 0
4537 && ((target_switches[j].value & target_flags)
4538 == target_switches[j].value))
3d5cdd42
DE
4539 {
4540 pos = print_single_switch (file, pos, max, indent, sep, term,
4541 "-m", target_switches[j].name);
4542 flags &= ~ target_switches[j].value;
4543 }
4544
4545#ifdef TARGET_OPTIONS
4546 for (j = 0; j < sizeof target_options / sizeof target_options[0]; j++)
4547 if (*target_options[j].variable != NULL)
4548 {
4549 char prefix[256];
4550 sprintf (prefix, "-m%s", target_options[j].prefix);
4551 pos = print_single_switch (file, pos, max, indent, sep, term,
4552 prefix, *target_options[j].variable);
4553 }
4554#endif
4291d9c8 4555
3d5cdd42 4556 fprintf (file, "%s", term);
4291d9c8 4557}
9a666dda
JM
4558
4559/* Record the beginning of a new source file, named FILENAME. */
4560
4561void
4562debug_start_source_file (filename)
4563 register char *filename;
4564{
4565#ifdef DBX_DEBUGGING_INFO
4566 if (write_symbols == DBX_DEBUG)
4567 dbxout_start_new_source_file (filename);
4568#endif
4569#ifdef DWARF_DEBUGGING_INFO
4570 if (debug_info_level == DINFO_LEVEL_VERBOSE
4571 && write_symbols == DWARF_DEBUG)
4572 dwarfout_start_new_source_file (filename);
4573#endif /* DWARF_DEBUGGING_INFO */
4574#ifdef DWARF2_DEBUGGING_INFO
4575 if (debug_info_level == DINFO_LEVEL_VERBOSE
4576 && write_symbols == DWARF2_DEBUG)
4577 dwarf2out_start_source_file (filename);
4578#endif /* DWARF2_DEBUGGING_INFO */
cc694a81
DE
4579#ifdef SDB_DEBUGGING_INFO
4580 if (write_symbols == SDB_DEBUG)
4581 sdbout_start_new_source_file (filename);
4582#endif
9a666dda
JM
4583}
4584
4585/* Record the resumption of a source file. LINENO is the line number in
4586 the source file we are returning to. */
4587
4588void
4589debug_end_source_file (lineno)
4590 register unsigned lineno;
4591{
4592#ifdef DBX_DEBUGGING_INFO
4593 if (write_symbols == DBX_DEBUG)
4594 dbxout_resume_previous_source_file ();
4595#endif
4596#ifdef DWARF_DEBUGGING_INFO
4597 if (debug_info_level == DINFO_LEVEL_VERBOSE
4598 && write_symbols == DWARF_DEBUG)
4599 dwarfout_resume_previous_source_file (lineno);
4600#endif /* DWARF_DEBUGGING_INFO */
4601#ifdef DWARF2_DEBUGGING_INFO
4602 if (debug_info_level == DINFO_LEVEL_VERBOSE
4603 && write_symbols == DWARF2_DEBUG)
4604 dwarf2out_end_source_file ();
4605#endif /* DWARF2_DEBUGGING_INFO */
cc694a81
DE
4606#ifdef SDB_DEBUGGING_INFO
4607 if (write_symbols == SDB_DEBUG)
4608 sdbout_resume_previous_source_file ();
4609#endif
9a666dda
JM
4610}
4611
4612/* Called from check_newline in c-parse.y. The `buffer' parameter contains
4613 the tail part of the directive line, i.e. the part which is past the
4614 initial whitespace, #, whitespace, directive-name, whitespace part. */
4615
4616void
4617debug_define (lineno, buffer)
4618 register unsigned lineno;
4619 register char *buffer;
4620{
4621#ifdef DWARF_DEBUGGING_INFO
4622 if (debug_info_level == DINFO_LEVEL_VERBOSE
4623 && write_symbols == DWARF_DEBUG)
4624 dwarfout_define (lineno, buffer);
4625#endif /* DWARF_DEBUGGING_INFO */
4626#ifdef DWARF2_DEBUGGING_INFO
4627 if (debug_info_level == DINFO_LEVEL_VERBOSE
4628 && write_symbols == DWARF2_DEBUG)
4629 dwarf2out_define (lineno, buffer);
4630#endif /* DWARF2_DEBUGGING_INFO */
4631}
4632
4633/* Called from check_newline in c-parse.y. The `buffer' parameter contains
4634 the tail part of the directive line, i.e. the part which is past the
4635 initial whitespace, #, whitespace, directive-name, whitespace part. */
4636
4637void
4638debug_undef (lineno, buffer)
4639 register unsigned lineno;
4640 register char *buffer;
4641{
4642#ifdef DWARF_DEBUGGING_INFO
4643 if (debug_info_level == DINFO_LEVEL_VERBOSE
4644 && write_symbols == DWARF_DEBUG)
4645 dwarfout_undef (lineno, buffer);
4646#endif /* DWARF_DEBUGGING_INFO */
4647#ifdef DWARF2_DEBUGGING_INFO
4648 if (debug_info_level == DINFO_LEVEL_VERBOSE
4649 && write_symbols == DWARF2_DEBUG)
4650 dwarf2out_undef (lineno, buffer);
4651#endif /* DWARF2_DEBUGGING_INFO */
4652}
This page took 1.112091 seconds and 5 git commands to generate.