home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / toplev.c < prev    next >
C/C++ Source or Header  |  1991-12-19  |  80KB  |  3,035 lines

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