home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gcc-2.7.2.1-src.tgz / tar.out / fsf / gcc / toplev.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  106KB  |  4,086 lines

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