OSDN Git Service

(compile_file): If support dbx output,
[pf3gnuchains/gcc-fork.git] / gcc / toplev.c
1 /* Top level of GNU C compiler
2    Copyright (C) 1987, 1988, 1989, 1992 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20
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"
27 #include <sys/types.h>
28 #include <stdio.h>
29 #include <signal.h>
30 #include <setjmp.h>
31
32 #include <sys/stat.h>
33
34 #ifdef USG
35 #undef FLOAT
36 #include <sys/param.h>
37 /* This is for hpux.  It is a real screw.  They should change hpux.  */
38 #undef FLOAT
39 #include <sys/times.h>
40 #include <time.h>   /* Correct for hpux at least.  Is it good on other USG?  */
41 #undef FFS  /* Some systems define this in param.h.  */
42 #else
43 #ifndef VMS
44 #include <sys/time.h>
45 #include <sys/resource.h>
46 #endif
47 #endif
48
49 #include "input.h"
50 #include "tree.h"
51 /* #include "c-tree.h" */
52 #include "rtl.h"
53 #include "flags.h"
54 #include "insn-attr.h"
55 #include "defaults.h"
56
57 #ifdef XCOFF_DEBUGGING_INFO
58 #include "xcoffout.h"
59 #endif
60 \f
61 #ifdef VMS
62 /* The extra parameters substantially improve the I/O performance.  */
63 static FILE *
64 VMS_fopen (fname, type)
65      char * fname;
66      char * type;
67 {
68   if (strcmp (type, "w") == 0)
69     return fopen (fname, type, "mbc=16", "deq=64", "fop=tef", "shr=nil");
70   return fopen (fname, type, "mbc=16");
71 }
72 #define fopen VMS_fopen
73 #endif
74
75 #ifndef DEFAULT_GDB_EXTENSIONS
76 #define DEFAULT_GDB_EXTENSIONS 1
77 #endif
78
79 extern int rtx_equal_function_value_matters;
80
81 #if ! (defined (VMS) || defined (OS2))
82 extern char **environ;
83 #endif
84 extern char *version_string, *language_string;
85
86 extern void init_lex ();
87 extern void init_decl_processing ();
88 extern void init_obstacks ();
89 extern void init_tree_codes ();
90 extern void init_rtl ();
91 extern void init_optabs ();
92 extern void init_stmt ();
93 extern void init_reg_sets ();
94 extern void dump_flow_info ();
95 extern void dump_sched_info ();
96 extern void dump_local_alloc ();
97
98 void rest_of_decl_compilation ();
99 void error ();
100 void error_with_file_and_line ();
101 void fancy_abort ();
102 #ifndef abort
103 void abort ();
104 #endif
105 void set_target_switch ();
106 static void print_switch_values ();
107 static char *decl_name ();
108
109 /* Name of program invoked, sans directories.  */
110
111 char *progname;
112
113 /* Copy of arguments to main.  */
114 int save_argc;
115 char **save_argv;
116 \f
117 /* Name of current original source file (what was input to cpp).
118    This comes from each #-command in the actual input.  */
119
120 char *input_filename;
121
122 /* Name of top-level original source file (what was input to cpp).
123    This comes from the #-command at the beginning of the actual input.
124    If there isn't any there, then this is the cc1 input file name.  */
125
126 char *main_input_filename;
127
128 /* Stream for reading from the input file.  */
129
130 FILE *finput;
131
132 /* Current line number in real source file.  */
133
134 int lineno;
135
136 /* Stack of currently pending input files.  */
137
138 struct file_stack *input_file_stack;
139
140 /* Incremented on each change to input_file_stack.  */
141 int input_file_stack_tick;
142
143 /* FUNCTION_DECL for function now being parsed or compiled.  */
144
145 extern tree current_function_decl;
146
147 /* Name to use as base of names for dump output files.  */
148
149 char *dump_base_name;
150
151 /* Bit flags that specify the machine subtype we are compiling for.
152    Bits are tested using macros TARGET_... defined in the tm.h file
153    and set by `-m...' switches.  Must be defined in rtlanal.c.  */
154
155 extern int target_flags;
156
157 /* Flags saying which kinds of debugging dump have been requested.  */
158
159 int rtl_dump = 0;
160 int rtl_dump_and_exit = 0;
161 int jump_opt_dump = 0;
162 int cse_dump = 0;
163 int loop_dump = 0;
164 int cse2_dump = 0;
165 int flow_dump = 0;
166 int combine_dump = 0;
167 int sched_dump = 0;
168 int local_reg_dump = 0;
169 int global_reg_dump = 0;
170 int sched2_dump = 0;
171 int jump2_opt_dump = 0;
172 int dbr_sched_dump = 0;
173 int flag_print_asm_name = 0;
174 int stack_reg_dump = 0;
175
176 /* Name for output file of assembly code, specified with -o.  */
177
178 char *asm_file_name;
179
180 /* Value of the -G xx switch, and whether it was passed or not.  */
181 int g_switch_value;
182 int g_switch_set;
183
184 /* Type(s) of debugging information we are producing (if any).
185    See flags.h for the definitions of the different possible
186    types of debugging information.  */
187 enum debug_info_type write_symbols = NO_DEBUG;
188
189 /* Level of debugging information we are producing.  See flags.h
190    for the definitions of the different possible levels.  */
191 enum debug_info_level debug_info_level = DINFO_LEVEL_NONE;
192
193 /* Nonzero means use GNU-only extensions in the generated symbolic
194    debugging information.  */
195 /* Currently, this only has an effect when write_symbols is set to
196    DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG.  */
197 int use_gnu_debug_info_extensions = 0;
198
199 /* Nonzero means do optimizations.  -O.
200    Particular numeric values stand for particular amounts of optimization;
201    thus, -O2 stores 2 here.  However, the optimizations beyond the basic
202    ones are not controlled directly by this variable.  Instead, they are
203    controlled by individual `flag_...' variables that are defaulted
204    based on this variable.  */
205
206 int optimize = 0;
207
208 /* Number of error messages and warning messages so far.  */
209
210 int errorcount = 0;
211 int warningcount = 0;
212 int sorrycount = 0;
213
214 /* Pointer to function to compute the name to use to print a declaration.  */
215
216 char *(*decl_printable_name) ();
217
218 /* Pointer to function to compute rtl for a language-specific tree code.  */
219
220 struct rtx_def *(*lang_expand_expr) ();
221
222 /* Pointer to function to finish handling an incomplete decl at the
223    end of compilation.  */
224
225 void (*incomplete_decl_finalize_hook) () = 0;
226
227 /* Nonzero if generating code to do profiling.  */
228
229 int profile_flag = 0;
230
231 /* Nonzero if generating code to do profiling on a line-by-line basis.  */
232
233 int profile_block_flag;
234
235 /* Nonzero for -pedantic switch: warn about anything
236    that standard spec forbids.  */
237
238 int pedantic = 0;
239
240 /* Temporarily suppress certain warnings.
241    This is set while reading code from a system header file.  */
242
243 int in_system_header = 0;
244
245 /* Nonzero means do stupid register allocation.
246    Currently, this is 1 if `optimize' is 0.  */
247
248 int obey_regdecls = 0;
249
250 /* Don't print functions as they are compiled and don't print
251    times taken by the various passes.  -quiet.  */
252
253 int quiet_flag = 0;
254 \f
255 /* -f flags.  */
256
257 /* Nonzero means `char' should be signed.  */
258
259 int flag_signed_char;
260
261 /* Nonzero means give an enum type only as many bytes as it needs.  */
262
263 int flag_short_enums;
264
265 /* Nonzero for -fcaller-saves: allocate values in regs that need to
266    be saved across function calls, if that produces overall better code.
267    Optional now, so people can test it.  */
268
269 #ifdef DEFAULT_CALLER_SAVES
270 int flag_caller_saves = 1;
271 #else
272 int flag_caller_saves = 0;
273 #endif
274
275 /* Nonzero if structures and unions should be returned in memory.
276
277    This should only be defined if compatibility with another compiler or
278    with an ABI is needed, because it results in slower code.  */
279
280 #ifndef DEFAULT_PCC_STRUCT_RETURN
281 #define DEFAULT_PCC_STRUCT_RETURN 1
282 #endif
283
284 /* Nonzero for -fpcc-struct-return: return values the same way PCC does.  */
285
286 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
287
288 /* Nonzero for -fforce-mem: load memory value into a register
289    before arithmetic on it.  This makes better cse but slower compilation.  */
290
291 int flag_force_mem = 0;
292
293 /* Nonzero for -fforce-addr: load memory address into a register before
294    reference to memory.  This makes better cse but slower compilation.  */
295
296 int flag_force_addr = 0;
297
298 /* Nonzero for -fdefer-pop: don't pop args after each function call;
299    instead save them up to pop many calls' args with one insns.  */
300
301 int flag_defer_pop = 0;
302
303 /* Nonzero for -ffloat-store: don't allocate floats and doubles
304    in extended-precision registers.  */
305
306 int flag_float_store = 0;
307
308 /* Nonzero for -fcse-follow-jumps:
309    have cse follow jumps to do a more extensive job.  */
310
311 int flag_cse_follow_jumps;
312
313 /* Nonzero for -fcse-skip-blocks:
314    have cse follow a branch around a block.  */
315 int flag_cse_skip_blocks;
316
317 /* Nonzero for -fexpensive-optimizations:
318    perform miscellaneous relatively-expensive optimizations.  */
319 int flag_expensive_optimizations;
320
321 /* Nonzero for -fthread-jumps:
322    have jump optimize output of loop.  */
323
324 int flag_thread_jumps;
325
326 /* Nonzero enables strength-reduction in loop.c.  */
327
328 int flag_strength_reduce = 0;
329
330 /* Nonzero enables loop unrolling in unroll.c.  Only loops for which the
331    number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
332    UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
333    unrolled.  */
334
335 int flag_unroll_loops;
336
337 /* Nonzero enables loop unrolling in unroll.c.  All loops are unrolled.
338    This is generally not a win.  */
339
340 int flag_unroll_all_loops;
341
342 /* Nonzero for -fwritable-strings:
343    store string constants in data segment and don't uniquize them.  */
344
345 int flag_writable_strings = 0;
346
347 /* Nonzero means don't put addresses of constant functions in registers.
348    Used for compiling the Unix kernel, where strange substitutions are
349    done on the assembly output.  */
350
351 int flag_no_function_cse = 0;
352
353 /* Nonzero for -fomit-frame-pointer:
354    don't make a frame pointer in simple functions that don't require one.  */
355
356 int flag_omit_frame_pointer = 0;
357
358 /* Nonzero to inhibit use of define_optimization peephole opts.  */
359
360 int flag_no_peephole = 0;
361
362 /* Nonzero allows GCC to violate some IEEE or ANSI rules regarding math
363    operations in the interest of optimization.  For example it allows
364    GCC to assume arguments to sqrt are nonnegative numbers, allowing
365    faster code for sqrt to be generated. */
366
367 int flag_fast_math = 0;
368
369 /* Nonzero means all references through pointers are volatile.  */
370
371 int flag_volatile;
372
373 /* Nonzero means treat all global and extern variables as global.  */
374
375 int flag_volatile_global;
376
377 /* Nonzero means just do syntax checking; don't output anything.  */
378
379 int flag_syntax_only = 0;
380
381 /* Nonzero means to rerun cse after loop optimization.  This increases
382    compilation time about 20% and picks up a few more common expressions.  */
383
384 static int flag_rerun_cse_after_loop;
385
386 /* Nonzero for -finline-functions: ok to inline functions that look like
387    good inline candidates.  */
388
389 int flag_inline_functions;
390
391 /* Nonzero for -fkeep-inline-functions: even if we make a function
392    go inline everywhere, keep its definition around for debugging
393    purposes.  */
394
395 int flag_keep_inline_functions;
396
397 /* Nonzero means that functions declared `inline' will be treated
398    as `static'.  Prevents generation of zillions of copies of unused
399    static inline functions; instead, `inlines' are written out
400    only when actually used.  Used in conjunction with -g.  Also
401    does the right thing with #pragma interface.  */
402
403 int flag_no_inline;
404
405 /* Nonzero means we should be saving declaration info into a .X file.  */
406
407 int flag_gen_aux_info = 0;
408
409 /* Specified name of aux-info file.  */
410
411 static char *aux_info_file_name;
412
413 /* Nonzero means make the text shared if supported.  */
414
415 int flag_shared_data;
416
417 /* Nonzero means schedule into delayed branch slots if supported.  */
418
419 int flag_delayed_branch;
420
421 /* Nonzero if we are compiling pure (sharable) code.
422    Value is 1 if we are doing reasonable (i.e. simple
423    offset into offset table) pic.  Value is 2 if we can
424    only perform register offsets.  */
425
426 int flag_pic;
427
428 /* Nonzero means place uninitialized global data in the bss section. */
429
430 int flag_no_common;
431
432 /* Nonzero means pretend it is OK to examine bits of target floats,
433    even if that isn't true.  The resulting code will have incorrect constants,
434    but the same series of instructions that the native compiler would make.  */
435
436 int flag_pretend_float;
437
438 /* Nonzero means change certain warnings into errors.
439    Usually these are warnings about failure to conform to some standard.  */
440
441 int flag_pedantic_errors = 0;
442
443 /* flag_schedule_insns means schedule insns within basic blocks (before
444    local_alloc).
445    flag_schedule_insns_after_reload means schedule insns after
446    global_alloc.  */
447
448 int flag_schedule_insns = 0;
449 int flag_schedule_insns_after_reload = 0;
450
451 /* -finhibit-size-directive inhibits output of .size for ELF.
452    This is used only for compiling crtstuff.c, 
453    and it may be extended to other effects
454    needed for crtstuff.c on other systems.  */
455 int flag_inhibit_size_directive = 0;
456
457 /* -fverbose-asm causes extra commentary information to be produced in
458    the generated assembly code (to make it more readable).  This option
459    is generally only of use to those who actually need to read the
460    generated assembly code (perhaps while debugging the compiler itself).  */
461
462 int flag_verbose_asm = 0;
463
464 /* -fgnu-linker specifies use of the GNU linker for initializations.
465    (Or, more generally, a linker that handles initializations.)
466    -fno-gnu-linker says that collect2 will be used.  */
467 #ifdef USE_COLLECT2
468 int flag_gnu_linker = 0;
469 #else
470 int flag_gnu_linker = 1;
471 #endif
472
473 /* Table of language-independent -f options.
474    STRING is the option name.  VARIABLE is the address of the variable.
475    ON_VALUE is the value to store in VARIABLE
476     if `-fSTRING' is seen as an option.
477    (If `-fno-STRING' is seen as an option, the opposite value is stored.)  */
478
479 struct { char *string; int *variable; int on_value;} f_options[] =
480 {
481   {"float-store", &flag_float_store, 1},
482   {"volatile", &flag_volatile, 1},
483   {"volatile-global", &flag_volatile_global, 1},
484   {"defer-pop", &flag_defer_pop, 1},
485   {"omit-frame-pointer", &flag_omit_frame_pointer, 1},
486   {"cse-follow-jumps", &flag_cse_follow_jumps, 1},
487   {"cse-skip-blocks", &flag_cse_skip_blocks, 1},
488   {"expensive-optimizations", &flag_expensive_optimizations, 1},
489   {"thread-jumps", &flag_thread_jumps, 1},
490   {"strength-reduce", &flag_strength_reduce, 1},
491   {"unroll-loops", &flag_unroll_loops, 1},
492   {"unroll-all-loops", &flag_unroll_all_loops, 1},
493   {"writable-strings", &flag_writable_strings, 1},
494   {"peephole", &flag_no_peephole, 0},
495   {"force-mem", &flag_force_mem, 1},
496   {"force-addr", &flag_force_addr, 1},
497   {"function-cse", &flag_no_function_cse, 0},
498   {"inline-functions", &flag_inline_functions, 1},
499   {"keep-inline-functions", &flag_keep_inline_functions, 1},
500   {"inline", &flag_no_inline, 0},
501   {"syntax-only", &flag_syntax_only, 1},
502   {"shared-data", &flag_shared_data, 1},
503   {"caller-saves", &flag_caller_saves, 1},
504   {"pcc-struct-return", &flag_pcc_struct_return, 1},
505   {"reg-struct-return", &flag_pcc_struct_return, 0},
506   {"delayed-branch", &flag_delayed_branch, 1},
507   {"rerun-cse-after-loop", &flag_rerun_cse_after_loop, 1},
508   {"pretend-float", &flag_pretend_float, 1},
509   {"schedule-insns", &flag_schedule_insns, 1},
510   {"schedule-insns2", &flag_schedule_insns_after_reload, 1},
511   {"pic", &flag_pic, 1},
512   {"PIC", &flag_pic, 2},
513   {"fast-math", &flag_fast_math, 1},
514   {"common", &flag_no_common, 0},
515   {"inhibit-size-directive", &flag_inhibit_size_directive, 1},
516   {"verbose-asm", &flag_verbose_asm, 1},
517   {"gnu-linker", &flag_gnu_linker, 1}
518 };
519
520 /* Table of language-specific options.  */
521
522 char *lang_options[] =
523 {
524   "-ftraditional",
525   "-traditional",
526   "-fnotraditional",
527   "-fno-traditional",
528   "-fsigned-char",
529   "-funsigned-char",
530   "-fno-signed-char",
531   "-fno-unsigned-char",
532   "-fsigned-bitfields",
533   "-funsigned-bitfields",
534   "-fno-signed-bitfields",
535   "-fno-unsigned-bitfields",
536   "-fshort-enums",
537   "-fno-short-enums",
538   "-fcond-mismatch",
539   "-fno-cond-mismatch",
540   "-fshort-double",
541   "-fno-short-double",
542   "-fasm",
543   "-fno-asm",
544   "-fbuiltin",
545   "-fno-builtin",
546   "-fno-ident",
547   "-fident",
548   "-ansi",
549   "-Wimplicit",
550   "-Wno-implicit",
551   "-Wwrite-strings",
552   "-Wno-write-strings",
553   "-Wcast-qual",
554   "-Wno-cast-qual",
555   "-Wpointer-arith",
556   "-Wno-pointer-arith",
557   "-Wstrict-prototypes",
558   "-Wno-strict-prototypes",
559   "-Wmissing-prototypes",
560   "-Wno-missing-prototypes",
561   "-Wredundant-decls",
562   "-Wno-redundant-decls",
563   "-Wnested-externs",
564   "-Wno-nested-externs",
565   "-Wtraditional",
566   "-Wno-traditional",
567   "-Wformat",
568   "-Wno-format",
569   "-Wchar-subscripts",
570   "-Wno-char-subscripts",
571   "-Wconversion",
572   "-Wno-conversion",
573   "-Wparentheses",
574   "-Wno-parentheses",
575   "-Wcomment",
576   "-Wno-comment",
577   "-Wcomments",
578   "-Wno-comments",
579   "-Wtrigraphs",
580   "-Wno-trigraphs",
581   "-Wimport",
582   "-Wno-import",
583   "-Wmissing-braces",
584   "-Wno-missing-braces",
585   "-Wall",
586
587   /* These are for C++.  */
588   "-+e0",                       /* gcc.c tacks the `-' on the front.  */
589   "-+e1",
590   "-+e2",
591   "-fsave-memoized",
592   "-fno-save-memoized",
593   "-fcadillac",
594   "-fno-cadillac",
595   "-fgc",
596   "-fno-gc",
597   "-flabels-ok",
598   "-fno-labels-ok",
599   "-fstats",
600   "-fno-stats",
601   "-fthis-is-variable",
602   "-fno-this-is-variable",
603   "-fstrict-prototype",
604   "-fno-strict-prototype",
605   "-fall-virtual",
606   "-fno-all-virtual",
607   "-fmemoize-lookups",
608   "-fno-memoize-lookups",
609   "-felide-constructors",
610   "-fno-elide-constructors",
611   "-finline-debug",
612   "-fno-inline-debug",
613   "-fhandle-exceptions",
614   "-fno-handle-exceptions",
615   "-fansi-exceptions",
616   "-fno-ansi-exceptions",
617   "-fspring-exceptions",
618   "-fno-spring-exceptions",
619   "-fdefault-inline",
620   "-fno-default-inline",
621   "-fenum-int-equiv",
622   "-fno-enum-int-equiv",
623   "-fdossier",
624   "-fno-dossier",
625   "-fxref",
626   "-fno-xref",
627   "-fnonnull-objects",
628   "-fno-nonnull-objects",
629   "-fimplement-inlines",
630   "-fno-implement-inlines",
631
632   "-Wreturn-type",
633   "-Wno-return-type",
634   "-Woverloaded-virtual",
635   "-Wno-overloaded-virtual",
636   "-Wenum-clash",
637   "-Wno-enum-clash",
638   "-Wtemplate-debugging",
639   "-Wno-template-debugging",
640
641   /* these are for obj c */
642   "-lang-objc",
643   "-gen-decls",
644   "-fgnu-runtime",
645   "-fno-gnu-runtime",
646   "-fnext-runtime",
647   "-fno-next-runtime",
648   "-Wselector",
649   "-Wno-selector",
650   "-Wprotocol",
651   "-Wno-protocol",
652   0
653 };
654 \f
655 /* Options controlling warnings */
656
657 /* Don't print warning messages.  -w.  */
658
659 int inhibit_warnings = 0;
660
661 /* Print various extra warnings.  -W.  */
662
663 int extra_warnings = 0;
664
665 /* Treat warnings as errors.  -Werror.  */
666
667 int warnings_are_errors = 0;
668
669 /* Nonzero to warn about unused local variables.  */
670
671 int warn_unused;
672
673 /* Nonzero to warn about variables used before they are initialized.  */
674
675 int warn_uninitialized;
676
677 /* Nonzero means warn about all declarations which shadow others.   */
678
679 int warn_shadow;
680
681 /* Warn if a switch on an enum fails to have a case for every enum value.  */
682
683 int warn_switch;
684
685 /* Nonzero means warn about function definitions that default the return type
686    or that use a null return and have a return-type other than void.  */
687
688 int warn_return_type;
689
690 /* Nonzero means warn about pointer casts that increase the required
691    alignment of the target type (and might therefore lead to a crash
692    due to a misaligned access).  */
693
694 int warn_cast_align;
695
696 /* Nonzero means warn about any identifiers that match in the first N
697    characters.  The value N is in `id_clash_len'.  */
698
699 int warn_id_clash;
700 int id_clash_len;
701
702 /* Nonzero means warn if inline function is too large.  */
703
704 int warn_inline;
705
706 /* Warn if a function returns an aggregate,
707    since there are often incompatible calling conventions for doing this.  */
708
709 int warn_aggregate_return;
710
711 /* Likewise for -W.  */
712
713 struct { char *string; int *variable; int on_value;} W_options[] =
714 {
715   {"unused", &warn_unused, 1},
716   {"error", &warnings_are_errors, 1},
717   {"shadow", &warn_shadow, 1},
718   {"switch", &warn_switch, 1},
719   {"aggregate-return", &warn_aggregate_return, 1},
720   {"cast-align", &warn_cast_align, 1},
721   {"uninitialized", &warn_uninitialized, 1},
722   {"inline", &warn_inline, 1}
723 };
724 \f
725 /* Output files for assembler code (real compiler output)
726    and debugging dumps.  */
727
728 FILE *asm_out_file;
729 FILE *aux_info_file;
730 FILE *rtl_dump_file;
731 FILE *jump_opt_dump_file;
732 FILE *cse_dump_file;
733 FILE *loop_dump_file;
734 FILE *cse2_dump_file;
735 FILE *flow_dump_file;
736 FILE *combine_dump_file;
737 FILE *sched_dump_file;
738 FILE *local_reg_dump_file;
739 FILE *global_reg_dump_file;
740 FILE *sched2_dump_file;
741 FILE *jump2_opt_dump_file;
742 FILE *dbr_sched_dump_file;
743 FILE *stack_reg_dump_file;
744
745 /* Time accumulators, to count the total time spent in various passes.  */
746
747 int parse_time;
748 int varconst_time;
749 int integration_time;
750 int jump_time;
751 int cse_time;
752 int loop_time;
753 int cse2_time;
754 int flow_time;
755 int combine_time;
756 int sched_time;
757 int local_alloc_time;
758 int global_alloc_time;
759 int sched2_time;
760 int dbr_sched_time;
761 int shorten_branch_time;
762 int stack_reg_time;
763 int final_time;
764 int symout_time;
765 int dump_time;
766 \f
767 /* Return time used so far, in microseconds.  */
768
769 int
770 get_run_time ()
771 {
772 #ifdef USG
773   struct tms tms;
774 #else
775 #ifndef VMS
776   struct rusage rusage;
777 #else /* VMS */
778   struct
779     {
780       int proc_user_time;
781       int proc_system_time;
782       int child_user_time;
783       int child_system_time;
784     } vms_times;
785 #endif
786 #endif
787
788   if (quiet_flag)
789     return 0;
790
791 #ifdef USG
792   times (&tms);
793   return (tms.tms_utime + tms.tms_stime) * (1000000 / HZ);
794 #else
795 #ifndef VMS
796   getrusage (0, &rusage);
797   return (rusage.ru_utime.tv_sec * 1000000 + rusage.ru_utime.tv_usec
798           + rusage.ru_stime.tv_sec * 1000000 + rusage.ru_stime.tv_usec);
799 #else /* VMS */
800   times (&vms_times);
801   return (vms_times.proc_user_time + vms_times.proc_system_time) * 10000;
802 #endif
803 #endif
804 }
805
806 #define TIMEVAR(VAR, BODY)    \
807 do { int otime = get_run_time (); BODY; VAR += get_run_time () - otime; } while (0)
808
809 void
810 print_time (str, total)
811      char *str;
812      int total;
813 {
814   fprintf (stderr,
815            "time in %s: %d.%06d\n",
816            str, total / 1000000, total % 1000000);
817 }
818
819 /* Count an error or warning.  Return 1 if the message should be printed.  */
820
821 int
822 count_error (warningp)
823      int warningp;
824 {
825   if (warningp && inhibit_warnings)
826     return 0;
827
828   if (warningp && !warnings_are_errors)
829     warningcount++;
830   else
831     {
832       static int warning_message = 0;
833
834       if (warningp && !warning_message)
835         {
836           fprintf (stderr, "%s: warnings being treated as errors\n", progname);
837           warning_message = 1;
838         }
839       errorcount++;
840     }
841
842   return 1;
843 }
844
845 /* Print a fatal error message.  NAME is the text.
846    Also include a system error message based on `errno'.  */
847
848 void
849 pfatal_with_name (name)
850      char *name;
851 {
852   fprintf (stderr, "%s: ", progname);
853   perror (name);
854   exit (35);
855 }
856
857 void
858 fatal_io_error (name)
859      char *name;
860 {
861   fprintf (stderr, "%s: %s: I/O error\n", progname, name);
862   exit (35);
863 }
864
865 void
866 fatal (s, v)
867      char *s;
868      int v;
869 {
870   error (s, v);
871   exit (34);
872 }
873
874 /* Called to give a better error message when we don't have an insn to match
875    what we are looking for or if the insn's constraints aren't satisfied,
876    rather than just calling abort().  */
877
878 void
879 fatal_insn_not_found (insn)
880      rtx insn;
881 {
882   if (INSN_CODE (insn) < 0)
883     error ("internal error--unrecognizable insn:", 0);
884   else
885     error ("internal error--insn does not satisfy its constraints:", 0);
886   debug_rtx (insn);
887   if (asm_out_file)
888     fflush (asm_out_file);
889   if (aux_info_file)
890     fflush (aux_info_file);
891   if (rtl_dump_file)
892     fflush (rtl_dump_file);
893   if (jump_opt_dump_file)
894     fflush (jump_opt_dump_file);
895   if (cse_dump_file)
896     fflush (cse_dump_file);
897   if (loop_dump_file)
898     fflush (loop_dump_file);
899   if (cse2_dump_file)
900     fflush (cse2_dump_file);
901   if (flow_dump_file)
902     fflush (flow_dump_file);
903   if (combine_dump_file)
904     fflush (combine_dump_file);
905   if (sched_dump_file)
906     fflush (sched_dump_file);
907   if (local_reg_dump_file)
908     fflush (local_reg_dump_file);
909   if (global_reg_dump_file)
910     fflush (global_reg_dump_file);
911   if (sched2_dump_file)
912     fflush (sched2_dump_file);
913   if (jump2_opt_dump_file)
914     fflush (jump2_opt_dump_file);
915   if (dbr_sched_dump_file)
916     fflush (dbr_sched_dump_file);
917   if (stack_reg_dump_file)
918     fflush (stack_reg_dump_file);
919   abort ();
920 }
921
922 /* This is the default decl_printable_name function.  */
923
924 static char *
925 decl_name (decl, kind)
926      tree decl;
927      char **kind;
928 {
929   return IDENTIFIER_POINTER (DECL_NAME (decl));
930 }
931 \f
932 static int need_error_newline;
933
934 /* Function of last error message;
935    more generally, function such that if next error message is in it
936    then we don't have to mention the function name.  */
937 static tree last_error_function = NULL;
938
939 /* Used to detect when input_file_stack has changed since last described.  */
940 static int last_error_tick;
941
942 /* Called when the start of a function definition is parsed,
943    this function prints on stderr the name of the function.  */
944
945 void
946 announce_function (decl)
947      tree decl;
948 {
949   if (! quiet_flag)
950     {
951       char *junk;
952       if (rtl_dump_and_exit)
953         fprintf (stderr, "%s ", IDENTIFIER_POINTER (DECL_NAME (decl)));
954       else
955         fprintf (stderr, " %s", (*decl_printable_name) (decl, &junk));
956       fflush (stderr);
957       need_error_newline = 1;
958       last_error_function = current_function_decl;
959     }
960 }
961
962 /* Prints out, if necessary, the name of the current function
963    which caused an error.  Called from all error and warning functions.  */
964
965 void
966 report_error_function (file)
967      char *file;
968 {
969   struct file_stack *p;
970
971   if (need_error_newline)
972     {
973       fprintf (stderr, "\n");
974       need_error_newline = 0;
975     }
976
977   if (last_error_function != current_function_decl)
978     {
979       char *kind = "function";
980       if (current_function_decl != 0
981           && TREE_CODE (TREE_TYPE (current_function_decl)) == METHOD_TYPE)
982         kind = "method";
983
984       if (file)
985         fprintf (stderr, "%s: ", file);
986
987       if (current_function_decl == NULL)
988         fprintf (stderr, "At top level:\n");
989       else
990         {
991           char *name = (*decl_printable_name) (current_function_decl, &kind);
992           fprintf (stderr, "In %s `%s':\n", kind, name);
993         }
994
995       last_error_function = current_function_decl;
996     }
997   if (input_file_stack && input_file_stack->next != 0
998       && input_file_stack_tick != last_error_tick)
999     {
1000       fprintf (stderr, "In file included");
1001       for (p = input_file_stack->next; p; p = p->next)
1002         {
1003           fprintf (stderr, " from %s:%d", p->name, p->line);
1004           if (p->next)
1005             fprintf (stderr, ",");
1006         }
1007       fprintf (stderr, ":\n");
1008       last_error_tick = input_file_stack_tick;
1009     }
1010 }
1011
1012 /* Report an error at the current line number.
1013    S is a string and V and V2 are args for `printf'.  We use HOST_WIDE_INT
1014    as the type for these args assuming it is wide enough to hold a
1015    pointer.  This isn't terribly portable, but is the best we can do
1016    without vprintf universally available.  */
1017
1018 void
1019 error (s, v, v2)
1020      char *s;
1021      HOST_WIDE_INT v;           /* Also used as pointer */
1022      HOST_WIDE_INT v2;          /* Also used as pointer */
1023 {
1024   error_with_file_and_line (input_filename, lineno, s, v, v2);
1025 }
1026
1027 /* Report an error at line LINE of file FILE.
1028    S and V are a string and an arg for `printf'.  */
1029
1030 void
1031 error_with_file_and_line (file, line, s, v, v2)
1032      char *file;
1033      int line;
1034      char *s;
1035      HOST_WIDE_INT v;
1036      HOST_WIDE_INT v2;
1037 {
1038   count_error (0);
1039
1040   report_error_function (file);
1041
1042   if (file)
1043     fprintf (stderr, "%s:%d: ", file, line);
1044   else
1045     fprintf (stderr, "%s: ", progname);
1046   fprintf (stderr, s, v, v2);
1047   fprintf (stderr, "\n");
1048 }
1049
1050 /* Report an error at the declaration DECL.
1051    S and V are a string and an arg which uses %s to substitute
1052    the declaration name.  */
1053
1054 void
1055 error_with_decl (decl, s, v)
1056      tree decl;
1057      char *s;
1058      HOST_WIDE_INT v;
1059 {
1060   char *junk;
1061   count_error (0);
1062
1063   report_error_function (DECL_SOURCE_FILE (decl));
1064
1065   fprintf (stderr, "%s:%d: ",
1066            DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
1067
1068   if (DECL_NAME (decl))
1069     fprintf (stderr, s, (*decl_printable_name) (decl, &junk), v);
1070   else
1071     fprintf (stderr, s, "((anonymous))", v);
1072   fprintf (stderr, "\n");
1073 }
1074
1075 /* Report an error at the line number of the insn INSN.
1076    S and V are a string and an arg for `printf'.
1077    This is used only when INSN is an `asm' with operands,
1078    and each ASM_OPERANDS records its own source file and line.  */
1079
1080 void
1081 error_for_asm (insn, s, v, v2)
1082      rtx insn;
1083      char *s;
1084      HOST_WIDE_INT v;           /* Also used as pointer */
1085      HOST_WIDE_INT v2;          /* Also used as pointer */
1086 {
1087   char *filename;
1088   int line;
1089   rtx body = PATTERN (insn);
1090   rtx asmop;
1091
1092   /* Find the (or one of the) ASM_OPERANDS in the insn.  */
1093   if (GET_CODE (body) == SET && GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
1094     asmop = SET_SRC (body);
1095   else if (GET_CODE (body) == ASM_OPERANDS)
1096     asmop = body;
1097   else if (GET_CODE (body) == PARALLEL
1098            && GET_CODE (XVECEXP (body, 0, 0)) == SET)
1099     asmop = SET_SRC (XVECEXP (body, 0, 0));
1100   else if (GET_CODE (body) == PARALLEL
1101            && GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
1102     asmop = XVECEXP (body, 0, 0);
1103
1104   filename = ASM_OPERANDS_SOURCE_FILE (asmop);
1105   line = ASM_OPERANDS_SOURCE_LINE (asmop);
1106
1107   error_with_file_and_line (filename, line, s, v, v2);
1108 }
1109
1110 /* Report a warning at line LINE.
1111    S and V are a string and an arg for `printf'.  */
1112
1113 void
1114 warning_with_file_and_line (file, line, s, v, v2, v3)
1115      char *file;
1116      int line;
1117      char *s;
1118      HOST_WIDE_INT v, v2, v3;
1119 {
1120   if (count_error (1) == 0)
1121     return;
1122
1123   report_error_function (file);
1124
1125   if (file)
1126     fprintf (stderr, "%s:%d: ", file, line);
1127   else
1128     fprintf (stderr, "%s: ", progname);
1129
1130   fprintf (stderr, "warning: ");
1131   fprintf (stderr, s, v, v2, v3);
1132   fprintf (stderr, "\n");
1133 }
1134
1135 /* Report a warning at the current line number.
1136    S and V are a string and an arg for `printf'.  */
1137
1138 void
1139 warning (s, v, v2, v3)
1140      char *s;
1141      HOST_WIDE_INT v, v2, v3;   /* Also used as pointer */
1142 {
1143   warning_with_file_and_line (input_filename, lineno, s, v, v2, v3);
1144 }
1145
1146 /* Report a warning at the declaration DECL.
1147    S is string which uses %s to substitute the declaration name.
1148    V is a second parameter that S can refer to.  */
1149
1150 void
1151 warning_with_decl (decl, s, v)
1152      tree decl;
1153      char *s;
1154      HOST_WIDE_INT v;
1155 {
1156   char *junk;
1157
1158   if (count_error (1) == 0)
1159     return;
1160
1161   report_error_function (DECL_SOURCE_FILE (decl));
1162
1163   fprintf (stderr, "%s:%d: ",
1164            DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
1165
1166   fprintf (stderr, "warning: ");
1167   if (DECL_NAME (decl))
1168     fprintf (stderr, s, (*decl_printable_name) (decl, &junk), v);
1169   else
1170     fprintf (stderr, s, "((anonymous))", v);
1171   fprintf (stderr, "\n");
1172 }
1173
1174 /* Report a warning at the line number of the insn INSN.
1175    S and V are a string and an arg for `printf'.
1176    This is used only when INSN is an `asm' with operands,
1177    and each ASM_OPERANDS records its own source file and line.  */
1178
1179 void
1180 warning_for_asm (insn, s, v, v2)
1181      rtx insn;
1182      char *s;
1183      HOST_WIDE_INT v;           /* Also used as pointer */
1184      HOST_WIDE_INT v2;          /* Also used as pointer */
1185 {
1186   char *filename;
1187   int line;
1188   rtx body = PATTERN (insn);
1189   rtx asmop;
1190
1191   /* Find the (or one of the) ASM_OPERANDS in the insn.  */
1192   if (GET_CODE (body) == SET && GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
1193     asmop = SET_SRC (body);
1194   else if (GET_CODE (body) == ASM_OPERANDS)
1195     asmop = body;
1196   else if (GET_CODE (body) == PARALLEL
1197            && GET_CODE (XVECEXP (body, 0, 0)) == SET)
1198     asmop = SET_SRC (XVECEXP (body, 0, 0));
1199   else if (GET_CODE (body) == PARALLEL
1200            && GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
1201     asmop = XVECEXP (body, 0, 0);
1202
1203   filename = ASM_OPERANDS_SOURCE_FILE (asmop);
1204   line = ASM_OPERANDS_SOURCE_LINE (asmop);
1205
1206   warning_with_file_and_line (filename, line, s, v, v2);
1207 }
1208 \f
1209 /* These functions issue either warnings or errors depending on
1210    -pedantic-errors.  */
1211
1212 void
1213 pedwarn (s, v, v2)
1214      char *s;
1215      HOST_WIDE_INT v;           /* Also used as pointer */
1216      HOST_WIDE_INT v2;
1217 {
1218   if (flag_pedantic_errors)
1219     error (s, v, v2);
1220   else
1221     warning (s, v, v2);
1222 }
1223
1224 void
1225 pedwarn_with_decl (decl, s, v)
1226      tree decl;
1227      char *s;
1228      HOST_WIDE_INT v;
1229 {
1230   if (flag_pedantic_errors)
1231     error_with_decl (decl, s, v);
1232   else
1233     warning_with_decl (decl, s, v);
1234 }
1235
1236 void
1237 pedwarn_with_file_and_line (file, line, s, v, v2)
1238      char *file;
1239      int line;
1240      char *s;
1241      HOST_WIDE_INT v;
1242      HOST_WIDE_INT v2;
1243 {
1244   if (flag_pedantic_errors)
1245     error_with_file_and_line (file, line, s, v, v2);
1246   else
1247     warning_with_file_and_line (file, line, s, v, v2);
1248 }
1249
1250 /* Apologize for not implementing some feature.
1251    S, V, and V2 are a string and args for `printf'.  */
1252
1253 void
1254 sorry (s, v, v2)
1255      char *s;
1256      HOST_WIDE_INT v, v2;
1257 {
1258   sorrycount++;
1259   if (input_filename)
1260     fprintf (stderr, "%s:%d: ", input_filename, lineno);
1261   else
1262     fprintf (stderr, "%s: ", progname);
1263
1264   fprintf (stderr, "sorry, not implemented: ");
1265   fprintf (stderr, s, v, v2);
1266   fprintf (stderr, "\n");
1267 }
1268
1269 /* Apologize for not implementing some feature, then quit.
1270    S, V, and V2 are a string and args for `printf'.  */
1271
1272 void
1273 really_sorry (s, v, v2)
1274      char *s;
1275      HOST_WIDE_INT v, v2;
1276 {
1277   if (input_filename)
1278     fprintf (stderr, "%s:%d: ", input_filename, lineno);
1279   else
1280     fprintf (stderr, "%s: ", progname);
1281
1282   fprintf (stderr, "sorry, not implemented: ");
1283   fprintf (stderr, s, v, v2);
1284   fatal (" (fatal)\n");
1285 }
1286 \f
1287 /* More 'friendly' abort that prints the line and file.
1288    config.h can #define abort fancy_abort if you like that sort of thing.
1289
1290    I don't think this is actually a good idea.
1291    Other sorts of crashes will look a certain way.
1292    It is a good thing if crashes from calling abort look the same way.
1293      -- RMS  */
1294
1295 void
1296 fancy_abort ()
1297 {
1298   fatal ("internal gcc abort");
1299 }
1300
1301 /* This calls abort and is used to avoid problems when abort if a macro.
1302    It is used when we need to pass the address of abort.  */
1303
1304 void
1305 do_abort ()
1306 {
1307   abort ();
1308 }
1309
1310 /* When `malloc.c' is compiled with `rcheck' defined,
1311    it calls this function to report clobberage.  */
1312
1313 void
1314 botch (s)
1315 {
1316   abort ();
1317 }
1318
1319 /* Same as `malloc' but report error if no memory available.  */
1320
1321 char *
1322 xmalloc (size)
1323      unsigned size;
1324 {
1325   register char *value = (char *) malloc (size);
1326   if (value == 0)
1327     fatal ("virtual memory exhausted");
1328   return value;
1329 }
1330
1331 /* Same as `realloc' but report error if no memory available.  */
1332
1333 char *
1334 xrealloc (ptr, size)
1335      char *ptr;
1336      int size;
1337 {
1338   char *result = (char *) realloc (ptr, size);
1339   if (!result)
1340     fatal ("virtual memory exhausted");
1341   return result;
1342 }
1343 \f
1344 /* Return the logarithm of X, base 2, considering X unsigned,
1345    if X is a power of 2.  Otherwise, returns -1.
1346
1347    This should be used via the `exact_log2' macro.  */
1348
1349 int
1350 exact_log2_wide (x)
1351      register unsigned HOST_WIDE_INT x;
1352 {
1353   register int log = 0;
1354   /* Test for 0 or a power of 2.  */
1355   if (x == 0 || x != (x & -x))
1356     return -1;
1357   while ((x >>= 1) != 0)
1358     log++;
1359   return log;
1360 }
1361
1362 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1363    If X is 0, return -1.
1364
1365    This should be used via the floor_log2 macro.  */
1366
1367 int
1368 floor_log2_wide (x)
1369      register unsigned HOST_WIDE_INT x;
1370 {
1371   register int log = -1;
1372   while (x != 0)
1373     log++,
1374     x >>= 1;
1375   return log;
1376 }
1377
1378 int float_handled;
1379 jmp_buf float_handler;
1380
1381 /* Specify where to longjmp to when a floating arithmetic error happens.
1382    If HANDLER is 0, it means don't handle the errors any more.  */
1383
1384 void
1385 set_float_handler (handler)
1386      jmp_buf handler;
1387 {
1388   float_handled = (handler != 0);
1389   if (handler)
1390     bcopy (handler, float_handler, sizeof (float_handler));
1391 }
1392
1393 /* Specify, in HANDLER, where to longjmp to when a floating arithmetic
1394    error happens, pushing the previous specification into OLD_HANDLER.
1395    Return an indication of whether there was a previous handler in effect.  */
1396
1397 int
1398 push_float_handler (handler, old_handler)
1399      jmp_buf handler, old_handler;
1400 {
1401   int was_handled = float_handled;
1402
1403   float_handled = 1;
1404   if (was_handled)
1405     bcopy (float_handler, old_handler, sizeof (float_handler));
1406   bcopy (handler, float_handler, sizeof (float_handler));
1407   return was_handled;
1408 }
1409
1410 /* Restore the previous specification of whether and where to longjmp to
1411    when a floating arithmetic error happens.  */
1412
1413 void
1414 pop_float_handler (handled, handler)
1415      int handled;
1416      jmp_buf handler;
1417 {
1418   float_handled = handled;
1419   if (handled)
1420     bcopy (handler, float_handler, sizeof (float_handler));
1421 }
1422
1423 /* Signals actually come here.  */
1424
1425 static void
1426 float_signal (signo)
1427      /* If this is missing, some compilers complain.  */
1428      int signo;
1429 {
1430   if (float_handled == 0)
1431     abort ();
1432 #if defined (USG) || defined (hpux)
1433   signal (SIGFPE, float_signal);  /* re-enable the signal catcher */
1434 #endif
1435   float_handled = 0;
1436   signal (SIGFPE, float_signal);
1437   longjmp (float_handler, 1);
1438 }
1439
1440 /* Handler for SIGPIPE.  */
1441
1442 static void
1443 pipe_closed (signo)
1444      /* If this is missing, some compilers complain.  */
1445      int signo;
1446 {
1447   fatal ("output pipe has been closed");
1448 }
1449
1450 /* Strip off a legitimate source ending from the input string NAME of
1451    length LEN. */
1452
1453 void
1454 strip_off_ending (name, len)
1455      char *name;
1456      int len;
1457 {
1458   if (len > 2 && ! strcmp (".c", name + len - 2))
1459     name[len - 2] = 0;
1460   else if (len > 2 && ! strcmp (".m", name + len - 2))
1461     name[len - 2] = 0;
1462   else if (len > 2 && ! strcmp (".i", name + len - 2))
1463     name[len - 2] = 0;
1464   else if (len > 3 && ! strcmp (".ii", name + len - 3))
1465     name[len - 3] = 0;
1466   else if (len > 3 && ! strcmp (".co", name + len - 3))
1467     name[len - 3] = 0;
1468   else if (len > 3 && ! strcmp (".cc", name + len - 3))
1469     name[len - 3] = 0;
1470   else if (len > 2 && ! strcmp (".C", name + len - 2))
1471     name[len - 2] = 0;
1472   else if (len > 4 && ! strcmp (".cxx", name + len - 4))
1473     name[len - 4] = 0;
1474   else if (len > 2 && ! strcmp (".f", name + len - 2))
1475     name[len - 2] = 0;
1476   else if (len > 4 && ! strcmp (".ada", name + len - 4))
1477     name[len - 4] = 0;
1478   else if (len > 4 && ! strcmp (".atr", name + len - 4))
1479     name[len - 4] = 0;
1480 }
1481
1482 /* Output a file name in the form wanted by System V.  */
1483
1484 void
1485 output_file_directive (asm_file, input_name)
1486      FILE *asm_file;
1487      char *input_name;
1488 {
1489   int len = strlen (input_name);
1490   char *na = input_name + len;
1491
1492   /* NA gets INPUT_NAME sans directory names.  */
1493   while (na > input_name)
1494     {
1495       if (na[-1] == '/')
1496         break;
1497       na--;
1498     }
1499
1500 #ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
1501   ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file, na);
1502 #else
1503 #ifdef ASM_OUTPUT_SOURCE_FILENAME
1504   ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
1505 #else
1506   fprintf (asm_file, "\t.file\t\"%s\"\n", na);
1507 #endif
1508 #endif
1509 }
1510 \f
1511 /* Routine to build language identifier for object file. */
1512 static void
1513 output_lang_identify (asm_out_file)
1514      FILE *asm_out_file;
1515 {
1516   int len = strlen (lang_identify ()) + sizeof ("__gnu_compiled_") + 1;
1517   char *s = (char *) alloca (len);
1518   sprintf (s, "__gnu_compiled_%s", lang_identify ());
1519   ASM_OUTPUT_LABEL (asm_out_file, s);
1520 }
1521
1522 /* Compile an entire file of output from cpp, named NAME.
1523    Write a file of assembly output and various debugging dumps.  */
1524
1525 static void
1526 compile_file (name)
1527      char *name;
1528 {
1529   tree globals;
1530   int start_time;
1531   int dump_base_name_length;
1532
1533   int name_specified = name != 0;
1534
1535   if (dump_base_name == 0)
1536     dump_base_name = name ? name : "gccdump";
1537   dump_base_name_length = strlen (dump_base_name);
1538
1539   parse_time = 0;
1540   varconst_time = 0;
1541   integration_time = 0;
1542   jump_time = 0;
1543   cse_time = 0;
1544   loop_time = 0;
1545   cse2_time = 0;
1546   flow_time = 0;
1547   combine_time = 0;
1548   sched_time = 0;
1549   local_alloc_time = 0;
1550   global_alloc_time = 0;
1551   sched2_time = 0;
1552   dbr_sched_time = 0;
1553   shorten_branch_time = 0;
1554   stack_reg_time = 0;
1555   final_time = 0;
1556   symout_time = 0;
1557   dump_time = 0;
1558
1559   /* Open input file.  */
1560
1561   if (name == 0 || !strcmp (name, "-"))
1562     {
1563       finput = stdin;
1564       name = "stdin";
1565     }
1566   else
1567     finput = fopen (name, "r");
1568   if (finput == 0)
1569     pfatal_with_name (name);
1570
1571 #ifdef IO_BUFFER_SIZE
1572   setvbuf (finput, (char *) xmalloc (IO_BUFFER_SIZE), _IOFBF, IO_BUFFER_SIZE);
1573 #endif
1574
1575   /* Initialize data in various passes.  */
1576
1577   init_obstacks ();
1578   init_tree_codes ();
1579   init_lex ();
1580   init_rtl ();
1581   init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
1582                   || debug_info_level == DINFO_LEVEL_VERBOSE);
1583   init_decl_processing ();
1584   init_optabs ();
1585   init_stmt ();
1586   init_expmed ();
1587   init_expr_once ();
1588   init_loop ();
1589   init_reload ();
1590
1591   if (flag_caller_saves)
1592     init_caller_save ();
1593
1594   /* If auxiliary info generation is desired, open the output file.
1595      This goes in the same directory as the source file--unlike
1596      all the other output files.  */
1597   if (flag_gen_aux_info)
1598     {
1599       aux_info_file = fopen (aux_info_file_name, "w");
1600       if (aux_info_file == 0)
1601         pfatal_with_name (aux_info_file_name);
1602     }
1603
1604   /* If rtl dump desired, open the output file.  */
1605   if (rtl_dump)
1606     {
1607       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
1608       strcpy (dumpname, dump_base_name);
1609       strcat (dumpname, ".rtl");
1610       rtl_dump_file = fopen (dumpname, "w");
1611       if (rtl_dump_file == 0)
1612         pfatal_with_name (dumpname);
1613     }
1614
1615   /* If jump_opt dump desired, open the output file.  */
1616   if (jump_opt_dump)
1617     {
1618       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
1619       strcpy (dumpname, dump_base_name);
1620       strcat (dumpname, ".jump");
1621       jump_opt_dump_file = fopen (dumpname, "w");
1622       if (jump_opt_dump_file == 0)
1623         pfatal_with_name (dumpname);
1624     }
1625
1626   /* If cse dump desired, open the output file.  */
1627   if (cse_dump)
1628     {
1629       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
1630       strcpy (dumpname, dump_base_name);
1631       strcat (dumpname, ".cse");
1632       cse_dump_file = fopen (dumpname, "w");
1633       if (cse_dump_file == 0)
1634         pfatal_with_name (dumpname);
1635     }
1636
1637   /* If loop dump desired, open the output file.  */
1638   if (loop_dump)
1639     {
1640       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
1641       strcpy (dumpname, dump_base_name);
1642       strcat (dumpname, ".loop");
1643       loop_dump_file = fopen (dumpname, "w");
1644       if (loop_dump_file == 0)
1645         pfatal_with_name (dumpname);
1646     }
1647
1648   /* If cse2 dump desired, open the output file.  */
1649   if (cse2_dump)
1650     {
1651       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
1652       strcpy (dumpname, dump_base_name);
1653       strcat (dumpname, ".cse2");
1654       cse2_dump_file = fopen (dumpname, "w");
1655       if (cse2_dump_file == 0)
1656         pfatal_with_name (dumpname);
1657     }
1658
1659   /* If flow dump desired, open the output file.  */
1660   if (flow_dump)
1661     {
1662       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
1663       strcpy (dumpname, dump_base_name);
1664       strcat (dumpname, ".flow");
1665       flow_dump_file = fopen (dumpname, "w");
1666       if (flow_dump_file == 0)
1667         pfatal_with_name (dumpname);
1668     }
1669
1670   /* If combine dump desired, open the output file.  */
1671   if (combine_dump)
1672     {
1673       register char *dumpname = (char *) xmalloc (dump_base_name_length + 10);
1674       strcpy (dumpname, dump_base_name);
1675       strcat (dumpname, ".combine");
1676       combine_dump_file = fopen (dumpname, "w");
1677       if (combine_dump_file == 0)
1678         pfatal_with_name (dumpname);
1679     }
1680
1681   /* If scheduling dump desired, open the output file.  */
1682   if (sched_dump)
1683     {
1684       register char *dumpname = (char *) xmalloc (dump_base_name_length + 7);
1685       strcpy (dumpname, dump_base_name);
1686       strcat (dumpname, ".sched");
1687       sched_dump_file = fopen (dumpname, "w");
1688       if (sched_dump_file == 0)
1689         pfatal_with_name (dumpname);
1690     }
1691
1692   /* If local_reg dump desired, open the output file.  */
1693   if (local_reg_dump)
1694     {
1695       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
1696       strcpy (dumpname, dump_base_name);
1697       strcat (dumpname, ".lreg");
1698       local_reg_dump_file = fopen (dumpname, "w");
1699       if (local_reg_dump_file == 0)
1700         pfatal_with_name (dumpname);
1701     }
1702
1703   /* If global_reg dump desired, open the output file.  */
1704   if (global_reg_dump)
1705     {
1706       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
1707       strcpy (dumpname, dump_base_name);
1708       strcat (dumpname, ".greg");
1709       global_reg_dump_file = fopen (dumpname, "w");
1710       if (global_reg_dump_file == 0)
1711         pfatal_with_name (dumpname);
1712     }
1713
1714   /* If 2nd scheduling dump desired, open the output file.  */
1715   if (sched2_dump)
1716     {
1717       register char *dumpname = (char *) xmalloc (dump_base_name_length + 8);
1718       strcpy (dumpname, dump_base_name);
1719       strcat (dumpname, ".sched2");
1720       sched2_dump_file = fopen (dumpname, "w");
1721       if (sched2_dump_file == 0)
1722         pfatal_with_name (dumpname);
1723     }
1724
1725   /* If jump2_opt dump desired, open the output file.  */
1726   if (jump2_opt_dump)
1727     {
1728       register char *dumpname = (char *) xmalloc (dump_base_name_length + 7);
1729       strcpy (dumpname, dump_base_name);
1730       strcat (dumpname, ".jump2");
1731       jump2_opt_dump_file = fopen (dumpname, "w");
1732       if (jump2_opt_dump_file == 0)
1733         pfatal_with_name (dumpname);
1734     }
1735
1736   /* If dbr_sched dump desired, open the output file.  */
1737   if (dbr_sched_dump)
1738     {
1739       register char *dumpname = (char *) xmalloc (dump_base_name_length + 7);
1740       strcpy (dumpname, dump_base_name);
1741       strcat (dumpname, ".dbr");
1742       dbr_sched_dump_file = fopen (dumpname, "w");
1743       if (dbr_sched_dump_file == 0)
1744         pfatal_with_name (dumpname);
1745     }
1746
1747 #ifdef STACK_REGS
1748
1749   /* If stack_reg dump desired, open the output file.  */
1750   if (stack_reg_dump)
1751     {
1752       register char *dumpname = (char *) xmalloc (dump_base_name_length + 10);
1753       strcpy (dumpname, dump_base_name);
1754       strcat (dumpname, ".stack");
1755       stack_reg_dump_file = fopen (dumpname, "w");
1756       if (stack_reg_dump_file == 0)
1757         pfatal_with_name (dumpname);
1758     }
1759
1760 #endif
1761
1762   /* Open assembler code output file.  */
1763
1764   if (! name_specified && asm_file_name == 0)
1765     asm_out_file = stdout;
1766   else
1767     {
1768       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
1769       int len = strlen (dump_base_name);
1770       strcpy (dumpname, dump_base_name);
1771       strip_off_ending (dumpname, len);
1772       strcat (dumpname, ".s");
1773       if (asm_file_name == 0)
1774         {
1775           asm_file_name = (char *) xmalloc (strlen (dumpname) + 1);
1776           strcpy (asm_file_name, dumpname);
1777         }
1778       if (!strcmp (asm_file_name, "-"))
1779         asm_out_file = stdout;
1780       else
1781         asm_out_file = fopen (asm_file_name, "w");
1782       if (asm_out_file == 0)
1783         pfatal_with_name (asm_file_name);
1784     }
1785
1786 #ifdef IO_BUFFER_SIZE
1787   setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
1788            _IOFBF, IO_BUFFER_SIZE);
1789 #endif
1790
1791   input_filename = name;
1792
1793   /* Perform language-specific initialization.
1794      This may set main_input_filename.  */
1795   lang_init ();
1796
1797   /* If the input doesn't start with a #line, use the input name
1798      as the official input file name.  */
1799   if (main_input_filename == 0)
1800     main_input_filename = name;
1801
1802   /* Put an entry on the input file stack for the main input file.  */
1803   input_file_stack
1804     = (struct file_stack *) xmalloc (sizeof (struct file_stack));
1805   input_file_stack->next = 0;
1806   input_file_stack->name = input_filename;
1807
1808   ASM_FILE_START (asm_out_file);
1809
1810   /* Output something to inform GDB that this compilation was by GCC.  */
1811 #ifndef ASM_IDENTIFY_GCC
1812   fprintf (asm_out_file, "gcc2_compiled.:\n");
1813 #else
1814   ASM_IDENTIFY_GCC (asm_out_file);
1815 #endif
1816
1817   /* Output something to identify which front-end produced this file. */
1818 #ifdef ASM_IDENTIFY_LANGUAGE
1819   ASM_IDENTIFY_LANGUAGE (asm_out_file);
1820 #endif
1821
1822   /* dbx on Suns needs to separate gcc_compiled. from first function.
1823      We do not test write_symbols because -g should not alter
1824      the actual code generated.  */
1825 #ifdef DBX_DEBUGGING_INFO
1826   /* Don't let the first function fall at the same address
1827      as gcc_compiled., if profiling.  */
1828   if (profile_flag || profile_block_flag)
1829 #endif
1830     assemble_zeros (UNITS_PER_WORD);
1831
1832   /* If dbx symbol table desired, initialize writing it
1833      and output the predefined types.  */
1834 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
1835   if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
1836     TIMEVAR (symout_time, dbxout_init (asm_out_file, main_input_filename,
1837                                        getdecls ()));
1838 #endif
1839 #ifdef SDB_DEBUGGING_INFO
1840   if (write_symbols == SDB_DEBUG)
1841     TIMEVAR (symout_time, sdbout_init (asm_out_file, main_input_filename,
1842                                        getdecls ()));
1843 #endif
1844 #ifdef DWARF_DEBUGGING_INFO
1845   if (write_symbols == DWARF_DEBUG)
1846     TIMEVAR (symout_time, dwarfout_init (asm_out_file, main_input_filename));
1847 #endif
1848
1849   /* Initialize yet another pass.  */
1850
1851   init_final (main_input_filename);
1852
1853   start_time = get_run_time ();
1854
1855   /* Call the parser, which parses the entire file
1856      (calling rest_of_compilation for each function).  */
1857
1858   if (yyparse () != 0)
1859     if (errorcount == 0)
1860       fprintf (stderr, "Errors detected in input file (your bison.simple is out of date)");
1861
1862   /* Compilation is now finished except for writing
1863      what's left of the symbol table output.  */
1864
1865   parse_time += get_run_time () - start_time;
1866
1867   parse_time -= integration_time;
1868   parse_time -= varconst_time;
1869
1870   globals = getdecls ();
1871
1872   /* Really define vars that have had only a tentative definition.
1873      Really output inline functions that must actually be callable
1874      and have not been output so far.  */
1875
1876   {
1877     int len = list_length (globals);
1878     tree *vec = (tree *) alloca (sizeof (tree) * len);
1879     int i;
1880     tree decl;
1881
1882     /* Process the decls in reverse order--earliest first.
1883        Put them into VEC from back to front, then take out from front.  */
1884
1885     for (i = 0, decl = globals; i < len; i++, decl = TREE_CHAIN (decl))
1886       vec[len - i - 1] = decl;
1887
1888     for (i = 0; i < len; i++)
1889       {
1890         decl = vec[i];
1891         if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0
1892             && incomplete_decl_finalize_hook != 0)
1893           (*incomplete_decl_finalize_hook) (decl);
1894
1895         if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
1896             && ! TREE_ASM_WRITTEN (decl))
1897           {
1898             /* Don't write out static consts, unless we used them.
1899                (This used to write them out only if the address was
1900                taken, but that was wrong; if the variable was simply
1901                referred to, it still needs to exist or else it will
1902                be undefined in the linker.)  */
1903             if (! TREE_READONLY (decl)
1904                 || TREE_PUBLIC (decl)
1905                 || TREE_USED (decl)
1906                 || TREE_ADDRESSABLE (decl)
1907                 || TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (decl)))
1908               rest_of_decl_compilation (decl, NULL_PTR, 1, 1);
1909             else
1910               /* Cancel the RTL for this decl so that, if debugging info
1911                  output for global variables is still to come,
1912                  this one will be omitted.  */
1913               DECL_RTL (decl) = NULL;
1914           }
1915
1916         if (TREE_CODE (decl) == FUNCTION_DECL
1917             && ! TREE_ASM_WRITTEN (decl)
1918             && DECL_INITIAL (decl) != 0
1919             && (TREE_ADDRESSABLE (decl)
1920                 || TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (decl)))
1921             && ! DECL_EXTERNAL (decl))
1922           output_inline_function (decl);
1923
1924         /* Warn about any function
1925            declared static but not defined.
1926            We don't warn about variables,
1927            because many programs have static variables
1928            that exist only to get some text into the object file.  */
1929         if ((warn_unused
1930              || TREE_USED (decl)
1931              || (DECL_NAME (decl) && TREE_USED (DECL_NAME (decl))))
1932             && TREE_CODE (decl) == FUNCTION_DECL
1933             && DECL_INITIAL (decl) == 0
1934             && DECL_EXTERNAL (decl)
1935             && ! TREE_PUBLIC (decl))
1936           {
1937             pedwarn_with_decl (decl, 
1938                                "`%s' declared `static' but never defined");
1939             /* This symbol is effectively an "extern" declaration now.  */
1940             TREE_PUBLIC (decl) = 1;
1941             assemble_external (decl);
1942
1943           }
1944         /* Warn about static fns or vars defined but not used,
1945            but not about inline functions
1946            since unused inline statics is normal practice.  */
1947         if (warn_unused
1948             && (TREE_CODE (decl) == FUNCTION_DECL
1949                 || TREE_CODE (decl) == VAR_DECL)
1950             && ! DECL_IN_SYSTEM_HEADER (decl)
1951             && ! DECL_EXTERNAL (decl)
1952             && ! TREE_PUBLIC (decl)
1953             && ! TREE_USED (decl)
1954             && ! DECL_INLINE (decl)
1955             && ! DECL_REGISTER (decl)
1956             /* The TREE_USED bit for file-scope decls
1957                is kept in the identifier, to handle multiple
1958                external decls in different scopes.  */
1959             && ! TREE_USED (DECL_NAME (decl)))
1960           warning_with_decl (decl, "`%s' defined but not used");
1961
1962 #ifdef SDB_DEBUGGING_INFO
1963         /* The COFF linker can move initialized global vars to the end.
1964            And that can screw up the symbol ordering.
1965            By putting the symbols in that order to begin with,
1966            we avoid a problem.  mcsun!unido!fauern!tumuc!pes@uunet.uu.net.  */
1967         if (write_symbols == SDB_DEBUG && TREE_CODE (decl) == VAR_DECL
1968             && TREE_PUBLIC (decl) && DECL_INITIAL (decl)
1969             && DECL_RTL (decl) != 0)
1970           TIMEVAR (symout_time, sdbout_symbol (decl, 0));
1971
1972         /* Output COFF information for non-global
1973            file-scope initialized variables. */
1974         if (write_symbols == SDB_DEBUG
1975             && TREE_CODE (decl) == VAR_DECL
1976             && DECL_INITIAL (decl)
1977             && DECL_RTL (decl) != 0
1978             && GET_CODE (DECL_RTL (decl)) == MEM)
1979           TIMEVAR (symout_time, sdbout_toplevel_data (decl));
1980 #endif /* SDB_DEBUGGING_INFO */
1981 #ifdef DWARF_DEBUGGING_INFO
1982         /* Output DWARF information for file-scope tentative data object
1983            declarations, file-scope (extern) function declarations (which
1984            had no corresponding body) and file-scope tagged type declarations
1985            and definitions which have not yet been forced out.  */
1986
1987         if (write_symbols == DWARF_DEBUG
1988             && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
1989           TIMEVAR (symout_time, dwarfout_file_scope_decl (decl, 1));
1990 #endif
1991       }
1992   }
1993
1994   /* Do dbx symbols */
1995 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
1996   if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
1997     TIMEVAR (symout_time,
1998              {
1999                dbxout_finish (asm_out_file, main_input_filename);
2000              });
2001 #endif
2002
2003 #ifdef DWARF_DEBUGGING_INFO
2004   if (write_symbols == DWARF_DEBUG)
2005     TIMEVAR (symout_time,
2006              {
2007                dwarfout_finish ();
2008              });
2009 #endif
2010
2011   /* Output some stuff at end of file if nec.  */
2012
2013   end_final (main_input_filename);
2014
2015 #ifdef ASM_FILE_END
2016   ASM_FILE_END (asm_out_file);
2017 #endif
2018
2019  after_finish_compilation:
2020
2021   /* Language-specific end of compilation actions.  */
2022
2023   lang_finish ();
2024
2025   /* Close the dump files.  */
2026
2027   if (flag_gen_aux_info)
2028     {
2029       fclose (aux_info_file);
2030       if (errorcount)
2031         unlink (aux_info_file_name);
2032     }
2033
2034   if (rtl_dump)
2035     fclose (rtl_dump_file);
2036
2037   if (jump_opt_dump)
2038     fclose (jump_opt_dump_file);
2039
2040   if (cse_dump)
2041     fclose (cse_dump_file);
2042
2043   if (loop_dump)
2044     fclose (loop_dump_file);
2045
2046   if (cse2_dump)
2047     fclose (cse2_dump_file);
2048
2049   if (flow_dump)
2050     fclose (flow_dump_file);
2051
2052   if (combine_dump)
2053     {
2054       dump_combine_total_stats (combine_dump_file);
2055       fclose (combine_dump_file);
2056     }
2057
2058   if (sched_dump)
2059     fclose (sched_dump_file);
2060
2061   if (local_reg_dump)
2062     fclose (local_reg_dump_file);
2063
2064   if (global_reg_dump)
2065     fclose (global_reg_dump_file);
2066
2067   if (sched2_dump)
2068     fclose (sched2_dump_file);
2069
2070   if (jump2_opt_dump)
2071     fclose (jump2_opt_dump_file);
2072
2073   if (dbr_sched_dump)
2074     fclose (dbr_sched_dump_file);
2075
2076 #ifdef STACK_REGS
2077   if (stack_reg_dump)
2078     fclose (stack_reg_dump_file);
2079 #endif
2080
2081   /* Close non-debugging input and output files.  Take special care to note
2082      whether fclose returns an error, since the pages might still be on the
2083      buffer chain while the file is open.  */
2084
2085   fclose (finput);
2086   if (ferror (asm_out_file) != 0 || fclose (asm_out_file) != 0)
2087     fatal_io_error (asm_file_name);
2088
2089   /* Print the times.  */
2090
2091   if (! quiet_flag)
2092     {
2093       fprintf (stderr,"\n");
2094       print_time ("parse", parse_time);
2095       print_time ("integration", integration_time);
2096       print_time ("jump", jump_time);
2097       print_time ("cse", cse_time);
2098       print_time ("loop", loop_time);
2099       print_time ("cse2", cse2_time);
2100       print_time ("flow", flow_time);
2101       print_time ("combine", combine_time);
2102       print_time ("sched", sched_time);
2103       print_time ("local-alloc", local_alloc_time);
2104       print_time ("global-alloc", global_alloc_time);
2105       print_time ("sched2", sched2_time);
2106       print_time ("dbranch", dbr_sched_time);
2107       print_time ("shorten-branch", shorten_branch_time);
2108       print_time ("stack-reg", stack_reg_time);
2109       print_time ("final", final_time);
2110       print_time ("varconst", varconst_time);
2111       print_time ("symout", symout_time);
2112       print_time ("dump", dump_time);
2113     }
2114 }
2115 \f
2116 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
2117    and TYPE_DECL nodes.
2118
2119    This does nothing for local (non-static) variables.
2120    Otherwise, it sets up the RTL and outputs any assembler code
2121    (label definition, storage allocation and initialization).
2122
2123    DECL is the declaration.  If ASMSPEC is nonzero, it specifies
2124    the assembler symbol name to be used.  TOP_LEVEL is nonzero
2125    if this declaration is not within a function.  */
2126
2127 void
2128 rest_of_decl_compilation (decl, asmspec, top_level, at_end)
2129      tree decl;
2130      char *asmspec;
2131      int top_level;
2132      int at_end;
2133 {
2134   /* Declarations of variables, and of functions defined elsewhere.  */
2135
2136   /* Forward declarations for nested functions are not "external",
2137      but we need to treat them as if they were.  */
2138   if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
2139       || TREE_CODE (decl) == FUNCTION_DECL)
2140     TIMEVAR (varconst_time,
2141              {
2142                make_decl_rtl (decl, asmspec, top_level);
2143                /* For a user-invisible decl that should be replaced
2144                   by its value when used, don't output anything.  */
2145                if (! (TREE_CODE (decl) == VAR_DECL
2146                       && DECL_IGNORED_P (decl) && TREE_READONLY (decl)
2147                       && DECL_INITIAL (decl) != 0))
2148                  /* Don't output anything
2149                     when a tentative file-scope definition is seen.
2150                     But at end of compilation, do output code for them.  */
2151                  if (! (! at_end && top_level
2152                         && (DECL_INITIAL (decl) == 0
2153                             || DECL_INITIAL (decl) == error_mark_node
2154                             || DECL_IGNORED_P (decl))))
2155                    assemble_variable (decl, top_level, at_end);
2156              });
2157   else if (DECL_REGISTER (decl) && asmspec != 0)
2158     {
2159       if (decode_reg_name (asmspec) >= 0)
2160         {
2161           DECL_RTL (decl) = 0;
2162           make_decl_rtl (decl, asmspec, top_level);
2163         }
2164       else
2165         error ("invalid register name `%s' for register variable", asmspec);
2166     }
2167 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2168   else if ((write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2169            && TREE_CODE (decl) == TYPE_DECL)
2170     TIMEVAR (symout_time, dbxout_symbol (decl, 0));
2171 #endif
2172 #ifdef SDB_DEBUGGING_INFO
2173   else if (write_symbols == SDB_DEBUG && top_level
2174            && TREE_CODE (decl) == TYPE_DECL)
2175     TIMEVAR (symout_time, sdbout_symbol (decl, 0));
2176 #endif
2177 }
2178
2179 /* Called after finishing a record, union or enumeral type.  */
2180
2181 void
2182 rest_of_type_compilation (type, toplev)
2183      tree type;
2184      int toplev;
2185 {
2186 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2187   if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2188     TIMEVAR (symout_time, dbxout_symbol (TYPE_STUB_DECL (type), !toplev));
2189 #endif
2190 #ifdef SDB_DEBUGGING_INFO
2191   if (write_symbols == SDB_DEBUG)
2192     TIMEVAR (symout_time, sdbout_symbol (TYPE_STUB_DECL (type), !toplev));
2193 #endif
2194 }
2195
2196 /* This is called from finish_function (within yyparse)
2197    after each top-level definition is parsed.
2198    It is supposed to compile that function or variable
2199    and output the assembler code for it.
2200    After we return, the tree storage is freed.  */
2201
2202 void
2203 rest_of_compilation (decl)
2204      tree decl;
2205 {
2206   register rtx insns;
2207   int start_time = get_run_time ();
2208   int tem;
2209   /* Nonzero if we have saved the original DECL_INITIAL of the function,
2210      to be restored after we finish compiling the function
2211      (for use when compiling inline calls to this function).  */
2212   tree saved_block_tree = 0;
2213   /* Likewise, for DECL_ARGUMENTS.  */
2214   tree saved_arguments = 0;
2215   int failure = 0;
2216
2217   /* If we are reconsidering an inline function
2218      at the end of compilation, skip the stuff for making it inline.  */
2219
2220   if (DECL_SAVED_INSNS (decl) == 0)
2221     {
2222       int specd = DECL_INLINE (decl);
2223       char *lose;
2224
2225       /* If requested, consider whether to make this function inline.  */
2226       if (specd || flag_inline_functions)
2227         TIMEVAR (integration_time,
2228                  {
2229                    lose = function_cannot_inline_p (decl);
2230                    if (lose)
2231                      {
2232                        if (warn_inline && specd)
2233                          warning_with_decl (decl, lose);
2234                        DECL_INLINE (decl) = 0;
2235                      }
2236                    else
2237                      DECL_INLINE (decl) = 1;
2238                  });
2239
2240       insns = get_insns ();
2241
2242       /* Dump the rtl code if we are dumping rtl.  */
2243
2244       if (rtl_dump)
2245         TIMEVAR (dump_time,
2246                  {
2247                    fprintf (rtl_dump_file, "\n;; Function %s\n\n",
2248                             IDENTIFIER_POINTER (DECL_NAME (decl)));
2249                    if (DECL_SAVED_INSNS (decl))
2250                      fprintf (rtl_dump_file, ";; (integrable)\n\n");
2251                    print_rtl (rtl_dump_file, insns);
2252                    fflush (rtl_dump_file);
2253                  });
2254
2255       /* If function is inline, and we don't yet know whether to
2256          compile it by itself, defer decision till end of compilation.
2257          finish_compilation will call rest_of_compilation again
2258          for those functions that need to be output.  */
2259
2260       if (DECL_INLINE (decl)
2261           && ((! TREE_PUBLIC (decl) && ! TREE_ADDRESSABLE (decl)
2262                && ! flag_keep_inline_functions)
2263               || DECL_EXTERNAL (decl)))
2264         {
2265 #ifdef DWARF_DEBUGGING_INFO
2266           /* Generate the DWARF info for the "abstract" instance
2267              of a function which we may later generate inlined and/or
2268              out-of-line instances of.  */
2269           if (write_symbols == DWARF_DEBUG)
2270             {
2271               set_decl_abstract_flags (decl, 1);
2272               TIMEVAR (symout_time, dwarfout_file_scope_decl (decl, 0));
2273               set_decl_abstract_flags (decl, 0);
2274             }
2275 #endif
2276           TIMEVAR (integration_time, save_for_inline_nocopy (decl));
2277           goto exit_rest_of_compilation;
2278         }
2279
2280       /* If we have to compile the function now, save its rtl and subdecls
2281          so that its compilation will not affect what others get.  */
2282       if (DECL_INLINE (decl))
2283         {
2284 #ifdef DWARF_DEBUGGING_INFO
2285           /* Generate the DWARF info for the "abstract" instance of
2286              a function which we will generate an out-of-line instance
2287              of almost immediately (and which we may also later generate
2288              various inlined instances of).  */
2289           if (write_symbols == DWARF_DEBUG)
2290             {
2291               set_decl_abstract_flags (decl, 1);
2292               TIMEVAR (symout_time, dwarfout_file_scope_decl (decl, 0));
2293               set_decl_abstract_flags (decl, 0);
2294             }
2295 #endif
2296           saved_block_tree = DECL_INITIAL (decl);
2297           saved_arguments = DECL_ARGUMENTS (decl);
2298           TIMEVAR (integration_time, save_for_inline_copying (decl));
2299         }
2300     }
2301
2302   TREE_ASM_WRITTEN (decl) = 1;
2303
2304   /* Now that integrate will no longer see our rtl, we need not distinguish
2305      between the return value of this function and the return value of called
2306      functions.  */
2307   rtx_equal_function_value_matters = 0;
2308
2309   /* Don't return yet if -Wreturn-type; we need to do jump_optimize.  */
2310   if ((rtl_dump_and_exit || flag_syntax_only) && !warn_return_type)
2311     {
2312       goto exit_rest_of_compilation;
2313     }
2314
2315   /* From now on, allocate rtl in current_obstack, not in saveable_obstack.
2316      Note that that may have been done above, in save_for_inline_copying.
2317      The call to resume_temporary_allocation near the end of this function
2318      goes back to the usual state of affairs.  */
2319
2320   rtl_in_current_obstack ();
2321
2322 #ifdef FINALIZE_PIC
2323   /* If we are doing position-independent code generation, now
2324      is the time to output special prologues and epilogues.
2325      We do not want to do this earlier, because it just clutters
2326      up inline functions with meaningless insns.  */
2327   if (flag_pic)
2328     FINALIZE_PIC;
2329 #endif
2330
2331   insns = get_insns ();
2332
2333   /* Copy any shared structure that should not be shared.  */
2334
2335   unshare_all_rtl (insns);
2336
2337   /* Instantiate all virtual registers.  */
2338
2339   instantiate_virtual_regs (current_function_decl, get_insns ());
2340
2341   /* See if we have allocated stack slots that are not directly addressable.
2342      If so, scan all the insns and create explicit address computation
2343      for all references to such slots.  */
2344 /*   fixup_stack_slots (); */
2345
2346   /* Do jump optimization the first time, if -opt.
2347      Also do it if -W, but in that case it doesn't change the rtl code,
2348      it only computes whether control can drop off the end of the function.  */
2349
2350   if (optimize > 0 || extra_warnings || warn_return_type
2351       /* If function is `volatile', we should warn if it tries to return.  */
2352       || TREE_THIS_VOLATILE (decl))
2353     {
2354       TIMEVAR (jump_time, reg_scan (insns, max_reg_num (), 0));
2355       TIMEVAR (jump_time, jump_optimize (insns, 0, 0, 1));
2356     }
2357
2358   /* Now is when we stop if -fsyntax-only and -Wreturn-type.  */
2359   if (rtl_dump_and_exit || flag_syntax_only)
2360     goto exit_rest_of_compilation;
2361
2362   /* Dump rtl code after jump, if we are doing that.  */
2363
2364   if (jump_opt_dump)
2365     TIMEVAR (dump_time,
2366              {
2367                fprintf (jump_opt_dump_file, "\n;; Function %s\n\n",
2368                         IDENTIFIER_POINTER (DECL_NAME (decl)));
2369                print_rtl (jump_opt_dump_file, insns);
2370                fflush (jump_opt_dump_file);
2371              });
2372
2373   /* Perform common subexpression elimination.
2374      Nonzero value from `cse_main' means that jumps were simplified
2375      and some code may now be unreachable, so do
2376      jump optimization again.  */
2377
2378   if (cse_dump)
2379     TIMEVAR (dump_time,
2380              {
2381                fprintf (cse_dump_file, "\n;; Function %s\n\n",
2382                         IDENTIFIER_POINTER (DECL_NAME (decl)));
2383              });
2384
2385   if (optimize > 0)
2386     {
2387       TIMEVAR (cse_time, reg_scan (insns, max_reg_num (), 1));
2388
2389       if (flag_thread_jumps)
2390         /* Hacks by tiemann & kenner.  */
2391         TIMEVAR (jump_time, thread_jumps (insns, max_reg_num (), 0));
2392
2393       TIMEVAR (cse_time, tem = cse_main (insns, max_reg_num (),
2394                                          0, cse_dump_file));
2395       TIMEVAR (cse_time, delete_dead_from_cse (insns, max_reg_num ()));
2396
2397       if (tem)
2398         TIMEVAR (jump_time, jump_optimize (insns, 0, 0, 0));
2399     }
2400
2401   /* Dump rtl code after cse, if we are doing that.  */
2402
2403   if (cse_dump)
2404     TIMEVAR (dump_time,
2405              {
2406                print_rtl (cse_dump_file, insns);
2407                fflush (cse_dump_file);
2408              });
2409
2410   if (loop_dump)
2411     TIMEVAR (dump_time,
2412              {
2413                fprintf (loop_dump_file, "\n;; Function %s\n\n",
2414                         IDENTIFIER_POINTER (DECL_NAME (decl)));
2415              });
2416
2417   /* Move constant computations out of loops.  */
2418
2419   if (optimize > 0)
2420     {
2421       TIMEVAR (loop_time,
2422                {
2423                  loop_optimize (insns, loop_dump_file);
2424                });
2425     }
2426
2427   /* Dump rtl code after loop opt, if we are doing that.  */
2428
2429   if (loop_dump)
2430     TIMEVAR (dump_time,
2431              {
2432                print_rtl (loop_dump_file, insns);
2433                fflush (loop_dump_file);
2434              });
2435
2436   if (cse2_dump)
2437     TIMEVAR (dump_time,
2438              {
2439                fprintf (cse2_dump_file, "\n;; Function %s\n\n",
2440                         IDENTIFIER_POINTER (DECL_NAME (decl)));
2441              });
2442
2443   if (optimize > 0 && flag_rerun_cse_after_loop)
2444     {
2445       TIMEVAR (cse2_time, reg_scan (insns, max_reg_num (), 0));
2446
2447       TIMEVAR (cse2_time, tem = cse_main (insns, max_reg_num (),
2448                                           1, cse2_dump_file));
2449       if (tem)
2450         TIMEVAR (jump_time, jump_optimize (insns, 0, 0, 0));
2451     }
2452
2453   if (optimize > 0 && flag_thread_jumps)
2454     /* This pass of jump threading straightens out code
2455        that was kinked by loop optimization.  */
2456     TIMEVAR (jump_time, thread_jumps (insns, max_reg_num (), 0));
2457
2458   /* Dump rtl code after cse, if we are doing that.  */
2459
2460   if (cse2_dump)
2461     TIMEVAR (dump_time,
2462              {
2463                print_rtl (cse2_dump_file, insns);
2464                fflush (cse2_dump_file);
2465              });
2466
2467   /* We are no longer anticipating cse in this function, at least.  */
2468
2469   cse_not_expected = 1;
2470
2471   /* Now we choose between stupid (pcc-like) register allocation
2472      (if we got the -noreg switch and not -opt)
2473      and smart register allocation.  */
2474
2475   if (optimize > 0)                     /* Stupid allocation probably won't work */
2476     obey_regdecls = 0;          /* if optimizations being done.  */
2477
2478   regclass_init ();
2479
2480   /* Print function header into flow dump now
2481      because doing the flow analysis makes some of the dump.  */
2482
2483   if (flow_dump)
2484     TIMEVAR (dump_time,
2485              {
2486                fprintf (flow_dump_file, "\n;; Function %s\n\n",
2487                         IDENTIFIER_POINTER (DECL_NAME (decl)));
2488              });
2489
2490   if (obey_regdecls)
2491     {
2492       TIMEVAR (flow_time,
2493                {
2494                  regclass (insns, max_reg_num ());
2495                  stupid_life_analysis (insns, max_reg_num (),
2496                                        flow_dump_file);
2497                });
2498     }
2499   else
2500     {
2501       /* Do control and data flow analysis,
2502          and write some of the results to dump file.  */
2503
2504       TIMEVAR (flow_time, flow_analysis (insns, max_reg_num (),
2505                                          flow_dump_file));
2506       if (warn_uninitialized)
2507         {
2508           uninitialized_vars_warning (DECL_INITIAL (decl));
2509           setjmp_args_warning ();
2510         }
2511     }
2512
2513   /* Dump rtl after flow analysis.  */
2514
2515   if (flow_dump)
2516     TIMEVAR (dump_time,
2517              {
2518                print_rtl (flow_dump_file, insns);
2519                fflush (flow_dump_file);
2520              });
2521
2522   /* If -opt, try combining insns through substitution.  */
2523
2524   if (optimize > 0)
2525     TIMEVAR (combine_time, combine_instructions (insns, max_reg_num ()));
2526
2527   /* Dump rtl code after insn combination.  */
2528
2529   if (combine_dump)
2530     TIMEVAR (dump_time,
2531              {
2532                fprintf (combine_dump_file, "\n;; Function %s\n\n",
2533                         IDENTIFIER_POINTER (DECL_NAME (decl)));
2534                dump_combine_stats (combine_dump_file);
2535                print_rtl (combine_dump_file, insns);
2536                fflush (combine_dump_file);
2537              });
2538
2539   /* Print function header into sched dump now
2540      because doing the sched analysis makes some of the dump.  */
2541
2542   if (sched_dump)
2543     TIMEVAR (dump_time,
2544              {
2545                fprintf (sched_dump_file, "\n;; Function %s\n\n",
2546                         IDENTIFIER_POINTER (DECL_NAME (decl)));
2547              });
2548
2549   if (optimize > 0 && flag_schedule_insns)
2550     {
2551       /* Do control and data sched analysis,
2552          and write some of the results to dump file.  */
2553
2554       TIMEVAR (sched_time, schedule_insns (sched_dump_file));
2555     }
2556
2557   /* Dump rtl after instruction scheduling.  */
2558
2559   if (sched_dump)
2560     TIMEVAR (dump_time,
2561              {
2562                print_rtl (sched_dump_file, insns);
2563                fflush (sched_dump_file);
2564              });
2565
2566   /* Unless we did stupid register allocation,
2567      allocate pseudo-regs that are used only within 1 basic block.  */
2568
2569   if (!obey_regdecls)
2570     TIMEVAR (local_alloc_time,
2571              {
2572                regclass (insns, max_reg_num ());
2573                local_alloc ();
2574              });
2575
2576   /* Dump rtl code after allocating regs within basic blocks.  */
2577
2578   if (local_reg_dump)
2579     TIMEVAR (dump_time,
2580              {
2581                fprintf (local_reg_dump_file, "\n;; Function %s\n\n",
2582                         IDENTIFIER_POINTER (DECL_NAME (decl)));
2583                dump_flow_info (local_reg_dump_file);
2584                dump_local_alloc (local_reg_dump_file);
2585                print_rtl (local_reg_dump_file, insns);
2586                fflush (local_reg_dump_file);
2587              });
2588
2589   if (global_reg_dump)
2590     TIMEVAR (dump_time,
2591              fprintf (global_reg_dump_file, "\n;; Function %s\n\n",
2592                       IDENTIFIER_POINTER (DECL_NAME (decl))));
2593
2594   /* Unless we did stupid register allocation,
2595      allocate remaining pseudo-regs, then do the reload pass
2596      fixing up any insns that are invalid.  */
2597
2598   TIMEVAR (global_alloc_time,
2599            {
2600              if (!obey_regdecls)
2601                failure = global_alloc (global_reg_dump_file);
2602              else
2603                failure = reload (insns, 0, global_reg_dump_file);
2604            });
2605
2606   if (global_reg_dump)
2607     TIMEVAR (dump_time,
2608              {
2609                dump_global_regs (global_reg_dump_file);
2610                print_rtl (global_reg_dump_file, insns);
2611                fflush (global_reg_dump_file);
2612              });
2613
2614   if (failure)
2615     goto exit_rest_of_compilation;
2616
2617   reload_completed = 1;
2618
2619   /* On some machines, the prologue and epilogue code, or parts thereof,
2620      can be represented as RTL.  Doing so lets us schedule insns between
2621      it and the rest of the code and also allows delayed branch
2622      scheduling to operate in the epilogue.  */
2623
2624   thread_prologue_and_epilogue_insns (insns);
2625
2626   if (optimize > 0 && flag_schedule_insns_after_reload)
2627     {
2628       if (sched2_dump)
2629         TIMEVAR (dump_time,
2630                  {
2631                    fprintf (sched2_dump_file, "\n;; Function %s\n\n",
2632                             IDENTIFIER_POINTER (DECL_NAME (decl)));
2633                  });
2634
2635       /* Do control and data sched analysis again,
2636          and write some more of the results to dump file.  */
2637
2638       TIMEVAR (sched2_time, schedule_insns (sched2_dump_file));
2639
2640       /* Dump rtl after post-reorder instruction scheduling.  */
2641
2642       if (sched2_dump)
2643         TIMEVAR (dump_time,
2644                  {
2645                    print_rtl (sched2_dump_file, insns);
2646                    fflush (sched2_dump_file);
2647                  });
2648     }
2649
2650 #ifdef LEAF_REGISTERS
2651   leaf_function = 0;
2652   if (optimize > 0 && only_leaf_regs_used () && leaf_function_p ())
2653     leaf_function = 1;
2654 #endif
2655
2656   /* One more attempt to remove jumps to .+1
2657      left by dead-store-elimination.
2658      Also do cross-jumping this time
2659      and delete no-op move insns.  */
2660
2661   if (optimize > 0)
2662     {
2663       TIMEVAR (jump_time, jump_optimize (insns, 1, 1, 0));
2664     }
2665
2666   /* Dump rtl code after jump, if we are doing that.  */
2667
2668   if (jump2_opt_dump)
2669     TIMEVAR (dump_time,
2670              {
2671                fprintf (jump2_opt_dump_file, "\n;; Function %s\n\n",
2672                         IDENTIFIER_POINTER (DECL_NAME (decl)));
2673                print_rtl (jump2_opt_dump_file, insns);
2674                fflush (jump2_opt_dump_file);
2675              });
2676
2677   /* If a scheduling pass for delayed branches is to be done,
2678      call the scheduling code. */
2679
2680 #ifdef DELAY_SLOTS
2681   if (optimize > 0 && flag_delayed_branch)
2682     {
2683       TIMEVAR (dbr_sched_time, dbr_schedule (insns, dbr_sched_dump_file));
2684       if (dbr_sched_dump)
2685         {
2686           TIMEVAR (dump_time,
2687                  {
2688                    fprintf (dbr_sched_dump_file, "\n;; Function %s\n\n",
2689                             IDENTIFIER_POINTER (DECL_NAME (decl)));
2690                    print_rtl (dbr_sched_dump_file, insns);
2691                    fflush (dbr_sched_dump_file);
2692                  });
2693         }
2694     }
2695 #endif
2696
2697   if (optimize > 0)
2698     /* Shorten branches.  */
2699     TIMEVAR (shorten_branch_time,
2700              {
2701                shorten_branches (get_insns ());
2702              });
2703
2704 #ifdef STACK_REGS
2705   TIMEVAR (stack_reg_time, reg_to_stack (insns, stack_reg_dump_file));
2706   if (stack_reg_dump)
2707     {
2708       TIMEVAR (dump_time,
2709                {
2710                  fprintf (stack_reg_dump_file, "\n;; Function %s\n\n",
2711                           IDENTIFIER_POINTER (DECL_NAME (decl)));
2712                  print_rtl (stack_reg_dump_file, insns);
2713                  fflush (stack_reg_dump_file);
2714                });
2715     }
2716 #endif
2717
2718   /* Now turn the rtl into assembler code.  */
2719
2720   TIMEVAR (final_time,
2721            {
2722              rtx x;
2723              char *fnname;
2724
2725              /* Get the function's name, as described by its RTL.
2726                 This may be different from the DECL_NAME name used
2727                 in the source file.  */
2728
2729              x = DECL_RTL (decl);
2730              if (GET_CODE (x) != MEM)
2731                abort ();
2732              x = XEXP (x, 0);
2733              if (GET_CODE (x) != SYMBOL_REF)
2734                abort ();
2735              fnname = XSTR (x, 0);
2736
2737              assemble_start_function (decl, fnname);
2738              final_start_function (insns, asm_out_file, optimize);
2739              final (insns, asm_out_file, optimize, 0);
2740              final_end_function (insns, asm_out_file, optimize);
2741              assemble_end_function (decl, fnname);
2742              fflush (asm_out_file);
2743            });
2744
2745   /* Write DBX symbols if requested */
2746
2747   /* Note that for those inline functions where we don't initially
2748      know for certain that we will be generating an out-of-line copy,
2749      the first invocation of this routine (rest_of_compilation) will
2750      skip over this code by doing a `goto exit_rest_of_compilation;'.
2751      Later on, finish_compilation will call rest_of_compilation again
2752      for those inline functions that need to have out-of-line copies
2753      generated.  During that call, we *will* be routed past here.  */
2754
2755 #ifdef DBX_DEBUGGING_INFO
2756   if (write_symbols == DBX_DEBUG)
2757     TIMEVAR (symout_time, dbxout_function (decl));
2758 #endif
2759
2760 #ifdef DWARF_DEBUGGING_INFO
2761   if (write_symbols == DWARF_DEBUG)
2762     TIMEVAR (symout_time, dwarfout_file_scope_decl (decl, 0));
2763 #endif
2764
2765  exit_rest_of_compilation:
2766
2767   /* In case the function was not output,
2768      don't leave any temporary anonymous types
2769      queued up for sdb output.  */
2770 #ifdef SDB_DEBUGGING_INFO
2771   if (write_symbols == SDB_DEBUG)
2772     sdbout_types (NULL_TREE);
2773 #endif
2774
2775   /* Put back the tree of subblocks and list of arguments
2776      from before we copied them.
2777      Code generation and the output of debugging info may have modified
2778      the copy, but the original is unchanged.  */
2779
2780   if (saved_block_tree != 0)
2781     DECL_INITIAL (decl) = saved_block_tree;
2782   if (saved_arguments != 0)
2783     DECL_ARGUMENTS (decl) = saved_arguments;
2784
2785   reload_completed = 0;
2786
2787   /* Clear out the real_constant_chain before some of the rtx's
2788      it runs through become garbage.  */
2789
2790   clear_const_double_mem ();
2791
2792   /* Cancel the effect of rtl_in_current_obstack.  */
2793
2794   resume_temporary_allocation ();
2795
2796   /* The parsing time is all the time spent in yyparse
2797      *except* what is spent in this function.  */
2798
2799   parse_time -= get_run_time () - start_time;
2800 }
2801 \f
2802 /* Entry point of cc1/c++.  Decode command args, then call compile_file.
2803    Exit code is 35 if can't open files, 34 if fatal error,
2804    33 if had nonfatal errors, else success.  */
2805
2806 int
2807 main (argc, argv, envp)
2808      int argc;
2809      char **argv;
2810      char **envp;
2811 {
2812   register int i;
2813   char *filename = 0;
2814   int flag_print_mem = 0;
2815   int version_flag = 0;
2816   char *p;
2817
2818   /* save in case md file wants to emit args as a comment.  */
2819   save_argc = argc;
2820   save_argv = argv;
2821
2822   p = argv[0] + strlen (argv[0]);
2823   while (p != argv[0] && p[-1] != '/') --p;
2824   progname = p;
2825
2826 #ifdef RLIMIT_STACK
2827   /* Get rid of any avoidable limit on stack size.  */
2828   {
2829     struct rlimit rlim;
2830
2831     /* Set the stack limit huge so that alloca does not fail. */
2832     getrlimit (RLIMIT_STACK, &rlim);
2833     rlim.rlim_cur = rlim.rlim_max;
2834     setrlimit (RLIMIT_STACK, &rlim);
2835   }
2836 #endif /* RLIMIT_STACK */
2837
2838   signal (SIGFPE, float_signal);
2839
2840 #ifdef SIGPIPE
2841   signal (SIGPIPE, pipe_closed);
2842 #endif
2843
2844   decl_printable_name = decl_name;
2845   lang_expand_expr = (struct rtx_def *(*)()) do_abort;
2846
2847   /* Initialize whether `char' is signed.  */
2848   flag_signed_char = DEFAULT_SIGNED_CHAR;
2849 #ifdef DEFAULT_SHORT_ENUMS
2850   /* Initialize how much space enums occupy, by default.  */
2851   flag_short_enums = DEFAULT_SHORT_ENUMS;
2852 #endif
2853
2854   /* Scan to see what optimization level has been specified.  That will
2855      determine the default value of many flags.  */
2856   for (i = 1; i < argc; i++)
2857     {
2858       if (!strcmp (argv[i], "-O"))
2859         {
2860           optimize = 1;
2861         }
2862       else if (argv[i][0] == '-' && argv[i][1] == 'O')
2863         {
2864           /* Handle -O2, -O3, -O69, ...  */
2865           char *p = &argv[i][2];
2866           int c;
2867
2868           while (c = *p++)
2869             if (! (c >= '0' && c <= '9'))
2870               break;
2871           if (c == 0)
2872             optimize = atoi (&argv[i][2]);
2873         }
2874     }
2875
2876   obey_regdecls = (optimize == 0);
2877   if (optimize == 0)
2878     {
2879       flag_no_inline = 1;
2880       warn_inline = 0;
2881     }
2882
2883   if (optimize >= 1)
2884     {
2885       flag_defer_pop = 1;
2886       flag_thread_jumps = 1;
2887 #ifdef DELAY_SLOTS
2888       flag_delayed_branch = 1;
2889 #endif
2890     }
2891
2892   if (optimize >= 2)
2893     {
2894       flag_cse_follow_jumps = 1;
2895       flag_cse_skip_blocks = 1;
2896       flag_expensive_optimizations = 1;
2897       flag_strength_reduce = 1;
2898       flag_rerun_cse_after_loop = 1;
2899       flag_caller_saves = 1;
2900 #ifdef INSN_SCHEDULING
2901       flag_schedule_insns = 1;
2902       flag_schedule_insns_after_reload = 1;
2903 #endif
2904     }
2905
2906 #ifdef OPTIMIZATION_OPTIONS
2907   /* Allow default optimizations to be specified on a per-machine basis.  */
2908   OPTIMIZATION_OPTIONS (optimize);
2909 #endif
2910
2911   /* Initialize register usage now so switches may override.  */
2912   init_reg_sets ();
2913
2914   target_flags = 0;
2915   set_target_switch ("");
2916
2917   for (i = 1; i < argc; i++)
2918     {
2919       int j;
2920       /* If this is a language-specific option,
2921          decode it in a language-specific way.  */
2922       for (j = 0; lang_options[j] != 0; j++)
2923         if (!strncmp (argv[i], lang_options[j],
2924                       strlen (lang_options[j])))
2925           break;
2926       if (lang_options[j] != 0)
2927         /* If the option is valid for *some* language,
2928            treat it as valid even if this language doesn't understand it.  */
2929         lang_decode_option (argv[i]);
2930       else if (argv[i][0] == '-' && argv[i][1] != 0)
2931         {
2932           register char *str = argv[i] + 1;
2933           if (str[0] == 'Y')
2934             str++;
2935
2936           if (str[0] == 'm')
2937             set_target_switch (&str[1]);
2938           else if (!strcmp (str, "dumpbase"))
2939             {
2940               dump_base_name = argv[++i];
2941             }
2942           else if (str[0] == 'd')
2943             {
2944               register char *p = &str[1];
2945               while (*p)
2946                 switch (*p++)
2947                   {
2948                   case 'a':
2949                     combine_dump = 1;
2950                     dbr_sched_dump = 1;
2951                     flow_dump = 1;
2952                     global_reg_dump = 1;
2953                     jump_opt_dump = 1;
2954                     jump2_opt_dump = 1;
2955                     local_reg_dump = 1;
2956                     loop_dump = 1;
2957                     rtl_dump = 1;
2958                     cse_dump = 1, cse2_dump = 1;
2959                     sched_dump = 1;
2960                     sched2_dump = 1;
2961                     stack_reg_dump = 1;
2962                     break;
2963                   case 'k':
2964                     stack_reg_dump = 1;
2965                     break;
2966                   case 'c':
2967                     combine_dump = 1;
2968                     break;
2969                   case 'd':
2970                     dbr_sched_dump = 1;
2971                     break;
2972                   case 'f':
2973                     flow_dump = 1;
2974                     break;
2975                   case 'g':
2976                     global_reg_dump = 1;
2977                     break;
2978                   case 'j':
2979                     jump_opt_dump = 1;
2980                     break;
2981                   case 'J':
2982                     jump2_opt_dump = 1;
2983                     break;
2984                   case 'l':
2985                     local_reg_dump = 1;
2986                     break;
2987                   case 'L':
2988                     loop_dump = 1;
2989                     break;
2990                   case 'm':
2991                     flag_print_mem = 1;
2992                     break;
2993                   case 'p':
2994                     flag_print_asm_name = 1;
2995                     break;
2996                   case 'r':
2997                     rtl_dump = 1;
2998                     break;
2999                   case 's':
3000                     cse_dump = 1;
3001                     break;
3002                   case 't':
3003                     cse2_dump = 1;
3004                     break;
3005                   case 'S':
3006                     sched_dump = 1;
3007                     break;
3008                   case 'R':
3009                     sched2_dump = 1;
3010                     break;
3011                   case 'y':
3012                     set_yydebug (1);
3013                     break;
3014
3015                   case 'x':
3016                     rtl_dump_and_exit = 1;
3017                     break;
3018                   }
3019             }
3020           else if (str[0] == 'f')
3021             {
3022               register char *p = &str[1];
3023               int found = 0;
3024
3025               /* Some kind of -f option.
3026                  P's value is the option sans `-f'.
3027                  Search for it in the table of options.  */
3028
3029               for (j = 0;
3030                    !found && j < sizeof (f_options) / sizeof (f_options[0]);
3031                    j++)
3032                 {
3033                   if (!strcmp (p, f_options[j].string))
3034                     {
3035                       *f_options[j].variable = f_options[j].on_value;
3036                       /* A goto here would be cleaner,
3037                          but breaks the vax pcc.  */
3038                       found = 1;
3039                     }
3040                   if (p[0] == 'n' && p[1] == 'o' && p[2] == '-'
3041                       && ! strcmp (p+3, f_options[j].string))
3042                     {
3043                       *f_options[j].variable = ! f_options[j].on_value;
3044                       found = 1;
3045                     }
3046                 }
3047
3048               if (found)
3049                 ;
3050               else if (!strncmp (p, "fixed-", 6))
3051                 fix_register (&p[6], 1, 1);
3052               else if (!strncmp (p, "call-used-", 10))
3053                 fix_register (&p[10], 0, 1);
3054               else if (!strncmp (p, "call-saved-", 11))
3055                 fix_register (&p[11], 0, 0);
3056               else
3057                 error ("Invalid option `%s'", argv[i]);
3058             }
3059           else if (str[0] == 'O')
3060             {
3061               register char *p = str+1;
3062               while (*p && *p >= '0' && *p <= '9')
3063                 p++;
3064               if (*p == '\0')
3065                 ;
3066               else
3067                 error ("Invalid option `%s'", argv[i]);
3068             }
3069           else if (!strcmp (str, "pedantic"))
3070             pedantic = 1;
3071           else if (!strcmp (str, "pedantic-errors"))
3072             flag_pedantic_errors = pedantic = 1;
3073           else if (!strcmp (str, "quiet"))
3074             quiet_flag = 1;
3075           else if (!strcmp (str, "version"))
3076             version_flag = 1;
3077           else if (!strcmp (str, "w"))
3078             inhibit_warnings = 1;
3079           else if (!strcmp (str, "W"))
3080             {
3081               extra_warnings = 1;
3082               warn_uninitialized = 1;
3083             }
3084           else if (str[0] == 'W')
3085             {
3086               register char *p = &str[1];
3087               int found = 0;
3088
3089               /* Some kind of -W option.
3090                  P's value is the option sans `-W'.
3091                  Search for it in the table of options.  */
3092
3093               for (j = 0;
3094                    !found && j < sizeof (W_options) / sizeof (W_options[0]);
3095                    j++)
3096                 {
3097                   if (!strcmp (p, W_options[j].string))
3098                     {
3099                       *W_options[j].variable = W_options[j].on_value;
3100                       /* A goto here would be cleaner,
3101                          but breaks the vax pcc.  */
3102                       found = 1;
3103                     }
3104                   if (p[0] == 'n' && p[1] == 'o' && p[2] == '-'
3105                       && ! strcmp (p+3, W_options[j].string))
3106                     {
3107                       *W_options[j].variable = ! W_options[j].on_value;
3108                       found = 1;
3109                     }
3110                 }
3111
3112               if (found)
3113                 ;
3114               else if (!strncmp (p, "id-clash-", 9))
3115                 {
3116                   char *endp = p + 9;
3117
3118                   while (*endp)
3119                     {
3120                       if (*endp >= '0' && *endp <= '9')
3121                         endp++;
3122                       else
3123                         {
3124                           error ("Invalid option `%s'", argv[i]);
3125                           goto id_clash_lose;
3126                         }
3127                     }
3128                   warn_id_clash = 1;
3129                   id_clash_len = atoi (str + 10);
3130                 id_clash_lose: ;
3131                 }
3132               else
3133                 error ("Invalid option `%s'", argv[i]);
3134             }
3135           else if (!strcmp (str, "p"))
3136             profile_flag = 1;
3137           else if (!strcmp (str, "a"))
3138             {
3139 #if !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
3140               warning ("`-a' option (basic block profile) not supported");
3141 #else
3142               profile_block_flag = 1;
3143 #endif
3144             }
3145           else if (str[0] == 'g')
3146             {
3147               char *p = str + 1;
3148               char *q;
3149               unsigned len;
3150               unsigned level;
3151
3152               while (*p && (*p < '0' || *p > '9'))
3153                 p++;
3154               len = p - str;
3155               q = p;
3156               while (*q && (*q >= '0' && *q <= '9'))
3157                 q++;
3158               if (*p)
3159                 level = atoi (p);
3160               else
3161                 level = 2;      /* default debugging info level */
3162               if (*q || level > 3)
3163                 {
3164                   warning ("invalid debug level specification in option: `-%s'",
3165                            str);
3166                   warning ("no debugging information will be generated");
3167                   level = 0;
3168                 }
3169
3170               /* If more than one debugging type is supported,
3171                  you must define PREFERRED_DEBUGGING_TYPE
3172                  to choose a format in a system-dependent way.  */
3173               /* This is one long line cause VAXC can't handle a \-newline.  */
3174 #if 1 < (defined (DBX_DEBUGGING_INFO) + defined (SDB_DEBUGGING_INFO) + defined (DWARF_DEBUGGING_INFO) + defined (XCOFF_DEBUGGING_INFO))
3175 #ifdef PREFERRED_DEBUGGING_TYPE
3176               if (!strncmp (str, "ggdb", len))
3177                 write_symbols = PREFERRED_DEBUGGING_TYPE;
3178 #else /* no PREFERRED_DEBUGGING_TYPE */
3179 You Lose!  You must define PREFERRED_DEBUGGING_TYPE!
3180 #endif /* no PREFERRED_DEBUGGING_TYPE */
3181 #endif /* More than one debugger format enabled.  */
3182 #ifdef DBX_DEBUGGING_INFO
3183               if (write_symbols != NO_DEBUG)
3184                 ;
3185               else if (!strncmp (str, "ggdb", len))
3186                 write_symbols = DBX_DEBUG;
3187               else if (!strncmp (str, "gstabs", len))
3188                 write_symbols = DBX_DEBUG;
3189               else if (!strncmp (str, "gstabs+", len))
3190                 write_symbols = DBX_DEBUG;
3191
3192               /* Always enable extensions for -ggdb or -gstabs+, 
3193                  always disable for -gstabs.
3194                  For plain -g, use system-specific default.  */
3195               if (write_symbols == DBX_DEBUG && !strncmp (str, "ggdb", len)
3196                   && len >= 2)
3197                 use_gnu_debug_info_extensions = 1;
3198               else if (write_symbols == DBX_DEBUG && !strncmp (str, "gstabs+", len)
3199                        && len >= 7)
3200                 use_gnu_debug_info_extensions = 1;
3201               else if (write_symbols == DBX_DEBUG
3202                        && !strncmp (str, "gstabs", len) && len >= 2)
3203                 use_gnu_debug_info_extensions = 0;
3204               else
3205                 use_gnu_debug_info_extensions = DEFAULT_GDB_EXTENSIONS;
3206 #endif /* DBX_DEBUGGING_INFO */
3207 #ifdef DWARF_DEBUGGING_INFO
3208               if (write_symbols != NO_DEBUG)
3209                 ;
3210               else if (!strncmp (str, "g", len))
3211                 write_symbols = DWARF_DEBUG;
3212               else if (!strncmp (str, "ggdb", len))
3213                 write_symbols = DWARF_DEBUG;
3214               else if (!strncmp (str, "gdwarf", len))
3215                 write_symbols = DWARF_DEBUG;
3216
3217               /* Always enable extensions for -ggdb or -gdwarf+, 
3218                  always disable for -gdwarf.
3219                  For plain -g, use system-specific default.  */
3220               if (write_symbols == DWARF_DEBUG && !strncmp (str, "ggdb", len)
3221                   && len >= 2)
3222                 use_gnu_debug_info_extensions = 1;
3223               else if (write_symbols == DWARF_DEBUG && !strcmp (str, "gdwarf+"))
3224                 use_gnu_debug_info_extensions = 1;
3225               else if (write_symbols == DWARF_DEBUG
3226                        && !strncmp (str, "gdwarf", len) && len >= 2)
3227                 use_gnu_debug_info_extensions = 0;
3228               else
3229                 use_gnu_debug_info_extensions = DEFAULT_GDB_EXTENSIONS;
3230 #endif
3231 #ifdef SDB_DEBUGGING_INFO
3232               if (write_symbols != NO_DEBUG)
3233                 ;
3234               else if (!strncmp (str, "g", len))
3235                 write_symbols = SDB_DEBUG;
3236               else if (!strncmp (str, "gdb", len))
3237                 write_symbols = SDB_DEBUG;
3238               else if (!strncmp (str, "gcoff", len))
3239                 write_symbols = SDB_DEBUG;
3240 #endif /* SDB_DEBUGGING_INFO */
3241 #ifdef XCOFF_DEBUGGING_INFO
3242               if (write_symbols != NO_DEBUG)
3243                 ;
3244               else if (!strncmp (str, "g", len))
3245                 write_symbols = XCOFF_DEBUG;
3246               else if (!strncmp (str, "ggdb", len))
3247                 write_symbols = XCOFF_DEBUG;
3248               else if (!strncmp (str, "gxcoff", len))
3249                 write_symbols = XCOFF_DEBUG;
3250
3251               /* Always enable extensions for -ggdb or -gxcoff+,
3252                  always disable for -gxcoff.
3253                  For plain -g, use system-specific default.  */
3254               if (write_symbols == XCOFF_DEBUG && !strncmp (str, "ggdb", len)
3255                   && len >= 2)
3256                 use_gnu_debug_info_extensions = 1;
3257               else if (write_symbols == XCOFF_DEBUG && !strcmp (str, "gxcoff+"))
3258                 use_gnu_debug_info_extensions = 1;
3259               else if (write_symbols == XCOFF_DEBUG
3260                        && !strncmp (str, "gxcoff", len) && len >= 2)
3261                 use_gnu_debug_info_extensions = 0;
3262               else
3263                 use_gnu_debug_info_extensions = DEFAULT_GDB_EXTENSIONS;
3264 #endif        
3265               if (write_symbols == NO_DEBUG)
3266                 warning ("`-%s' option not supported on this version of GCC", str);
3267               else if (level == 0)
3268                 write_symbols = NO_DEBUG;
3269               else
3270                 debug_info_level = (enum debug_info_level) level;
3271             }
3272           else if (!strcmp (str, "o"))
3273             {
3274               asm_file_name = argv[++i];
3275             }
3276           else if (str[0] == 'G')
3277             {
3278               g_switch_set = TRUE;
3279               g_switch_value = atoi ((str[1] != '\0') ? str+1 : argv[++i]);
3280             }
3281           else if (!strncmp (str, "aux-info", 8))
3282             {
3283               flag_gen_aux_info = 1;
3284               aux_info_file_name = (str[8] != '\0' ? str+8 : argv[++i]);
3285             }
3286           else
3287             error ("Invalid option `%s'", argv[i]);
3288         }
3289       else if (argv[i][0] == '+')
3290         error ("Invalid option `%s'", argv[i]);
3291       else
3292         filename = argv[i];
3293     }
3294
3295   if (optimize == 0)
3296     {
3297       /* Inlining does not work if not optimizing,
3298          so force it not to be done.  */
3299       flag_no_inline = 1;
3300       warn_inline = 0;
3301
3302       /* The c_decode_option and lang_decode_option functions set
3303          this to `2' if -Wall is used, so we can avoid giving out
3304          lots of errors for people who don't realize what -Wall does.  */
3305       if (warn_uninitialized == 1)
3306         warning ("-Wuninitialized is not supported without -O");
3307     }
3308
3309 #if defined(DWARF_DEBUGGING_INFO)
3310   if (write_symbols == DWARF_DEBUG
3311       && strcmp (language_string, "GNU C++") == 0)
3312     {
3313       warning ("-g option not supported for C++ on SVR4 systems");
3314       write_symbols = NO_DEBUG;
3315     }
3316 #endif /* defined(DWARF_DEBUGGING_INFO) */
3317
3318 #ifdef OVERRIDE_OPTIONS
3319   /* Some machines may reject certain combinations of options.  */
3320   OVERRIDE_OPTIONS;
3321 #endif
3322
3323   /* Unrolling all loops implies that standard loop unrolling must also
3324      be done.  */
3325   if (flag_unroll_all_loops)
3326     flag_unroll_loops = 1;
3327   /* Loop unrolling requires that strength_reduction be on also.  Silently
3328      turn on strength reduction here if it isn't already on.  Also, the loop
3329      unrolling code assumes that cse will be run after loop, so that must
3330      be turned on also.  */
3331   if (flag_unroll_loops)
3332     {
3333       flag_strength_reduce = 1;
3334       flag_rerun_cse_after_loop = 1;
3335     }
3336
3337   /* Warn about options that are not supported on this machine.  */
3338 #ifndef INSN_SCHEDULING
3339   if (flag_schedule_insns || flag_schedule_insns_after_reload)
3340     warning ("instruction scheduling not supported on this target machine");
3341 #endif
3342 #ifndef DELAY_SLOTS
3343   if (flag_delayed_branch)
3344     warning ("this target machine does not have delayed branches");
3345 #endif
3346
3347   /* If we are in verbose mode, write out the version and maybe all the
3348      option flags in use.  */
3349   if (version_flag)
3350     {
3351       fprintf (stderr, "%s version %s", language_string, version_string);
3352 #ifdef TARGET_VERSION
3353       TARGET_VERSION;
3354 #endif
3355 #ifdef __GNUC__
3356 #ifndef __VERSION__
3357 #define __VERSION__ "[unknown]"
3358 #endif
3359       fprintf (stderr, " compiled by GNU C version %s.\n", __VERSION__);
3360 #else
3361       fprintf (stderr, " compiled by CC.\n");
3362 #endif
3363       if (! quiet_flag)
3364         print_switch_values ();
3365     }
3366
3367   /* Now that register usage is specified, convert it to HARD_REG_SETs.  */
3368   init_reg_sets_1 ();
3369
3370   compile_file (filename);
3371
3372 #ifndef OS2
3373 #ifndef VMS
3374   if (flag_print_mem)
3375     {
3376       char *lim = (char *) sbrk (0);
3377
3378       fprintf (stderr, "Data size %d.\n",
3379                lim - (char *) &environ);
3380       fflush (stderr);
3381
3382 #ifdef USG
3383       system ("ps -l 1>&2");
3384 #else /* not USG */
3385       system ("ps v");
3386 #endif /* not USG */
3387     }
3388 #endif /* not VMS */
3389 #endif /* not OS2 */
3390
3391   if (errorcount)
3392     exit (FATAL_EXIT_CODE);
3393   if (sorrycount)
3394     exit (FATAL_EXIT_CODE);
3395   exit (SUCCESS_EXIT_CODE);
3396   return 34;
3397 }
3398 \f
3399 /* Decode -m switches.  */
3400
3401 /* Here is a table, controlled by the tm.h file, listing each -m switch
3402    and which bits in `target_switches' it should set or clear.
3403    If VALUE is positive, it is bits to set.
3404    If VALUE is negative, -VALUE is bits to clear.
3405    (The sign bit is not used so there is no confusion.)  */
3406
3407 struct {char *name; int value;} target_switches []
3408   = TARGET_SWITCHES;
3409
3410 /* This table is similar, but allows the switch to have a value.  */
3411
3412 #ifdef TARGET_OPTIONS
3413 struct {char *prefix; char ** variable;} target_options []
3414   = TARGET_OPTIONS;
3415 #endif
3416
3417 /* Decode the switch -mNAME.  */
3418
3419 void
3420 set_target_switch (name)
3421      char *name;
3422 {
3423   register int j;
3424   int valid = 0;
3425
3426   for (j = 0; j < sizeof target_switches / sizeof target_switches[0]; j++)
3427     if (!strcmp (target_switches[j].name, name))
3428       {
3429         if (target_switches[j].value < 0)
3430           target_flags &= ~-target_switches[j].value;
3431         else
3432           target_flags |= target_switches[j].value;
3433         valid = 1;
3434       }
3435
3436 #ifdef TARGET_OPTIONS
3437   if (!valid)
3438     for (j = 0; j < sizeof target_options / sizeof target_options[0]; j++)
3439       {
3440         int len = strlen (target_options[j].prefix);
3441         if (!strncmp (target_options[j].prefix, name, len))
3442           {
3443             *target_options[j].variable = name + len;
3444             valid = 1;
3445           }
3446       }
3447 #endif
3448
3449   if (!valid)
3450     error ("Invalid option `%s'", name);
3451 }
3452 \f
3453 /* Variable used for communication between the following two routines.  */
3454
3455 static int line_position;
3456
3457 /* Print an option value and adjust the position in the line.  */
3458
3459 static void
3460 print_single_switch (type, name)
3461      char *type, *name;
3462 {
3463   fprintf (stderr, " %s%s", type, name);
3464
3465   line_position += strlen (type) + strlen (name) + 1;
3466
3467   if (line_position > 65)
3468     {
3469       fprintf (stderr, "\n\t");
3470       line_position = 8;
3471     }
3472 }
3473      
3474 /* Print default target switches for -version.  */
3475
3476 static void
3477 print_switch_values ()
3478 {
3479   register int j;
3480
3481   fprintf (stderr, "enabled:");
3482   line_position = 8;
3483
3484   for (j = 0; j < sizeof f_options / sizeof f_options[0]; j++)
3485     if (*f_options[j].variable == f_options[j].on_value)
3486       print_single_switch ("-f", f_options[j].string);
3487
3488   for (j = 0; j < sizeof W_options / sizeof W_options[0]; j++)
3489     if (*W_options[j].variable == W_options[j].on_value)
3490       print_single_switch ("-W", W_options[j].string);
3491
3492   for (j = 0; j < sizeof target_switches / sizeof target_switches[0]; j++)
3493     if (target_switches[j].name[0] != '\0'
3494         && target_switches[j].value > 0
3495         && ((target_switches[j].value & target_flags)
3496             == target_switches[j].value))
3497       print_single_switch ("-m", target_switches[j].name);
3498
3499   fprintf (stderr, "\n");
3500 }