OSDN Git Service

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