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