home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / gcc / final.c < prev    next >
C/C++ Source or Header  |  1995-12-29  |  85KB  |  3,185 lines

  1. /* Convert RTL to assembler code and output it, for GNU compiler.
  2.    Copyright (C) 1987, 88, 89, 92, 93, 94, 1995 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 59 Temple Place - Suite 330,
  19. Boston, MA 02111-1307, USA.  */
  20.  
  21.  
  22. /* This is the final pass of the compiler.
  23.    It looks at the rtl code for a function and outputs assembler code.
  24.  
  25.    Call `final_start_function' to output the assembler code for function entry,
  26.    `final' to output assembler code for some RTL code,
  27.    `final_end_function' to output assembler code for function exit.
  28.    If a function is compiled in several pieces, each piece is
  29.    output separately with `final'.
  30.  
  31.    Some optimizations are also done at this level.
  32.    Move instructions that were made unnecessary by good register allocation
  33.    are detected and omitted from the output.  (Though most of these
  34.    are removed by the last jump pass.)
  35.  
  36.    Instructions to set the condition codes are omitted when it can be
  37.    seen that the condition codes already had the desired values.
  38.  
  39.    In some cases it is sufficient if the inherited condition codes
  40.    have related values, but this may require the following insn
  41.    (the one that tests the condition codes) to be modified.
  42.  
  43.    The code for the function prologue and epilogue are generated
  44.    directly as assembler code by the macros FUNCTION_PROLOGUE and
  45.    FUNCTION_EPILOGUE.  Those instructions never exist as rtl.  */
  46.  
  47. #include "config.h"
  48. #ifdef __STDC__
  49. #include <stdarg.h>
  50. #else
  51. #include <varargs.h>
  52. #endif
  53. #include <stdio.h>
  54. #include <ctype.h>
  55.  
  56. #include "tree.h"
  57. #include "rtl.h"
  58. #include "regs.h"
  59. #include "insn-config.h"
  60. #include "insn-flags.h"
  61. #include "insn-attr.h"
  62. #include "insn-codes.h"
  63. #include "recog.h"
  64. #include "conditions.h"
  65. #include "flags.h"
  66. #include "real.h"
  67. #include "hard-reg-set.h"
  68. #include "defaults.h"
  69. #include "output.h"
  70.  
  71. /* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist.  */
  72. #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
  73. #if defined (USG) || defined (NO_STAB_H)
  74. #include "gstab.h"  /* If doing DBX on sysV, use our own stab.h.  */
  75. #else
  76. #include <stab.h>  /* On BSD, use the system's stab.h.  */
  77. #endif /* not USG */
  78. #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
  79.  
  80. #ifdef XCOFF_DEBUGGING_INFO
  81. #include "xcoffout.h"
  82. #endif
  83.  
  84. /* .stabd code for line number.  */
  85. #ifndef N_SLINE
  86. #define    N_SLINE    0x44
  87. #endif
  88.  
  89. /* .stabs code for included file name.  */
  90. #ifndef N_SOL
  91. #define    N_SOL 0x84
  92. #endif
  93.  
  94. #ifndef INT_TYPE_SIZE
  95. #define INT_TYPE_SIZE BITS_PER_WORD
  96. #endif
  97.  
  98. /* If we aren't using cc0, CC_STATUS_INIT shouldn't exist.  So define a
  99.    null default for it to save conditionalization later.  */
  100. #ifndef CC_STATUS_INIT
  101. #define CC_STATUS_INIT
  102. #endif
  103.  
  104. /* How to start an assembler comment.  */
  105. #ifndef ASM_COMMENT_START
  106. #define ASM_COMMENT_START ";#"
  107. #endif
  108.  
  109. /* Is the given character a logical line separator for the assembler?  */
  110. #ifndef IS_ASM_LOGICAL_LINE_SEPARATOR
  111. #define IS_ASM_LOGICAL_LINE_SEPARATOR(C) ((C) == ';')
  112. #endif
  113.  
  114. /* Nonzero means this function is a leaf function, with no function calls. 
  115.    This variable exists to be examined in FUNCTION_PROLOGUE
  116.    and FUNCTION_EPILOGUE.  Always zero, unless set by some action.  */
  117. int leaf_function;
  118.  
  119. #ifdef OUTPUT_COMPILER_STUB
  120. extern void output_compiler_stub();
  121. #endif
  122.  
  123. /* Last insn processed by final_scan_insn.  */
  124. static rtx debug_insn = 0;
  125.  
  126. /* Line number of last NOTE.  */
  127. static int last_linenum;
  128.  
  129. /* Highest line number in current block.  */
  130. static int high_block_linenum;
  131.  
  132. /* Likewise for function.  */
  133. static int high_function_linenum;
  134.  
  135. /* Filename of last NOTE.  */
  136. static char *last_filename;
  137.  
  138. /* Number of basic blocks seen so far;
  139.    used if profile_block_flag is set.  */
  140. static int count_basic_blocks;
  141.  
  142. /* Nonzero while outputting an `asm' with operands.
  143.    This means that inconsistencies are the user's fault, so don't abort.
  144.    The precise value is the insn being output, to pass to error_for_asm.  */
  145. static rtx this_is_asm_operands;
  146.  
  147. /* Number of operands of this insn, for an `asm' with operands.  */
  148. static int insn_noperands;
  149.  
  150. /* Compare optimization flag.  */
  151.  
  152. static rtx last_ignored_compare = 0;
  153.  
  154. /* Flag indicating this insn is the start of a new basic block.  */
  155.  
  156. static int new_block = 1;
  157.  
  158. /* All the symbol-blocks (levels of scoping) in the compilation
  159.    are assigned sequence numbers in order of appearance of the
  160.    beginnings of the symbol-blocks.  Both final and dbxout do this,
  161.    and assume that they will both give the same number to each block.
  162.    Final uses these sequence numbers to generate assembler label names
  163.    LBBnnn and LBEnnn for the beginning and end of the symbol-block.
  164.    Dbxout uses the sequence numbers to generate references to the same labels
  165.    from the dbx debugging information.
  166.  
  167.    Sdb records this level at the beginning of each function,
  168.    in order to find the current level when recursing down declarations.
  169.    It outputs the block beginning and endings
  170.    at the point in the asm file where the blocks would begin and end.  */
  171.  
  172. int next_block_index;
  173.  
  174. /* Assign a unique number to each insn that is output.
  175.    This can be used to generate unique local labels.  */
  176.  
  177. static int insn_counter = 0;
  178.  
  179. #ifdef HAVE_cc0
  180. /* This variable contains machine-dependent flags (defined in tm.h)
  181.    set and examined by output routines
  182.    that describe how to interpret the condition codes properly.  */
  183.  
  184. CC_STATUS cc_status;
  185.  
  186. /* During output of an insn, this contains a copy of cc_status
  187.    from before the insn.  */
  188.  
  189. CC_STATUS cc_prev_status;
  190. #endif
  191.  
  192. /* Indexed by hardware reg number, is 1 if that register is ever
  193.    used in the current function.
  194.  
  195.    In life_analysis, or in stupid_life_analysis, this is set
  196.    up to record the hard regs used explicitly.  Reload adds
  197.    in the hard regs used for holding pseudo regs.  Final uses
  198.    it to generate the code in the function prologue and epilogue
  199.    to save and restore registers as needed.  */
  200.  
  201. char regs_ever_live[FIRST_PSEUDO_REGISTER];
  202.  
  203. /* Nonzero means current function must be given a frame pointer.
  204.    Set in stmt.c if anything is allocated on the stack there.
  205.    Set in reload1.c if anything is allocated on the stack there.  */
  206.  
  207. int frame_pointer_needed;
  208.  
  209. /* Assign unique numbers to labels generated for profiling.  */
  210.  
  211. int profile_label_no;
  212.  
  213. /* Length so far allocated in PENDING_BLOCKS.  */
  214.  
  215. static int max_block_depth;
  216.  
  217. /* Stack of sequence numbers of symbol-blocks of which we have seen the
  218.    beginning but not yet the end.  Sequence numbers are assigned at
  219.    the beginning; this stack allows us to find the sequence number
  220.    of a block that is ending.  */
  221.  
  222. static int *pending_blocks;
  223.  
  224. /* Number of elements currently in use in PENDING_BLOCKS.  */
  225.  
  226. static int block_depth;
  227.  
  228. /* Nonzero if have enabled APP processing of our assembler output.  */
  229.  
  230. static int app_on;
  231.  
  232. /* If we are outputting an insn sequence, this contains the sequence rtx.
  233.    Zero otherwise.  */
  234.  
  235. rtx final_sequence;
  236.  
  237. #ifdef ASSEMBLER_DIALECT
  238.  
  239. /* Number of the assembler dialect to use, starting at 0.  */
  240. static int dialect_number;
  241. #endif
  242.  
  243. /* Indexed by line number, nonzero if there is a note for that line.  */
  244.  
  245. static char *line_note_exists;
  246.  
  247. /* Linked list to hold line numbers for each basic block.  */
  248.  
  249. struct bb_list {
  250.   struct bb_list *next;        /* pointer to next basic block */
  251.   int line_num;            /* line number */
  252.   int file_label_num;        /* LPBC<n> label # for stored filename */
  253.   int func_label_num;        /* LPBC<n> label # for stored function name */
  254. };
  255.  
  256. static struct bb_list *bb_head    = 0;        /* Head of basic block list */
  257. static struct bb_list **bb_tail = &bb_head;    /* Ptr to store next bb ptr */
  258. static int bb_file_label_num    = -1;        /* Current label # for file */
  259. static int bb_func_label_num    = -1;        /* Current label # for func */
  260.  
  261. /* Linked list to hold the strings for each file and function name output.  */
  262.  
  263. struct bb_str {
  264.   struct bb_str *next;        /* pointer to next string */
  265.   char *string;            /* string */
  266.   int label_num;        /* label number */
  267.   int length;            /* string length */
  268. };
  269.  
  270. extern rtx peephole        PROTO((rtx));
  271.  
  272. static struct bb_str *sbb_head    = 0;        /* Head of string list.  */
  273. static struct bb_str **sbb_tail    = &sbb_head;    /* Ptr to store next bb str */
  274. static int sbb_label_num    = 0;        /* Last label used */
  275.  
  276. static int asm_insn_count    PROTO((rtx));
  277. static void profile_function    PROTO((FILE *));
  278. static void profile_after_prologue PROTO((FILE *));
  279. static void add_bb        PROTO((FILE *));
  280. static int add_bb_string    PROTO((char *, int));
  281. static void output_source_line    PROTO((FILE *, rtx));
  282. static rtx walk_alter_subreg    PROTO((rtx));
  283. static int alter_cond        PROTO((rtx));
  284. static void output_asm_name    PROTO((void));
  285. static void output_operand    PROTO((rtx, int));
  286. static void leaf_renumber_regs    PROTO((rtx));
  287.  
  288. extern char *getpwd ();
  289.  
  290. /* Initialize data in final at the beginning of a compilation.  */
  291.  
  292. void
  293. init_final (filename)
  294.      char *filename;
  295. {
  296.   next_block_index = 2;
  297.   app_on = 0;
  298.   max_block_depth = 20;
  299.   pending_blocks = (int *) xmalloc (20 * sizeof *pending_blocks);
  300.   final_sequence = 0;
  301.  
  302. #ifdef ASSEMBLER_DIALECT
  303.   dialect_number = ASSEMBLER_DIALECT;
  304. #endif
  305. }
  306.  
  307. /* Called at end of source file,
  308.    to output the block-profiling table for this entire compilation.  */
  309.  
  310. void
  311. end_final (filename)
  312.      char *filename;
  313. {
  314.   int i;
  315.  
  316.   if (profile_block_flag)
  317.     {
  318.       char name[20];
  319.       int align = exact_log2 (BIGGEST_ALIGNMENT / BITS_PER_UNIT);
  320.       int size = (POINTER_SIZE / BITS_PER_UNIT) * count_basic_blocks;
  321.       int rounded = size;
  322.       struct bb_list *ptr;
  323.       struct bb_str *sptr;
  324.  
  325.       rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
  326.       rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
  327.          * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
  328.  
  329.       data_section ();
  330.  
  331.       /* Output the main header, of 10 words:
  332.      0:  1 if this file's initialized, else 0.
  333.      1:  address of file name (LPBX1).
  334.      2:  address of table of counts (LPBX2).
  335.      3:  number of counts in the table.
  336.      4:  always 0, for compatibility with Sun.
  337.  
  338.          The following are GNU extensions:
  339.  
  340.      5:  address of table of start addrs of basic blocks (LPBX3).
  341.      6:  Number of bytes in this header.
  342.      7:  address of table of function names (LPBX4).
  343.      8:  address of table of line numbers (LPBX5) or 0.
  344.      9:  address of table of file names (LPBX6) or 0.  */
  345.  
  346.       ASM_OUTPUT_ALIGN (asm_out_file, align);
  347.  
  348.       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 0);
  349.       /* zero word */
  350.       assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
  351.  
  352.       /* address of filename */
  353.       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 1);
  354.       assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
  355.  
  356.       /* address of count table */
  357.       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
  358.       assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
  359.  
  360.       /* count of the # of basic blocks */
  361.       assemble_integer (GEN_INT (count_basic_blocks), UNITS_PER_WORD, 1);
  362.  
  363.       /* zero word (link field) */
  364.       assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
  365.  
  366.       /* address of basic block start address table */
  367.       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
  368.       assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
  369.  
  370.       /* byte count for extended structure.  */
  371.       assemble_integer (GEN_INT (10 * UNITS_PER_WORD), UNITS_PER_WORD, 1);
  372.  
  373.       /* address of function name table */
  374.       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 4);
  375.       assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
  376.  
  377.       /* address of line number and filename tables if debugging.  */
  378.       if (write_symbols != NO_DEBUG)
  379.     {
  380.       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 5);
  381.       assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
  382.       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 6);
  383.       assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
  384.     }
  385.       else
  386.     {
  387.       assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
  388.       assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
  389.     }
  390.  
  391.       /* Output the file name changing the suffix to .d for Sun tcov
  392.      compatibility.  */
  393.       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 1);
  394.       {
  395.     char *cwd = getpwd ();
  396.     int len = strlen (filename) + strlen (cwd) + 1;
  397.     char *data_file = (char *) alloca (len + 4);
  398.  
  399.     strcpy (data_file, cwd);
  400.     strcat (data_file, "/");
  401.     strcat (data_file, filename);
  402.     strip_off_ending (data_file, len);
  403.     strcat (data_file, ".d");
  404.     assemble_string (data_file, strlen (data_file) + 1);
  405.       }
  406.  
  407.       /* Make space for the table of counts.  */
  408.       if (flag_no_common || size == 0)
  409.     {
  410.       /* Realign data section.  */
  411.       ASM_OUTPUT_ALIGN (asm_out_file, align);
  412.       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 2);
  413.       if (size != 0)
  414.         assemble_zeros (size);
  415.     }
  416.       else
  417.     {
  418.       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
  419. #ifdef ASM_OUTPUT_SHARED_LOCAL
  420.       if (flag_shared_data)
  421.         ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
  422.       else
  423. #endif
  424. #ifdef ASM_OUTPUT_ALIGNED_LOCAL
  425.         ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size,
  426.                       BIGGEST_ALIGNMENT);
  427. #else
  428.         ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
  429. #endif
  430.     }
  431.  
  432.       /* Output any basic block strings */
  433.       readonly_data_section ();
  434.       if (sbb_head)
  435.     {
  436.       ASM_OUTPUT_ALIGN (asm_out_file, align);
  437.       for (sptr = sbb_head; sptr != 0; sptr = sptr->next)
  438.         {
  439.           ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBC", sptr->label_num);
  440.           assemble_string (sptr->string, sptr->length);
  441.         }
  442.     }
  443.  
  444.       /* Output the table of addresses.  */
  445.       /* Realign in new section */
  446.       ASM_OUTPUT_ALIGN (asm_out_file, align);
  447.       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 3);
  448.       for (i = 0; i < count_basic_blocks; i++)
  449.     {
  450.       ASM_GENERATE_INTERNAL_LABEL (name, "LPB", i);
  451.       assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name),
  452.                 UNITS_PER_WORD, 1);
  453.     }
  454.  
  455.       /* Output the table of function names.  */
  456.       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 4);
  457.       for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
  458.     {
  459.       if (ptr->func_label_num >= 0)
  460.         {
  461.           ASM_GENERATE_INTERNAL_LABEL (name, "LPBC", ptr->func_label_num);
  462.           assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name),
  463.                 UNITS_PER_WORD, 1);
  464.         }
  465.       else
  466.         assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
  467.     }
  468.  
  469.       for ( ; i < count_basic_blocks; i++)
  470.     assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
  471.  
  472.       if (write_symbols != NO_DEBUG)
  473.     {
  474.       /* Output the table of line numbers.  */
  475.       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 5);
  476.       for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
  477.         assemble_integer (GEN_INT (ptr->line_num), UNITS_PER_WORD, 1);
  478.  
  479.       for ( ; i < count_basic_blocks; i++)
  480.         assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
  481.  
  482.       /* Output the table of file names.  */
  483.       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 6);
  484.       for ((ptr = bb_head), (i = 0); ptr != 0; (ptr = ptr->next), i++)
  485.         {
  486.           if (ptr->file_label_num >= 0)
  487.         {
  488.           ASM_GENERATE_INTERNAL_LABEL (name, "LPBC", ptr->file_label_num);
  489.           assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name),
  490.                     UNITS_PER_WORD, 1);
  491.         }
  492.           else
  493.         assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
  494.         }
  495.  
  496.       for ( ; i < count_basic_blocks; i++)
  497.         assemble_integer (const0_rtx, UNITS_PER_WORD, 1);
  498.     }
  499.  
  500.       /* End with the address of the table of addresses,
  501.      so we can find it easily, as the last word in the file's text.  */
  502.       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
  503.       assemble_integer (gen_rtx (SYMBOL_REF, Pmode, name), UNITS_PER_WORD, 1);
  504.     }
  505. }
  506.  
  507. /* Enable APP processing of subsequent output.
  508.    Used before the output from an `asm' statement.  */
  509.  
  510. void
  511. app_enable ()
  512. {
  513.   if (! app_on)
  514.     {
  515.       fprintf (asm_out_file, ASM_APP_ON);
  516.       app_on = 1;
  517.     }
  518. }
  519.  
  520. /* Disable APP processing of subsequent output.
  521.    Called from varasm.c before most kinds of output.  */
  522.  
  523. void
  524. app_disable ()
  525. {
  526.   if (app_on)
  527.     {
  528.       fprintf (asm_out_file, ASM_APP_OFF);
  529.       app_on = 0;
  530.     }
  531. }
  532.  
  533. /* Return the number of slots filled in the current 
  534.    delayed branch sequence (we don't count the insn needing the
  535.    delay slot).   Zero if not in a delayed branch sequence.  */
  536.  
  537. #ifdef DELAY_SLOTS
  538. int
  539. dbr_sequence_length ()
  540. {
  541.   if (final_sequence != 0)
  542.     return XVECLEN (final_sequence, 0) - 1;
  543.   else
  544.     return 0;
  545. }
  546. #endif
  547.  
  548. /* The next two pages contain routines used to compute the length of an insn
  549.    and to shorten branches.  */
  550.  
  551. /* Arrays for insn lengths, and addresses.  The latter is referenced by
  552.    `insn_current_length'.  */
  553.  
  554. static short *insn_lengths;
  555. int *insn_addresses;
  556.  
  557. /* Address of insn being processed.  Used by `insn_current_length'.  */
  558. int insn_current_address;
  559.  
  560. /* Indicate that branch shortening hasn't yet been done.  */
  561.  
  562. void
  563. init_insn_lengths ()
  564. {
  565.   insn_lengths = 0;
  566. }
  567.  
  568. /* Obtain the current length of an insn.  If branch shortening has been done,
  569.    get its actual length.  Otherwise, get its maximum length.  */
  570.  
  571. int
  572. get_attr_length (insn)
  573.      rtx insn;
  574. {
  575. #ifdef HAVE_ATTR_length
  576.   rtx body;
  577.   int i;
  578.   int length = 0;
  579.  
  580.   if (insn_lengths)
  581.     return insn_lengths[INSN_UID (insn)];
  582.   else
  583.     switch (GET_CODE (insn))
  584.       {
  585.       case NOTE:
  586.       case BARRIER:
  587.       case CODE_LABEL:
  588.     return 0;
  589.  
  590.       case CALL_INSN:
  591.     length = insn_default_length (insn);
  592.     break;
  593.  
  594.       case JUMP_INSN:
  595.     body = PATTERN (insn);
  596.         if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
  597.       {
  598.         /* This only takes room if jump tables go into the text section.  */
  599. #if !defined(READONLY_DATA_SECTION) || defined(JUMP_TABLES_IN_TEXT_SECTION)
  600.         length = (XVECLEN (body, GET_CODE (body) == ADDR_DIFF_VEC)
  601.               * GET_MODE_SIZE (GET_MODE (body)));
  602.  
  603.         /* Be pessimistic and assume worst-case alignment.  */
  604.         length += (GET_MODE_SIZE (GET_MODE (body)) - 1);
  605. #else
  606.         return 0;
  607. #endif
  608.       }
  609.     else
  610.       length = insn_default_length (insn);
  611.     break;
  612.  
  613.       case INSN:
  614.     body = PATTERN (insn);
  615.     if (GET_CODE (body) == USE || GET_CODE (body) == CLOBBER)
  616.       return 0;
  617.  
  618.     else if (GET_CODE (body) == ASM_INPUT || asm_noperands (body) >= 0)
  619.       length = asm_insn_count (body) * insn_default_length (insn);
  620.     else if (GET_CODE (body) == SEQUENCE)
  621.       for (i = 0; i < XVECLEN (body, 0); i++)
  622.         length += get_attr_length (XVECEXP (body, 0, i));
  623.     else
  624.       length = insn_default_length (insn);
  625.       }
  626.  
  627. #ifdef ADJUST_INSN_LENGTH
  628.   ADJUST_INSN_LENGTH (insn, length);
  629. #endif
  630.   return length;
  631. #else /* not HAVE_ATTR_length */
  632.   return 0;
  633. #endif /* not HAVE_ATTR_length */
  634. }
  635.  
  636. /* Make a pass over all insns and compute their actual lengths by shortening
  637.    any branches of variable length if possible.  */
  638.  
  639. /* Give a default value for the lowest address in a function.  */
  640.  
  641. #ifndef FIRST_INSN_ADDRESS
  642. #define FIRST_INSN_ADDRESS 0
  643. #endif
  644.  
  645. void
  646. shorten_branches (first)
  647.      rtx first;
  648. {
  649. #ifdef HAVE_ATTR_length
  650.   rtx insn;
  651.   int something_changed = 1;
  652.   int max_uid = 0;
  653.   char *varying_length;
  654.   rtx body;
  655.   int uid;
  656.  
  657.   /* Compute maximum UID and allocate arrays.  */
  658.   for (insn = first; insn; insn = NEXT_INSN (insn))
  659.     if (INSN_UID (insn) > max_uid)
  660.       max_uid = INSN_UID (insn);
  661.  
  662.   max_uid++;
  663.   insn_lengths = (short *) oballoc (max_uid * sizeof (short));
  664.   insn_addresses = (int *) oballoc (max_uid * sizeof (int));
  665.   varying_length = (char *) oballoc (max_uid * sizeof (char));
  666.  
  667.   /* Compute initial lengths, addresses, and varying flags for each insn.  */
  668.   for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
  669.        insn != 0;
  670.        insn_current_address += insn_lengths[uid], insn = NEXT_INSN (insn))
  671.     {
  672.       uid = INSN_UID (insn);
  673.       insn_addresses[uid] = insn_current_address;
  674.       insn_lengths[uid] = 0;
  675.       varying_length[uid] = 0;
  676.       
  677.       if (GET_CODE (insn) == NOTE || GET_CODE (insn) == BARRIER
  678.       || GET_CODE (insn) == CODE_LABEL)
  679.     continue;
  680.  
  681.       body = PATTERN (insn);
  682.       if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
  683.     {
  684.       /* This only takes room if read-only data goes into the text
  685.          section.  */
  686. #if !defined(READONLY_DATA_SECTION) || defined(JUMP_TABLES_IN_TEXT_SECTION)
  687.       int unitsize = GET_MODE_SIZE (GET_MODE (body));
  688.  
  689.       insn_lengths[uid] = (XVECLEN (body, GET_CODE (body) == ADDR_DIFF_VEC)
  690.                    * GET_MODE_SIZE (GET_MODE (body)));
  691.  
  692.       /* Account for possible alignment.  */
  693.       insn_lengths[uid]
  694.         += unitsize - (insn_current_address & (unitsize - 1));
  695. #else
  696.       ;
  697. #endif
  698.     }
  699.       else if (asm_noperands (body) >= 0)
  700.     insn_lengths[uid] = asm_insn_count (body) * insn_default_length (insn);
  701.       else if (GET_CODE (body) == SEQUENCE)
  702.     {
  703.       int i;
  704.       int const_delay_slots;
  705. #ifdef DELAY_SLOTS
  706.       const_delay_slots = const_num_delay_slots (XVECEXP (body, 0, 0));
  707. #else
  708.       const_delay_slots = 0;
  709. #endif
  710.       /* Inside a delay slot sequence, we do not do any branch shortening
  711.          if the shortening could change the number of delay slots
  712.          of the branch. */
  713.       for (i = 0; i < XVECLEN (body, 0); i++)
  714.         {
  715.           rtx inner_insn = XVECEXP (body, 0, i);
  716.           int inner_uid = INSN_UID (inner_insn);
  717.           int inner_length;
  718.  
  719.           if (asm_noperands (PATTERN (XVECEXP (body, 0, i))) >= 0)
  720.         inner_length = (asm_insn_count (PATTERN (inner_insn))
  721.                 * insn_default_length (inner_insn));
  722.           else
  723.         inner_length = insn_default_length (inner_insn);
  724.           
  725.           insn_lengths[inner_uid] = inner_length;
  726.           if (const_delay_slots)
  727.         {
  728.           if ((varying_length[inner_uid]
  729.                = insn_variable_length_p (inner_insn)) != 0)
  730.             varying_length[uid] = 1;
  731.           insn_addresses[inner_uid] = (insn_current_address +
  732.                            insn_lengths[uid]);
  733.         }
  734.           else
  735.         varying_length[inner_uid] = 0;
  736.           insn_lengths[uid] += inner_length;
  737.         }
  738.     }
  739.       else if (GET_CODE (body) != USE && GET_CODE (body) != CLOBBER)
  740.     {
  741.       insn_lengths[uid] = insn_default_length (insn);
  742.       varying_length[uid] = insn_variable_length_p (insn);
  743.     }
  744.  
  745.       /* If needed, do any adjustment.  */
  746. #ifdef ADJUST_INSN_LENGTH
  747.       ADJUST_INSN_LENGTH (insn, insn_lengths[uid]);
  748. #endif
  749.     }
  750.  
  751.   /* Now loop over all the insns finding varying length insns.  For each,
  752.      get the current insn length.  If it has changed, reflect the change.
  753.      When nothing changes for a full pass, we are done.  */
  754.  
  755.   while (something_changed)
  756.     {
  757.       something_changed = 0;
  758.       for (insn_current_address = FIRST_INSN_ADDRESS, insn = first;
  759.        insn != 0;
  760.        insn = NEXT_INSN (insn))
  761.     {
  762.       int new_length;
  763.       int tmp_length;
  764.  
  765.       uid = INSN_UID (insn);
  766.       insn_addresses[uid] = insn_current_address;
  767.       if (! varying_length[uid])
  768.         {
  769.           insn_current_address += insn_lengths[uid];
  770.           continue;
  771.         }
  772.       if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
  773.         {
  774.           int i;
  775.           
  776.           body = PATTERN (insn);
  777.           new_length = 0;
  778.           for (i = 0; i < XVECLEN (body, 0); i++)
  779.         {
  780.           rtx inner_insn = XVECEXP (body, 0, i);
  781.           int inner_uid = INSN_UID (inner_insn);
  782.           int inner_length;
  783.  
  784.           insn_addresses[inner_uid] = insn_current_address;
  785.  
  786.           /* insn_current_length returns 0 for insns with a
  787.              non-varying length.  */
  788.           if (! varying_length[inner_uid])
  789.             inner_length = insn_lengths[inner_uid];
  790.           else
  791.             inner_length = insn_current_length (inner_insn);
  792.  
  793.           if (inner_length != insn_lengths[inner_uid])
  794.             {
  795.               insn_lengths[inner_uid] = inner_length;
  796.               something_changed = 1;
  797.             }
  798.           insn_current_address += insn_lengths[inner_uid];
  799.           new_length += inner_length;
  800.         }
  801.         }
  802.       else
  803.         {
  804.           new_length = insn_current_length (insn);
  805.           insn_current_address += new_length;
  806.         }
  807.  
  808. #ifdef SHORTEN_WITH_ADJUST_INSN_LENGTH
  809. #ifdef ADJUST_INSN_LENGTH
  810.       /* If needed, do any adjustment.  */
  811.       tmp_length = new_length;
  812.       ADJUST_INSN_LENGTH (insn, new_length);
  813.       insn_current_address += (new_length - tmp_length);
  814. #endif
  815. #endif
  816.  
  817.       if (new_length != insn_lengths[uid])
  818.         {
  819.           insn_lengths[uid] = new_length;
  820.           something_changed = 1;
  821.         }
  822.     }
  823.       /* For a non-optimizing compile, do only a single pass.  */
  824.       if (!optimize)
  825.     break;
  826.     }
  827. #endif /* HAVE_ATTR_length */
  828. }
  829.  
  830. #ifdef HAVE_ATTR_length
  831. /* Given the body of an INSN known to be generated by an ASM statement, return
  832.    the number of machine instructions likely to be generated for this insn.
  833.    This is used to compute its length.  */
  834.  
  835. static int
  836. asm_insn_count (body)
  837.      rtx body;
  838. {
  839.   char *template;
  840.   int count = 1;
  841.  
  842.   if (GET_CODE (body) == ASM_INPUT)
  843.     template = XSTR (body, 0);
  844.   else
  845.     template = decode_asm_operands (body, NULL_PTR, NULL_PTR,
  846.                     NULL_PTR, NULL_PTR);
  847.  
  848.   for ( ; *template; template++)
  849.     if (IS_ASM_LOGICAL_LINE_SEPARATOR(*template) || *template == '\n')
  850.       count++;
  851.  
  852.   return count;
  853. }
  854. #endif
  855.  
  856. /* Output assembler code for the start of a function,
  857.    and initialize some of the variables in this file
  858.    for the new function.  The label for the function and associated
  859.    assembler pseudo-ops have already been output in `assemble_start_function'.
  860.  
  861.    FIRST is the first insn of the rtl for the function being compiled.
  862.    FILE is the file to write assembler code to.
  863.    OPTIMIZE is nonzero if we should eliminate redundant
  864.      test and compare insns.  */
  865.  
  866. void
  867. final_start_function (first, file, optimize)
  868.      rtx first;
  869.      FILE *file;
  870.      int optimize;
  871. {
  872.   block_depth = 0;
  873.  
  874.   this_is_asm_operands = 0;
  875.  
  876. #ifdef NON_SAVING_SETJMP
  877.   /* A function that calls setjmp should save and restore all the
  878.      call-saved registers on a system where longjmp clobbers them.  */
  879.   if (NON_SAVING_SETJMP && current_function_calls_setjmp)
  880.     {
  881.       int i;
  882.  
  883.       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  884.     if (!call_used_regs[i] && !call_fixed_regs[i])
  885.       regs_ever_live[i] = 1;
  886.     }
  887. #endif
  888.   
  889.   /* Initial line number is supposed to be output
  890.      before the function's prologue and label
  891.      so that the function's address will not appear to be
  892.      in the last statement of the preceding function.  */
  893.   if (NOTE_LINE_NUMBER (first) != NOTE_INSN_DELETED)
  894.     last_linenum = high_block_linenum = high_function_linenum
  895.       = NOTE_LINE_NUMBER (first);
  896.  
  897.   /* For SDB and XCOFF, the function beginning must be marked between
  898.      the function label and the prologue.  We always need this, even when
  899.      -g1 was used.  Defer on MIPS systems so that parameter descriptions
  900.      follow function entry. */
  901. #if defined(SDB_DEBUGGING_INFO) && !defined(MIPS_DEBUGGING_INFO)
  902.   if (write_symbols == SDB_DEBUG)
  903.     sdbout_begin_function (last_linenum);
  904.   else
  905. #endif
  906. #ifdef XCOFF_DEBUGGING_INFO
  907.     if (write_symbols == XCOFF_DEBUG)
  908.       xcoffout_begin_function (file, last_linenum);
  909.     else
  910. #endif      
  911.       /* But only output line number for other debug info types if -g2
  912.      or better.  */
  913.       if (NOTE_LINE_NUMBER (first) != NOTE_INSN_DELETED)
  914.     output_source_line (file, first);
  915.  
  916. #ifdef LEAF_REG_REMAP
  917.   if (leaf_function)
  918.     leaf_renumber_regs (first);
  919. #endif
  920.  
  921.   /* The Sun386i and perhaps other machines don't work right
  922.      if the profiling code comes after the prologue.  */
  923. #ifdef PROFILE_BEFORE_PROLOGUE
  924.   if (profile_flag)
  925.     profile_function (file);
  926. #endif /* PROFILE_BEFORE_PROLOGUE */
  927.  
  928. #ifdef FUNCTION_PROLOGUE
  929.   /* First output the function prologue: code to set up the stack frame.  */
  930.   FUNCTION_PROLOGUE (file, get_frame_size ());
  931. #endif
  932.  
  933. #if defined (SDB_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
  934.   if (write_symbols == SDB_DEBUG || write_symbols == XCOFF_DEBUG)
  935.     next_block_index = 1;
  936. #endif
  937.  
  938.   /* If the machine represents the prologue as RTL, the profiling code must
  939.      be emitted when NOTE_INSN_PROLOGUE_END is scanned.  */
  940. #ifdef HAVE_prologue
  941.   if (! HAVE_prologue)
  942. #endif
  943.     profile_after_prologue (file);
  944.  
  945.   profile_label_no++;
  946.  
  947.   /* If we are doing basic block profiling, remember a printable version
  948.      of the function name.  */
  949.   if (profile_block_flag)
  950.     {
  951.       char *junk = "function";
  952.       bb_func_label_num =
  953.     add_bb_string ((*decl_printable_name) (current_function_decl, &junk), FALSE);
  954.     }
  955. }
  956.  
  957. static void
  958. profile_after_prologue (file)
  959.      FILE *file;
  960. {
  961. #ifdef FUNCTION_BLOCK_PROFILER
  962.   if (profile_block_flag)
  963.     {
  964.       FUNCTION_BLOCK_PROFILER (file, profile_label_no);
  965.     }
  966. #endif /* FUNCTION_BLOCK_PROFILER */
  967.  
  968. #ifndef PROFILE_BEFORE_PROLOGUE
  969.   if (profile_flag)
  970.     profile_function (file);
  971. #endif /* not PROFILE_BEFORE_PROLOGUE */
  972. }
  973.  
  974. static void
  975. profile_function (file)
  976.      FILE *file;
  977. {
  978.   int align = MIN (BIGGEST_ALIGNMENT, POINTER_SIZE);
  979.   int sval = current_function_returns_struct;
  980.   int cxt = current_function_needs_context;
  981.  
  982.   data_section ();
  983.   ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
  984. #ifdef PROFILE_LABEL_PREFIX
  985.   ASM_OUTPUT_INTERNAL_LABEL (file, "_LP", profile_label_no);
  986. #else
  987.   ASM_OUTPUT_INTERNAL_LABEL (file, "LP", profile_label_no);
  988. #endif
  989.   assemble_integer (const0_rtx, POINTER_SIZE / BITS_PER_UNIT, 1);
  990.  
  991.   text_section ();
  992.  
  993. #ifdef STRUCT_VALUE_INCOMING_REGNUM
  994.   if (sval)
  995.     ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_INCOMING_REGNUM);
  996. #else
  997. #ifdef STRUCT_VALUE_REGNUM
  998.   if (sval)
  999.     ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_REGNUM);
  1000. #endif
  1001. #endif
  1002.  
  1003. #if 0
  1004. #ifdef STATIC_CHAIN_INCOMING_REGNUM
  1005.   if (cxt)
  1006.     ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_INCOMING_REGNUM);
  1007. #else
  1008. #ifdef STATIC_CHAIN_REGNUM
  1009.   if (cxt)
  1010.     ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_REGNUM);
  1011. #endif
  1012. #endif
  1013. #endif                /* 0 */
  1014.  
  1015.   FUNCTION_PROFILER (file, profile_label_no);
  1016.  
  1017. #if 0
  1018. #ifdef STATIC_CHAIN_INCOMING_REGNUM
  1019.   if (cxt)
  1020.     ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_INCOMING_REGNUM);
  1021. #else
  1022. #ifdef STATIC_CHAIN_REGNUM
  1023.   if (cxt)
  1024.     ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_REGNUM);
  1025. #endif
  1026. #endif
  1027. #endif                /* 0 */
  1028.  
  1029. #ifdef STRUCT_VALUE_INCOMING_REGNUM
  1030.   if (sval)
  1031.     ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_INCOMING_REGNUM);
  1032. #else
  1033. #ifdef STRUCT_VALUE_REGNUM
  1034.   if (sval)
  1035.     ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_REGNUM);
  1036. #endif
  1037. #endif
  1038. }
  1039.  
  1040. /* Output assembler code for the end of a function.
  1041.    For clarity, args are same as those of `final_start_function'
  1042.    even though not all of them are needed.  */
  1043.  
  1044. void
  1045. final_end_function (first, file, optimize)
  1046.      rtx first;
  1047.      FILE *file;
  1048.      int optimize;
  1049. {
  1050.   if (app_on)
  1051.     {
  1052.       fprintf (file, ASM_APP_OFF);
  1053.       app_on = 0;
  1054.     }
  1055.  
  1056. #ifdef SDB_DEBUGGING_INFO
  1057.   if (write_symbols == SDB_DEBUG)
  1058.     sdbout_end_function (high_function_linenum);
  1059. #endif
  1060.  
  1061. #ifdef DWARF_DEBUGGING_INFO
  1062.   if (write_symbols == DWARF_DEBUG)
  1063.     dwarfout_end_function ();
  1064. #endif
  1065.  
  1066. #ifdef XCOFF_DEBUGGING_INFO
  1067.   if (write_symbols == XCOFF_DEBUG)
  1068.     xcoffout_end_function (file, high_function_linenum);
  1069. #endif
  1070.  
  1071. #ifdef FUNCTION_EPILOGUE
  1072.   /* Finally, output the function epilogue:
  1073.      code to restore the stack frame and return to the caller.  */
  1074.   FUNCTION_EPILOGUE (file, get_frame_size ());
  1075. #endif
  1076.  
  1077. #ifdef OUTPUT_COMPILER_STUB
  1078.   output_compiler_stub();
  1079. #endif
  1080.  
  1081. #ifdef SDB_DEBUGGING_INFO
  1082.   if (write_symbols == SDB_DEBUG)
  1083.     sdbout_end_epilogue ();
  1084. #endif
  1085.  
  1086. #ifdef DWARF_DEBUGGING_INFO
  1087.   if (write_symbols == DWARF_DEBUG)
  1088.     dwarfout_end_epilogue ();
  1089. #endif
  1090.  
  1091. #ifdef XCOFF_DEBUGGING_INFO
  1092.   if (write_symbols == XCOFF_DEBUG)
  1093.     xcoffout_end_epilogue (file);
  1094. #endif
  1095.  
  1096.   bb_func_label_num = -1;    /* not in function, nuke label # */
  1097.  
  1098.   /* If FUNCTION_EPILOGUE is not defined, then the function body
  1099.      itself contains return instructions wherever needed.  */
  1100. }
  1101.  
  1102. /* Add a block to the linked list that remembers the current line/file/function
  1103.    for basic block profiling.  Emit the label in front of the basic block and
  1104.    the instructions that increment the count field.  */
  1105.  
  1106. static void
  1107. add_bb (file)
  1108.      FILE *file;
  1109. {
  1110.   struct bb_list *ptr = (struct bb_list *) permalloc (sizeof (struct bb_list));
  1111.  
  1112.   /* Add basic block to linked list.  */
  1113.   ptr->next = 0;
  1114.   ptr->line_num = last_linenum;
  1115.   ptr->file_label_num = bb_file_label_num;
  1116.   ptr->func_label_num = bb_func_label_num;
  1117.   *bb_tail = ptr;
  1118.   bb_tail = &ptr->next;
  1119.  
  1120.   /* Enable the table of basic-block use counts
  1121.      to point at the code it applies to.  */
  1122.   ASM_OUTPUT_INTERNAL_LABEL (file, "LPB", count_basic_blocks);
  1123.  
  1124.   /* Before first insn of this basic block, increment the
  1125.      count of times it was entered.  */
  1126. #ifdef BLOCK_PROFILER
  1127.   BLOCK_PROFILER (file, count_basic_blocks);
  1128.   CC_STATUS_INIT;
  1129. #endif
  1130.  
  1131.   new_block = 0;
  1132.   count_basic_blocks++;
  1133. }
  1134.  
  1135. /* Add a string to be used for basic block profiling.  */
  1136.  
  1137. static int
  1138. add_bb_string (string, perm_p)
  1139.      char *string;
  1140.      int perm_p;
  1141. {
  1142.   int len;
  1143.   struct bb_str *ptr = 0;
  1144.  
  1145.   if (!string)
  1146.     {
  1147.       string = "<unknown>";
  1148.       perm_p = TRUE;
  1149.     }
  1150.  
  1151.   /* Allocate a new string if the current string isn't permanent.  If
  1152.      the string is permanent search for the same string in other
  1153.      allocations.  */
  1154.  
  1155.   len = strlen (string) + 1;
  1156.   if (!perm_p)
  1157.     {
  1158.       char *p = (char *) permalloc (len);
  1159.       bcopy (string, p, len);
  1160.       string = p;
  1161.     }
  1162.   else
  1163.     for (ptr = sbb_head; ptr != (struct bb_str *)0; ptr = ptr->next)
  1164.       if (ptr->string == string)
  1165.     break;
  1166.  
  1167.   /* Allocate a new string block if we need to.  */
  1168.   if (!ptr)
  1169.     {
  1170.       ptr = (struct bb_str *) permalloc (sizeof (*ptr));
  1171.       ptr->next = 0;
  1172.       ptr->length = len;
  1173.       ptr->label_num = sbb_label_num++;
  1174.       ptr->string = string;
  1175.       *sbb_tail = ptr;
  1176.       sbb_tail = &ptr->next;
  1177.     }
  1178.  
  1179.   return ptr->label_num;
  1180. }
  1181.  
  1182.  
  1183. /* Output assembler code for some insns: all or part of a function.
  1184.    For description of args, see `final_start_function', above.
  1185.  
  1186.    PRESCAN is 1 if we are not really outputting,
  1187.      just scanning as if we were outputting.
  1188.    Prescanning deletes and rearranges insns just like ordinary output.
  1189.    PRESCAN is -2 if we are outputting after having prescanned.
  1190.    In this case, don't try to delete or rearrange insns
  1191.    because that has already been done.
  1192.    Prescanning is done only on certain machines.  */
  1193.  
  1194. void
  1195. final (first, file, optimize, prescan)
  1196.      rtx first;
  1197.      FILE *file;
  1198.      int optimize;
  1199.      int prescan;
  1200. {
  1201.   register rtx insn;
  1202.   int max_line = 0;
  1203.  
  1204.   last_ignored_compare = 0;
  1205.   new_block = 1;
  1206.  
  1207.   /* Make a map indicating which line numbers appear in this function.
  1208.      When producing SDB debugging info, delete troublesome line number
  1209.      notes from inlined functions in other files as well as duplicate
  1210.      line number notes.  */
  1211. #ifdef SDB_DEBUGGING_INFO
  1212.   if (write_symbols == SDB_DEBUG)
  1213.     {
  1214.       rtx last = 0;
  1215.       for (insn = first; insn; insn = NEXT_INSN (insn))
  1216.     if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
  1217.       {
  1218.         if ((RTX_INTEGRATED_P (insn)
  1219.          && strcmp (NOTE_SOURCE_FILE (insn), main_input_filename) != 0)
  1220.          || (last != 0
  1221.              && NOTE_LINE_NUMBER (insn) == NOTE_LINE_NUMBER (last)
  1222.              && NOTE_SOURCE_FILE (insn) == NOTE_SOURCE_FILE (last)))
  1223.           {
  1224.         NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
  1225.         NOTE_SOURCE_FILE (insn) = 0;
  1226.         continue;
  1227.           }
  1228.         last = insn;
  1229.         if (NOTE_LINE_NUMBER (insn) > max_line)
  1230.           max_line = NOTE_LINE_NUMBER (insn);
  1231.       }
  1232.     }
  1233.   else
  1234. #endif
  1235.     {
  1236.       for (insn = first; insn; insn = NEXT_INSN (insn))
  1237.     if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > max_line)
  1238.       max_line = NOTE_LINE_NUMBER (insn);
  1239.     }
  1240.  
  1241.   line_note_exists = (char *) oballoc (max_line + 1);
  1242.   bzero (line_note_exists, max_line + 1);
  1243.  
  1244.   for (insn = first; insn; insn = NEXT_INSN (insn))
  1245.     if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) > 0)
  1246.       line_note_exists[NOTE_LINE_NUMBER (insn)] = 1;
  1247.  
  1248.   init_recog ();
  1249.  
  1250.   CC_STATUS_INIT;
  1251.  
  1252.   /* Output the insns.  */
  1253.   for (insn = NEXT_INSN (first); insn;)
  1254.     insn = final_scan_insn (insn, file, optimize, prescan, 0);
  1255.  
  1256.   /* Do basic-block profiling here
  1257.      if the last insn was a conditional branch.  */
  1258.   if (profile_block_flag && new_block)
  1259.     add_bb (file);
  1260. }
  1261.  
  1262. /* The final scan for one insn, INSN.
  1263.    Args are same as in `final', except that INSN
  1264.    is the insn being scanned.
  1265.    Value returned is the next insn to be scanned.
  1266.  
  1267.    NOPEEPHOLES is the flag to disallow peephole processing (currently
  1268.    used for within delayed branch sequence output).  */
  1269.  
  1270. rtx
  1271. final_scan_insn (insn, file, optimize, prescan, nopeepholes)
  1272.      rtx insn;
  1273.      FILE *file;
  1274.      int optimize;
  1275.      int prescan;
  1276.      int nopeepholes;
  1277. {
  1278.   register int i;
  1279.   insn_counter++;
  1280.  
  1281.   /* Ignore deleted insns.  These can occur when we split insns (due to a
  1282.      template of "#") while not optimizing.  */
  1283.   if (INSN_DELETED_P (insn))
  1284.     return NEXT_INSN (insn);
  1285.  
  1286.   switch (GET_CODE (insn))
  1287.     {
  1288.     case NOTE:
  1289.       if (prescan > 0)
  1290.     break;
  1291.  
  1292.       /* Align the beginning of a loop, for higher speed
  1293.      on certain machines.  */
  1294.  
  1295.       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG && optimize > 0)
  1296.     {
  1297. #ifdef ASM_OUTPUT_LOOP_ALIGN
  1298.       rtx next = next_nonnote_insn (insn);
  1299.       if (next && GET_CODE (next) == CODE_LABEL)
  1300.         {
  1301.           ASM_OUTPUT_LOOP_ALIGN (asm_out_file);
  1302.         }
  1303. #endif
  1304.       break;
  1305.     }
  1306.       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
  1307.     break;
  1308.  
  1309.       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_PROLOGUE_END)
  1310.     {
  1311. #ifdef FUNCTION_END_PROLOGUE
  1312.       FUNCTION_END_PROLOGUE (file);
  1313. #endif
  1314.       profile_after_prologue (file);
  1315.       break;
  1316.     }
  1317.  
  1318. #ifdef FUNCTION_BEGIN_EPILOGUE
  1319.       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EPILOGUE_BEG)
  1320.     {
  1321.       FUNCTION_BEGIN_EPILOGUE (file);
  1322.       break;
  1323.     }
  1324. #endif
  1325.  
  1326.       if (write_symbols == NO_DEBUG)
  1327.     break;
  1328.       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_BEG)
  1329.     {
  1330. #if defined(SDB_DEBUGGING_INFO) && defined(MIPS_DEBUGGING_INFO)
  1331.       /* MIPS stabs require the parameter descriptions to be after the
  1332.          function entry point rather than before. */
  1333.       if (write_symbols == SDB_DEBUG)
  1334.         sdbout_begin_function (last_linenum);
  1335.       else
  1336. #endif
  1337. #ifdef DWARF_DEBUGGING_INFO
  1338.       /* This outputs a marker where the function body starts, so it
  1339.          must be after the prologue.  */
  1340.       if (write_symbols == DWARF_DEBUG)
  1341.         dwarfout_begin_function ();
  1342. #endif
  1343.       break;
  1344.     }
  1345.       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED)
  1346.     break;            /* An insn that was "deleted" */
  1347.       if (app_on)
  1348.     {
  1349.       fprintf (file, ASM_APP_OFF);
  1350.       app_on = 0;
  1351.     }
  1352.       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
  1353.       && (debug_info_level == DINFO_LEVEL_NORMAL
  1354.           || debug_info_level == DINFO_LEVEL_VERBOSE
  1355. #ifdef DWARF_DEBUGGING_INFO
  1356.           || write_symbols == DWARF_DEBUG
  1357. #endif
  1358.          )
  1359.      )
  1360.     {
  1361.       /* Beginning of a symbol-block.  Assign it a sequence number
  1362.          and push the number onto the stack PENDING_BLOCKS.  */
  1363.  
  1364.       if (block_depth == max_block_depth)
  1365.         {
  1366.           /* PENDING_BLOCKS is full; make it longer.  */
  1367.           max_block_depth *= 2;
  1368.           pending_blocks
  1369.         = (int *) xrealloc (pending_blocks,
  1370.                     max_block_depth * sizeof (int));
  1371.         }
  1372.       pending_blocks[block_depth++] = next_block_index;
  1373.  
  1374.       high_block_linenum = last_linenum;
  1375.  
  1376.       /* Output debugging info about the symbol-block beginning.  */
  1377.  
  1378. #ifdef SDB_DEBUGGING_INFO
  1379.       if (write_symbols == SDB_DEBUG)
  1380.         sdbout_begin_block (file, last_linenum, next_block_index);
  1381. #endif
  1382. #ifdef XCOFF_DEBUGGING_INFO
  1383.       if (write_symbols == XCOFF_DEBUG)
  1384.         xcoffout_begin_block (file, last_linenum, next_block_index);
  1385. #endif
  1386. #ifdef DBX_DEBUGGING_INFO
  1387.       if (write_symbols == DBX_DEBUG)
  1388.         ASM_OUTPUT_INTERNAL_LABEL (file, "LBB", next_block_index);
  1389. #endif
  1390. #ifdef DWARF_DEBUGGING_INFO
  1391.       if (write_symbols == DWARF_DEBUG && block_depth > 1)
  1392.         dwarfout_begin_block (next_block_index);
  1393. #endif
  1394.  
  1395.       next_block_index++;
  1396.     }
  1397.       else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END
  1398.            && (debug_info_level == DINFO_LEVEL_NORMAL
  1399.            || debug_info_level == DINFO_LEVEL_VERBOSE
  1400. #ifdef DWARF_DEBUGGING_INFO
  1401.                || write_symbols == DWARF_DEBUG
  1402. #endif
  1403.               )
  1404.           )
  1405.     {
  1406.       /* End of a symbol-block.  Pop its sequence number off
  1407.          PENDING_BLOCKS and output debugging info based on that.  */
  1408.  
  1409.       --block_depth;
  1410.  
  1411. #ifdef XCOFF_DEBUGGING_INFO
  1412.       if (write_symbols == XCOFF_DEBUG && block_depth >= 0)
  1413.         xcoffout_end_block (file, high_block_linenum,
  1414.                 pending_blocks[block_depth]);
  1415. #endif
  1416. #ifdef DBX_DEBUGGING_INFO
  1417.       if (write_symbols == DBX_DEBUG && block_depth >= 0)
  1418.         ASM_OUTPUT_INTERNAL_LABEL (file, "LBE",
  1419.                        pending_blocks[block_depth]);
  1420. #endif
  1421. #ifdef SDB_DEBUGGING_INFO
  1422.       if (write_symbols == SDB_DEBUG && block_depth >= 0)
  1423.         sdbout_end_block (file, high_block_linenum,
  1424.                   pending_blocks[block_depth]);
  1425. #endif
  1426. #ifdef DWARF_DEBUGGING_INFO
  1427.       if (write_symbols == DWARF_DEBUG && block_depth >= 1)
  1428.         dwarfout_end_block (pending_blocks[block_depth]);
  1429. #endif
  1430.     }
  1431.       else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED_LABEL
  1432.            && (debug_info_level == DINFO_LEVEL_NORMAL
  1433.            || debug_info_level == DINFO_LEVEL_VERBOSE))
  1434.     {
  1435. #ifdef DWARF_DEBUGGING_INFO
  1436.           if (write_symbols == DWARF_DEBUG)
  1437.             dwarfout_label (insn);
  1438. #endif
  1439.     }
  1440.       else if (NOTE_LINE_NUMBER (insn) > 0)
  1441.     /* This note is a line-number.  */
  1442.     {
  1443.       register rtx note;
  1444.  
  1445. #if 0 /* This is what we used to do.  */
  1446.       output_source_line (file, insn);
  1447. #endif
  1448.       int note_after = 0;
  1449.  
  1450.       /* If there is anything real after this note,
  1451.          output it.  If another line note follows, omit this one.  */
  1452.       for (note = NEXT_INSN (insn); note; note = NEXT_INSN (note))
  1453.         {
  1454.           if (GET_CODE (note) != NOTE && GET_CODE (note) != CODE_LABEL)
  1455.         break;
  1456.           /* These types of notes can be significant
  1457.          so make sure the preceding line number stays.  */
  1458.           else if (GET_CODE (note) == NOTE
  1459.                && (NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_BEG
  1460.                || NOTE_LINE_NUMBER (note) == NOTE_INSN_BLOCK_END
  1461.                || NOTE_LINE_NUMBER (note) == NOTE_INSN_FUNCTION_BEG))
  1462.           break;
  1463.           else if (GET_CODE (note) == NOTE && NOTE_LINE_NUMBER (note) > 0)
  1464.         {
  1465.           /* Another line note follows; we can delete this note
  1466.              if no intervening line numbers have notes elsewhere.  */
  1467.           int num;
  1468.           for (num = NOTE_LINE_NUMBER (insn) + 1;
  1469.                num < NOTE_LINE_NUMBER (note);
  1470.                num++)
  1471.             if (line_note_exists[num])
  1472.               break;
  1473.  
  1474.           if (num >= NOTE_LINE_NUMBER (note))
  1475.             note_after = 1;
  1476.           break;
  1477.         }
  1478.         }
  1479.  
  1480.       /* Output this line note
  1481.          if it is the first or the last line note in a row.  */
  1482.       if (!note_after)
  1483.         output_source_line (file, insn);
  1484.     }
  1485.       break;
  1486.  
  1487.     case BARRIER:
  1488. #ifdef ASM_OUTPUT_ALIGN_CODE
  1489.       /* Don't litter the assembler output with needless alignments.  A
  1490.      BARRIER will be placed at the end of every function if HAVE_epilogue
  1491.      is true.  */     
  1492.       if (NEXT_INSN (insn))
  1493.     ASM_OUTPUT_ALIGN_CODE (file);
  1494. #endif
  1495.       break;
  1496.  
  1497.     case CODE_LABEL:
  1498.       CC_STATUS_INIT;
  1499.       if (prescan > 0)
  1500.     break;
  1501.       new_block = 1;
  1502. #ifdef SDB_DEBUGGING_INFO
  1503.       if (write_symbols == SDB_DEBUG && LABEL_NAME (insn))
  1504.     sdbout_label (insn);
  1505. #endif
  1506. #ifdef DWARF_DEBUGGING_INFO
  1507.       if (write_symbols == DWARF_DEBUG && LABEL_NAME (insn))
  1508.     dwarfout_label (insn);
  1509. #endif
  1510.       if (app_on)
  1511.     {
  1512.       fprintf (file, ASM_APP_OFF);
  1513.       app_on = 0;
  1514.     }
  1515.       if (NEXT_INSN (insn) != 0
  1516.       && GET_CODE (NEXT_INSN (insn)) == JUMP_INSN)
  1517.     {
  1518.       rtx nextbody = PATTERN (NEXT_INSN (insn));
  1519.  
  1520.       /* If this label is followed by a jump-table,
  1521.          make sure we put the label in the read-only section.  Also
  1522.          possibly write the label and jump table together.  */
  1523.  
  1524.       if (GET_CODE (nextbody) == ADDR_VEC
  1525.           || GET_CODE (nextbody) == ADDR_DIFF_VEC)
  1526.         {
  1527. #ifndef JUMP_TABLES_IN_TEXT_SECTION
  1528.           readonly_data_section ();
  1529. #ifdef READONLY_DATA_SECTION
  1530.           ASM_OUTPUT_ALIGN (file,
  1531.                 exact_log2 (BIGGEST_ALIGNMENT
  1532.                         / BITS_PER_UNIT));
  1533. #endif /* READONLY_DATA_SECTION */
  1534. #else /* JUMP_TABLES_IN_TEXT_SECTION */
  1535.           function_section (current_function_decl);
  1536. #endif /* JUMP_TABLES_IN_TEXT_SECTION */
  1537. #ifdef ASM_OUTPUT_CASE_LABEL
  1538.           ASM_OUTPUT_CASE_LABEL (file, "L", CODE_LABEL_NUMBER (insn),
  1539.                      NEXT_INSN (insn));
  1540. #else
  1541.           ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
  1542. #endif
  1543.           break;
  1544.         }
  1545.     }
  1546.  
  1547.       ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
  1548. #ifdef NEXT_SEMANTICS
  1549.       if (XSTR (insn, 4) && (XSTR (insn, 4))[0] == '*')
  1550.     assemble_label (XSTR (insn, 4));
  1551. #endif
  1552.       break;
  1553.  
  1554.     default:
  1555.       {
  1556.     register rtx body = PATTERN (insn);
  1557.     int insn_code_number;
  1558.     char *template;
  1559.     rtx note;
  1560.  
  1561.     /* An INSN, JUMP_INSN or CALL_INSN.
  1562.        First check for special kinds that recog doesn't recognize.  */
  1563.  
  1564.     if (GET_CODE (body) == USE /* These are just declarations */
  1565.         || GET_CODE (body) == CLOBBER)
  1566.       break;
  1567.  
  1568. #ifdef HAVE_cc0
  1569.     /* If there is a REG_CC_SETTER note on this insn, it means that
  1570.        the setting of the condition code was done in the delay slot
  1571.        of the insn that branched here.  So recover the cc status
  1572.        from the insn that set it.  */
  1573.  
  1574.     note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
  1575.     if (note)
  1576.       {
  1577.         NOTICE_UPDATE_CC (PATTERN (XEXP (note, 0)), XEXP (note, 0));
  1578.         cc_prev_status = cc_status;
  1579.       }
  1580. #endif
  1581.  
  1582.     /* Detect insns that are really jump-tables
  1583.        and output them as such.  */
  1584.  
  1585.     if (GET_CODE (body) == ADDR_VEC || GET_CODE (body) == ADDR_DIFF_VEC)
  1586.       {
  1587.         register int vlen, idx;
  1588.  
  1589.         if (prescan > 0)
  1590.           break;
  1591.  
  1592.         if (app_on)
  1593.           {
  1594.         fprintf (file, ASM_APP_OFF);
  1595.         app_on = 0;
  1596.           }
  1597.  
  1598.         vlen = XVECLEN (body, GET_CODE (body) == ADDR_DIFF_VEC);
  1599.         for (idx = 0; idx < vlen; idx++)
  1600.           {
  1601.         if (GET_CODE (body) == ADDR_VEC)
  1602.           {
  1603. #ifdef ASM_OUTPUT_ADDR_VEC_ELT
  1604.             ASM_OUTPUT_ADDR_VEC_ELT
  1605.               (file, CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 0, idx), 0)));
  1606. #else
  1607.             abort ();
  1608. #endif
  1609.           }
  1610.         else
  1611.           {
  1612. #ifdef ASM_OUTPUT_ADDR_DIFF_ELT
  1613.             ASM_OUTPUT_ADDR_DIFF_ELT
  1614.               (file,
  1615.                CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 1, idx), 0)),
  1616.                CODE_LABEL_NUMBER (XEXP (XEXP (body, 0), 0)));
  1617. #else
  1618.             abort ();
  1619. #endif
  1620.           }
  1621.           }
  1622. #ifdef ASM_OUTPUT_CASE_END
  1623.         ASM_OUTPUT_CASE_END (file,
  1624.                  CODE_LABEL_NUMBER (PREV_INSN (insn)),
  1625.                  insn);
  1626. #endif
  1627.  
  1628.         function_section (current_function_decl);
  1629.  
  1630.         break;
  1631.       }
  1632.  
  1633.     /* Do basic-block profiling when we reach a new block.
  1634.        Done here to avoid jump tables.  */
  1635.     if (profile_block_flag && new_block)
  1636.       add_bb (file);
  1637.  
  1638.     if (GET_CODE (body) == ASM_INPUT)
  1639.       {
  1640.         /* There's no telling what that did to the condition codes.  */
  1641.         CC_STATUS_INIT;
  1642.         if (prescan > 0)
  1643.           break;
  1644.         if (! app_on)
  1645.           {
  1646.         fprintf (file, ASM_APP_ON);
  1647.         app_on = 1;
  1648.           }
  1649.         fprintf (asm_out_file, "\t%s\n", XSTR (body, 0));
  1650.         break;
  1651.       }
  1652.  
  1653.     /* Detect `asm' construct with operands.  */
  1654.     if (asm_noperands (body) >= 0)
  1655.       {
  1656.         int noperands = asm_noperands (body);
  1657.         rtx *ops = (rtx *) alloca (noperands * sizeof (rtx));
  1658.         char *string;
  1659.  
  1660.         /* There's no telling what that did to the condition codes.  */
  1661.         CC_STATUS_INIT;
  1662.         if (prescan > 0)
  1663.           break;
  1664.  
  1665.         if (! app_on)
  1666.           {
  1667.         fprintf (file, ASM_APP_ON);
  1668.         app_on = 1;
  1669.           }
  1670.  
  1671.         /* Get out the operand values.  */
  1672.         string = decode_asm_operands (body, ops, NULL_PTR,
  1673.                       NULL_PTR, NULL_PTR);
  1674.         /* Inhibit aborts on what would otherwise be compiler bugs.  */
  1675.         insn_noperands = noperands;
  1676.         this_is_asm_operands = insn;
  1677.  
  1678.         /* Output the insn using them.  */
  1679.         output_asm_insn (string, ops);
  1680.         this_is_asm_operands = 0;
  1681.         break;
  1682.       }
  1683.  
  1684.     if (prescan <= 0 && app_on)
  1685.       {
  1686.         fprintf (file, ASM_APP_OFF);
  1687.         app_on = 0;
  1688.       }
  1689.  
  1690.     if (GET_CODE (body) == SEQUENCE)
  1691.       {
  1692.         /* A delayed-branch sequence */
  1693.         register int i;
  1694.         rtx next;
  1695.  
  1696.         if (prescan > 0)
  1697.           break;
  1698.         final_sequence = body;
  1699.  
  1700.         /* The first insn in this SEQUENCE might be a JUMP_INSN that will
  1701.            force the restoration of a comparison that was previously
  1702.            thought unnecessary.  If that happens, cancel this sequence
  1703.            and cause that insn to be restored.  */
  1704.  
  1705.         next = final_scan_insn (XVECEXP (body, 0, 0), file, 0, prescan, 1);
  1706.         if (next != XVECEXP (body, 0, 1))
  1707.           {
  1708.         final_sequence = 0;
  1709.         return next;
  1710.           }
  1711.  
  1712.         for (i = 1; i < XVECLEN (body, 0); i++)
  1713.           {
  1714.         rtx insn = XVECEXP (body, 0, i);
  1715.         rtx next = NEXT_INSN (insn);
  1716.         /* We loop in case any instruction in a delay slot gets
  1717.            split.  */
  1718.         do
  1719.           insn = final_scan_insn (insn, file, 0, prescan, 1);
  1720.         while (insn != next);
  1721.           }
  1722. #ifdef DBR_OUTPUT_SEQEND
  1723.         DBR_OUTPUT_SEQEND (file);
  1724. #endif
  1725.         final_sequence = 0;
  1726.  
  1727.         /* If the insn requiring the delay slot was a CALL_INSN, the
  1728.            insns in the delay slot are actually executed before the
  1729.            called function.  Hence we don't preserve any CC-setting
  1730.            actions in these insns and the CC must be marked as being
  1731.            clobbered by the function.  */
  1732.         if (GET_CODE (XVECEXP (body, 0, 0)) == CALL_INSN)
  1733.           CC_STATUS_INIT;
  1734.  
  1735.         /* Following a conditional branch sequence, we have a new basic
  1736.            block.  */
  1737.         if (profile_block_flag)
  1738.           {
  1739.         rtx insn = XVECEXP (body, 0, 0);
  1740.         rtx body = PATTERN (insn);
  1741.  
  1742.         if ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
  1743.              && GET_CODE (SET_SRC (body)) != LABEL_REF)
  1744.             || (GET_CODE (insn) == JUMP_INSN
  1745.             && GET_CODE (body) == PARALLEL
  1746.             && GET_CODE (XVECEXP (body, 0, 0)) == SET
  1747.             && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF))
  1748.           new_block = 1;
  1749.           }
  1750.         break;
  1751.       }
  1752.  
  1753.     /* We have a real machine instruction as rtl.  */
  1754.  
  1755.     body = PATTERN (insn);
  1756.  
  1757. #ifdef HAVE_cc0
  1758.     /* Check for redundant test and compare instructions
  1759.        (when the condition codes are already set up as desired).
  1760.        This is done only when optimizing; if not optimizing,
  1761.        it should be possible for the user to alter a variable
  1762.        with the debugger in between statements
  1763.        and the next statement should reexamine the variable
  1764.        to compute the condition codes.  */
  1765.  
  1766.     if (optimize
  1767.         && GET_CODE (body) == SET
  1768.         && GET_CODE (SET_DEST (body)) == CC0
  1769.         && insn != last_ignored_compare)
  1770.       {
  1771.         if (GET_CODE (SET_SRC (body)) == SUBREG)
  1772.           SET_SRC (body) = alter_subreg (SET_SRC (body));
  1773.         else if (GET_CODE (SET_SRC (body)) == COMPARE)
  1774.           {
  1775.         if (GET_CODE (XEXP (SET_SRC (body), 0)) == SUBREG)
  1776.           XEXP (SET_SRC (body), 0)
  1777.             = alter_subreg (XEXP (SET_SRC (body), 0));
  1778.         if (GET_CODE (XEXP (SET_SRC (body), 1)) == SUBREG)
  1779.           XEXP (SET_SRC (body), 1)
  1780.             = alter_subreg (XEXP (SET_SRC (body), 1));
  1781.           }
  1782.         if ((cc_status.value1 != 0
  1783.          && rtx_equal_p (SET_SRC (body), cc_status.value1))
  1784.         || (cc_status.value2 != 0
  1785.             && rtx_equal_p (SET_SRC (body), cc_status.value2)))
  1786.           {
  1787.         /* Don't delete insn if it has an addressing side-effect.  */
  1788.         if (! FIND_REG_INC_NOTE (insn, 0)
  1789.             /* or if anything in it is volatile.  */
  1790.             && ! volatile_refs_p (PATTERN (insn)))
  1791.           {
  1792.             /* We don't really delete the insn; just ignore it.  */
  1793.             last_ignored_compare = insn;
  1794.             break;
  1795.           }
  1796.           }
  1797.       }
  1798. #endif
  1799.  
  1800.     /* Following a conditional branch, we have a new basic block.
  1801.        But if we are inside a sequence, the new block starts after the
  1802.        last insn of the sequence.  */
  1803.     if (profile_block_flag && final_sequence == 0
  1804.         && ((GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
  1805.          && GET_CODE (SET_SRC (body)) != LABEL_REF)
  1806.         || (GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == PARALLEL
  1807.             && GET_CODE (XVECEXP (body, 0, 0)) == SET
  1808.             && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) != LABEL_REF)))
  1809.       new_block = 1;
  1810.  
  1811. #ifndef STACK_REGS
  1812.     /* Don't bother outputting obvious no-ops, even without -O.
  1813.        This optimization is fast and doesn't interfere with debugging.
  1814.        Don't do this if the insn is in a delay slot, since this
  1815.        will cause an improper number of delay insns to be written.  */
  1816.     if (final_sequence == 0
  1817.         && prescan >= 0
  1818.         && GET_CODE (insn) == INSN && GET_CODE (body) == SET
  1819.         && GET_CODE (SET_SRC (body)) == REG
  1820.         && GET_CODE (SET_DEST (body)) == REG
  1821.         && REGNO (SET_SRC (body)) == REGNO (SET_DEST (body)))
  1822.       break;
  1823. #endif
  1824.  
  1825. #ifdef HAVE_cc0
  1826.     /* If this is a conditional branch, maybe modify it
  1827.        if the cc's are in a nonstandard state
  1828.        so that it accomplishes the same thing that it would
  1829.        do straightforwardly if the cc's were set up normally.  */
  1830.  
  1831.     if (cc_status.flags != 0
  1832.         && GET_CODE (insn) == JUMP_INSN
  1833.         && GET_CODE (body) == SET
  1834.         && SET_DEST (body) == pc_rtx
  1835.         && GET_CODE (SET_SRC (body)) == IF_THEN_ELSE
  1836.         && GET_RTX_CLASS (GET_CODE (XEXP (SET_SRC (body), 0))) == '<'
  1837.         && XEXP (XEXP (SET_SRC (body), 0), 0) == cc0_rtx
  1838.         /* This is done during prescan; it is not done again
  1839.            in final scan when prescan has been done.  */
  1840.         && prescan >= 0)
  1841.       {
  1842.         /* This function may alter the contents of its argument
  1843.            and clear some of the cc_status.flags bits.
  1844.            It may also return 1 meaning condition now always true
  1845.            or -1 meaning condition now always false
  1846.            or 2 meaning condition nontrivial but altered.  */
  1847.         register int result = alter_cond (XEXP (SET_SRC (body), 0));
  1848.         /* If condition now has fixed value, replace the IF_THEN_ELSE
  1849.            with its then-operand or its else-operand.  */
  1850.         if (result == 1)
  1851.           SET_SRC (body) = XEXP (SET_SRC (body), 1);
  1852.         if (result == -1)
  1853.           SET_SRC (body) = XEXP (SET_SRC (body), 2);
  1854.  
  1855.         /* The jump is now either unconditional or a no-op.
  1856.            If it has become a no-op, don't try to output it.
  1857.            (It would not be recognized.)  */
  1858.         if (SET_SRC (body) == pc_rtx)
  1859.           {
  1860.         PUT_CODE (insn, NOTE);
  1861.         NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
  1862.         NOTE_SOURCE_FILE (insn) = 0;
  1863.         break;
  1864.           }
  1865.         else if (GET_CODE (SET_SRC (body)) == RETURN)
  1866.           /* Replace (set (pc) (return)) with (return).  */
  1867.           PATTERN (insn) = body = SET_SRC (body);
  1868.  
  1869.         /* Rerecognize the instruction if it has changed.  */
  1870.         if (result != 0)
  1871.           INSN_CODE (insn) = -1;
  1872.       }
  1873.  
  1874.     /* Make same adjustments to instructions that examine the
  1875.        condition codes without jumping (if this machine has them).  */
  1876.  
  1877.     if (cc_status.flags != 0
  1878.         && GET_CODE (body) == SET)
  1879.       {
  1880.         switch (GET_CODE (SET_SRC (body)))
  1881.           {
  1882.           case GTU:
  1883.           case GT:
  1884.           case LTU:
  1885.           case LT:
  1886.           case GEU:
  1887.           case GE:
  1888.           case LEU:
  1889.           case LE:
  1890.           case EQ:
  1891.           case NE:
  1892.         {
  1893.           register int result;
  1894.           if (XEXP (SET_SRC (body), 0) != cc0_rtx)
  1895.             break;
  1896.           result = alter_cond (SET_SRC (body));
  1897.           if (result == 1)
  1898.             validate_change (insn, &SET_SRC (body), const_true_rtx, 0);
  1899.           else if (result == -1)
  1900.             validate_change (insn, &SET_SRC (body), const0_rtx, 0);
  1901.           else if (result == 2)
  1902.             INSN_CODE (insn) = -1;
  1903.         }
  1904.           }
  1905.       }
  1906. #endif
  1907.  
  1908.     /* Do machine-specific peephole optimizations if desired.  */
  1909.  
  1910.     if (optimize && !flag_no_peephole && !nopeepholes)
  1911.       {
  1912.         rtx next = peephole (insn);
  1913.         /* When peepholing, if there were notes within the peephole,
  1914.            emit them before the peephole.  */
  1915.         if (next != 0 && next != NEXT_INSN (insn))
  1916.           {
  1917.         rtx prev = PREV_INSN (insn);
  1918.         rtx note;
  1919.  
  1920.         for (note = NEXT_INSN (insn); note != next;
  1921.              note = NEXT_INSN (note))
  1922.           final_scan_insn (note, file, optimize, prescan, nopeepholes);
  1923.  
  1924.         /* In case this is prescan, put the notes
  1925.            in proper position for later rescan.  */
  1926.         note = NEXT_INSN (insn);
  1927.         PREV_INSN (note) = prev;
  1928.         NEXT_INSN (prev) = note;
  1929.         NEXT_INSN (PREV_INSN (next)) = insn;
  1930.         PREV_INSN (insn) = PREV_INSN (next);
  1931.         NEXT_INSN (insn) = next;
  1932.         PREV_INSN (next) = insn;
  1933.           }
  1934.  
  1935.         /* PEEPHOLE might have changed this.  */
  1936.         body = PATTERN (insn);
  1937.       }
  1938.  
  1939.     /* Try to recognize the instruction.
  1940.        If successful, verify that the operands satisfy the
  1941.        constraints for the instruction.  Crash if they don't,
  1942.        since `reload' should have changed them so that they do.  */
  1943.  
  1944.     insn_code_number = recog_memoized (insn);
  1945.     insn_extract (insn);
  1946.     for (i = 0; i < insn_n_operands[insn_code_number]; i++)
  1947.       {
  1948.         if (GET_CODE (recog_operand[i]) == SUBREG)
  1949.           recog_operand[i] = alter_subreg (recog_operand[i]);
  1950.         else if (GET_CODE (recog_operand[i]) == PLUS
  1951.              || GET_CODE (recog_operand[i]) == MULT)
  1952.           recog_operand[i] = walk_alter_subreg (recog_operand[i]);
  1953.       }
  1954.  
  1955.     for (i = 0; i < insn_n_dups[insn_code_number]; i++)
  1956.       {
  1957.         if (GET_CODE (*recog_dup_loc[i]) == SUBREG)
  1958.           *recog_dup_loc[i] = alter_subreg (*recog_dup_loc[i]);
  1959.         else if (GET_CODE (*recog_dup_loc[i]) == PLUS
  1960.              || GET_CODE (*recog_dup_loc[i]) == MULT)
  1961.           *recog_dup_loc[i] = walk_alter_subreg (*recog_dup_loc[i]);
  1962.       }
  1963.  
  1964. #ifdef REGISTER_CONSTRAINTS
  1965.     if (! constrain_operands (insn_code_number, 1))
  1966.       fatal_insn_not_found (insn);
  1967. #endif
  1968.  
  1969.     /* Some target machines need to prescan each insn before
  1970.        it is output.  */
  1971.  
  1972. #ifdef FINAL_PRESCAN_INSN
  1973.     FINAL_PRESCAN_INSN (insn, recog_operand,
  1974.                 insn_n_operands[insn_code_number]);
  1975. #endif
  1976.  
  1977. #ifdef HAVE_cc0
  1978.     cc_prev_status = cc_status;
  1979.  
  1980.     /* Update `cc_status' for this instruction.
  1981.        The instruction's output routine may change it further.
  1982.        If the output routine for a jump insn needs to depend
  1983.        on the cc status, it should look at cc_prev_status.  */
  1984.  
  1985.     NOTICE_UPDATE_CC (body, insn);
  1986. #endif
  1987.  
  1988.     debug_insn = insn;
  1989.  
  1990.     /* If the proper template needs to be chosen by some C code,
  1991.        run that code and get the real template.  */
  1992.  
  1993.     template = insn_template[insn_code_number];
  1994.     if (template == 0)
  1995.       {
  1996.         template = (*insn_outfun[insn_code_number]) (recog_operand, insn);
  1997.  
  1998.         /* If the C code returns 0, it means that it is a jump insn
  1999.            which follows a deleted test insn, and that test insn
  2000.            needs to be reinserted.  */
  2001.         if (template == 0)
  2002.           {
  2003.         if (prev_nonnote_insn (insn) != last_ignored_compare)
  2004.           abort ();
  2005.         new_block = 0;
  2006.         return prev_nonnote_insn (insn);
  2007.           }
  2008.       }
  2009.  
  2010.     /* If the template is the string "#", it means that this insn must
  2011.        be split.  */
  2012.     if (template[0] == '#' && template[1] == '\0')
  2013.       {
  2014.         rtx new = try_split (body, insn, 0);
  2015.  
  2016.         /* If we didn't split the insn, go away.  */
  2017.         if (new == insn && PATTERN (new) == body)
  2018.           abort ();
  2019.           
  2020.         new_block = 0;
  2021.         return new;
  2022.       }
  2023.     
  2024.     if (prescan > 0)
  2025.       break;
  2026.  
  2027.     /* Output assembler code from the template.  */
  2028.  
  2029.     output_asm_insn (template, recog_operand);
  2030.  
  2031. #if 0
  2032.     /* It's not at all clear why we did this and doing so interferes
  2033.        with tests we'd like to do to use REG_WAS_0 notes, so let's try
  2034.        with this out.  */
  2035.  
  2036.     /* Mark this insn as having been output.  */
  2037.     INSN_DELETED_P (insn) = 1;
  2038. #endif
  2039.  
  2040.     debug_insn = 0;
  2041.       }
  2042.     }
  2043.   return NEXT_INSN (insn);
  2044. }
  2045.  
  2046. /* Output debugging info to the assembler file FILE
  2047.    based on the NOTE-insn INSN, assumed to be a line number.  */
  2048.  
  2049. static void
  2050. output_source_line (file, insn)
  2051.      FILE *file;
  2052.      rtx insn;
  2053. {
  2054.   register char *filename = NOTE_SOURCE_FILE (insn);
  2055.  
  2056.   /* Remember filename for basic block profiling.
  2057.      Filenames are allocated on the permanent obstack
  2058.      or are passed in ARGV, so we don't have to save
  2059.      the string.  */
  2060.  
  2061.   if (profile_block_flag && last_filename != filename)
  2062.     bb_file_label_num = add_bb_string (filename, TRUE);
  2063.  
  2064.   last_filename = filename;
  2065.   last_linenum = NOTE_LINE_NUMBER (insn);
  2066.   high_block_linenum = MAX (last_linenum, high_block_linenum);
  2067.   high_function_linenum = MAX (last_linenum, high_function_linenum);
  2068.  
  2069.   if (write_symbols != NO_DEBUG)
  2070.     {
  2071. #ifdef SDB_DEBUGGING_INFO
  2072.       if (write_symbols == SDB_DEBUG
  2073. #if 0 /* People like having line numbers even in wrong file!  */
  2074.       /* COFF can't handle multiple source files--lose, lose.  */
  2075.       && !strcmp (filename, main_input_filename)
  2076. #endif
  2077.       /* COFF relative line numbers must be positive.  */
  2078.       && last_linenum > sdb_begin_function_line)
  2079.     {
  2080. #ifdef ASM_OUTPUT_SOURCE_LINE
  2081.       ASM_OUTPUT_SOURCE_LINE (file, last_linenum);
  2082. #else
  2083.       fprintf (file, "\t.ln\t%d\n",
  2084.            ((sdb_begin_function_line > -1)
  2085.             ? last_linenum - sdb_begin_function_line : 1));
  2086. #endif
  2087.     }
  2088. #endif
  2089.  
  2090. #if defined (DBX_DEBUGGING_INFO)
  2091.       if (write_symbols == DBX_DEBUG)
  2092.     dbxout_source_line (file, filename, NOTE_LINE_NUMBER (insn));
  2093. #endif
  2094.  
  2095. #if defined (XCOFF_DEBUGGING_INFO)
  2096.       if (write_symbols == XCOFF_DEBUG)
  2097.     xcoffout_source_line (file, filename, insn);
  2098. #endif
  2099.  
  2100. #ifdef DWARF_DEBUGGING_INFO
  2101.       if (write_symbols == DWARF_DEBUG)
  2102.     dwarfout_line (filename, NOTE_LINE_NUMBER (insn));
  2103. #endif
  2104.     }
  2105. }
  2106.  
  2107. /* If X is a SUBREG, replace it with a REG or a MEM,
  2108.    based on the thing it is a subreg of.  */
  2109.  
  2110. rtx
  2111. alter_subreg (x)
  2112.      register rtx x;
  2113. {
  2114.   register rtx y = SUBREG_REG (x);
  2115.   if (GET_CODE (y) == SUBREG)
  2116.     y = alter_subreg (y);
  2117.  
  2118.   if (GET_CODE (y) == REG)
  2119.     {
  2120.       /* If the containing reg really gets a hard reg, so do we.  */
  2121.       PUT_CODE (x, REG);
  2122.       REGNO (x) = REGNO (y) + SUBREG_WORD (x);
  2123.     }
  2124.   else if (GET_CODE (y) == MEM)
  2125.     {
  2126.       register int offset = SUBREG_WORD (x) * UNITS_PER_WORD;
  2127.       if (BYTES_BIG_ENDIAN)
  2128.     offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x)))
  2129.            - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (y))));
  2130.       PUT_CODE (x, MEM);
  2131.       MEM_VOLATILE_P (x) = MEM_VOLATILE_P (y);
  2132.       XEXP (x, 0) = plus_constant (XEXP (y, 0), offset);
  2133.     }
  2134.  
  2135.   return x;
  2136. }
  2137.  
  2138. /* Do alter_subreg on all the SUBREGs contained in X.  */
  2139.  
  2140. static rtx
  2141. walk_alter_subreg (x)
  2142.      rtx x;
  2143. {
  2144.   switch (GET_CODE (x))
  2145.     {
  2146.     case PLUS:
  2147.     case MULT:
  2148.       XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
  2149.       XEXP (x, 1) = walk_alter_subreg (XEXP (x, 1));
  2150.       break;
  2151.  
  2152.     case MEM:
  2153.       XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
  2154.       break;
  2155.  
  2156.     case SUBREG:
  2157.       return alter_subreg (x);
  2158.     }
  2159.  
  2160.   return x;
  2161. }
  2162.  
  2163. #ifdef HAVE_cc0
  2164.  
  2165. /* Given BODY, the body of a jump instruction, alter the jump condition
  2166.    as required by the bits that are set in cc_status.flags.
  2167.    Not all of the bits there can be handled at this level in all cases.
  2168.  
  2169.    The value is normally 0.
  2170.    1 means that the condition has become always true.
  2171.    -1 means that the condition has become always false.
  2172.    2 means that COND has been altered.  */
  2173.  
  2174. static int
  2175. alter_cond (cond)
  2176.      register rtx cond;
  2177. {
  2178.   int value = 0;
  2179.  
  2180.   if (cc_status.flags & CC_REVERSED)
  2181.     {
  2182.       value = 2;
  2183.       PUT_CODE (cond, swap_condition (GET_CODE (cond)));
  2184.     }
  2185.  
  2186.   if (cc_status.flags & CC_INVERTED)
  2187.     {
  2188.       value = 2;
  2189.       PUT_CODE (cond, reverse_condition (GET_CODE (cond)));
  2190.     }
  2191.  
  2192.   if (cc_status.flags & CC_NOT_POSITIVE)
  2193.     switch (GET_CODE (cond))
  2194.       {
  2195.       case LE:
  2196.       case LEU:
  2197.       case GEU:
  2198.     /* Jump becomes unconditional.  */
  2199.     return 1;
  2200.  
  2201.       case GT:
  2202.       case GTU:
  2203.       case LTU:
  2204.     /* Jump becomes no-op.  */
  2205.     return -1;
  2206.  
  2207.       case GE:
  2208.     PUT_CODE (cond, EQ);
  2209.     value = 2;
  2210.     break;
  2211.  
  2212.       case LT:
  2213.     PUT_CODE (cond, NE);
  2214.     value = 2;
  2215.     break;
  2216.       }
  2217.  
  2218.   if (cc_status.flags & CC_NOT_NEGATIVE)
  2219.     switch (GET_CODE (cond))
  2220.       {
  2221.       case GE:
  2222.       case GEU:
  2223.     /* Jump becomes unconditional.  */
  2224.     return 1;
  2225.  
  2226.       case LT:
  2227.       case LTU:
  2228.     /* Jump becomes no-op.  */
  2229.     return -1;
  2230.  
  2231.       case LE:
  2232.       case LEU:
  2233.     PUT_CODE (cond, EQ);
  2234.     value = 2;
  2235.     break;
  2236.  
  2237.       case GT:
  2238.       case GTU:
  2239.     PUT_CODE (cond, NE);
  2240.     value = 2;
  2241.     break;
  2242.       }
  2243.  
  2244.   if (cc_status.flags & CC_NO_OVERFLOW)
  2245.     switch (GET_CODE (cond))
  2246.       {
  2247.       case GEU:
  2248.     /* Jump becomes unconditional.  */
  2249.     return 1;
  2250.  
  2251.       case LEU:
  2252.     PUT_CODE (cond, EQ);
  2253.     value = 2;
  2254.     break;
  2255.  
  2256.       case GTU:
  2257.     PUT_CODE (cond, NE);
  2258.     value = 2;
  2259.     break;
  2260.  
  2261.       case LTU:
  2262.     /* Jump becomes no-op.  */
  2263.     return -1;
  2264.       }
  2265.  
  2266.   if (cc_status.flags & (CC_Z_IN_NOT_N | CC_Z_IN_N))
  2267.     switch (GET_CODE (cond))
  2268.       {
  2269.       case LE:
  2270.       case LEU:
  2271.       case GE:
  2272.       case GEU:
  2273.       case LT:
  2274.       case LTU:
  2275.       case GT:
  2276.       case GTU:
  2277.     abort ();
  2278.  
  2279.       case NE:
  2280.     PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? GE : LT);
  2281.     value = 2;
  2282.     break;
  2283.  
  2284.       case EQ:
  2285.     PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? LT : GE);
  2286.     value = 2;
  2287.     break;
  2288.       }
  2289.  
  2290.   if (cc_status.flags & CC_NOT_SIGNED)
  2291.     /* The flags are valid if signed condition operators are converted
  2292.        to unsigned.  */
  2293.     switch (GET_CODE (cond))
  2294.       {
  2295.       case LE:
  2296.     PUT_CODE (cond, LEU);
  2297.     value = 2;
  2298.     break;
  2299.  
  2300.       case LT:
  2301.     PUT_CODE (cond, LTU);
  2302.     value = 2;
  2303.     break;
  2304.  
  2305.       case GT:
  2306.     PUT_CODE (cond, GTU);
  2307.     value = 2;
  2308.     break;
  2309.  
  2310.       case GE:
  2311.     PUT_CODE (cond, GEU);
  2312.     value = 2;
  2313.     break;
  2314.       }
  2315.  
  2316.   return value;
  2317. }
  2318. #endif
  2319.  
  2320. /* Report inconsistency between the assembler template and the operands.
  2321.    In an `asm', it's the user's fault; otherwise, the compiler's fault.  */
  2322.  
  2323. void
  2324. output_operand_lossage (str)
  2325.      char *str;
  2326. {
  2327.   if (this_is_asm_operands)
  2328.     error_for_asm (this_is_asm_operands, "invalid `asm': %s", str);
  2329.   else
  2330.     abort ();
  2331. }
  2332.  
  2333. /* Output of assembler code from a template, and its subroutines.  */
  2334.  
  2335. /* Output text from TEMPLATE to the assembler output file,
  2336.    obeying %-directions to substitute operands taken from
  2337.    the vector OPERANDS.
  2338.  
  2339.    %N (for N a digit) means print operand N in usual manner.
  2340.    %lN means require operand N to be a CODE_LABEL or LABEL_REF
  2341.       and print the label name with no punctuation.
  2342.    %cN means require operand N to be a constant
  2343.       and print the constant expression with no punctuation.
  2344.    %aN means expect operand N to be a memory address
  2345.       (not a memory reference!) and print a reference
  2346.       to that address.
  2347.    %nN means expect operand N to be a constant
  2348.       and print a constant expression for minus the value
  2349.       of the operand, with no other punctuation.  */
  2350.  
  2351. static void
  2352. output_asm_name ()
  2353. {
  2354.   if (flag_print_asm_name)
  2355.     {
  2356.       /* Annotate the assembly with a comment describing the pattern and
  2357.      alternative used.  */
  2358.       if (debug_insn)
  2359.     {
  2360.       register int num = INSN_CODE (debug_insn);
  2361.       fprintf (asm_out_file, " %s %d %s", 
  2362.            ASM_COMMENT_START, INSN_UID (debug_insn), insn_name[num]);
  2363.       if (insn_n_alternatives[num] > 1)
  2364.         fprintf (asm_out_file, "/%d", which_alternative + 1);
  2365.  
  2366.       /* Clear this so only the first assembler insn
  2367.          of any rtl insn will get the special comment for -dp.  */
  2368.       debug_insn = 0;
  2369.     }
  2370.     }
  2371. }
  2372.  
  2373. void
  2374. output_asm_insn (template, operands)
  2375.      char *template;
  2376.      rtx *operands;
  2377. {
  2378.   register char *p;
  2379.   register int c, i;
  2380.  
  2381.   /* An insn may return a null string template
  2382.      in a case where no assembler code is needed.  */
  2383.   if (*template == 0)
  2384.     return;
  2385.  
  2386.   p = template;
  2387.   putc ('\t', asm_out_file);
  2388.  
  2389. #ifdef ASM_OUTPUT_OPCODE
  2390.   ASM_OUTPUT_OPCODE (asm_out_file, p);
  2391. #endif
  2392.  
  2393.   while (c = *p++)
  2394.     switch (c)
  2395.       {
  2396.       case '\n':
  2397.     output_asm_name ();
  2398.     putc (c, asm_out_file);
  2399. #ifdef ASM_OUTPUT_OPCODE
  2400.     while ((c = *p) == '\t')
  2401.       {
  2402.         putc (c, asm_out_file);
  2403.         p++;
  2404.       }
  2405.     ASM_OUTPUT_OPCODE (asm_out_file, p);
  2406. #endif
  2407.     break;
  2408.  
  2409. #ifdef ASSEMBLER_DIALECT
  2410.       case '{':
  2411.     /* If we want the first dialect, do nothing.  Otherwise, skip
  2412.        DIALECT_NUMBER of strings ending with '|'.  */
  2413.     for (i = 0; i < dialect_number; i++)
  2414.       {
  2415.         while (*p && *p++ != '|')
  2416.           ;
  2417.  
  2418.         if (*p == '|')
  2419.           p++;
  2420.       }
  2421.     break;
  2422.  
  2423.       case '|':
  2424.     /* Skip to close brace.  */
  2425.     while (*p && *p++ != '}')
  2426.       ;
  2427.     break;
  2428.  
  2429.       case '}':
  2430.     break;
  2431. #endif
  2432.  
  2433.       case '%':
  2434.     /* %% outputs a single %.  */
  2435.     if (*p == '%')
  2436.       {
  2437.         p++;
  2438.         putc (c, asm_out_file);
  2439.       }
  2440.     /* %= outputs a number which is unique to each insn in the entire
  2441.        compilation.  This is useful for making local labels that are
  2442.        referred to more than once in a given insn.  */
  2443.     else if (*p == '=')
  2444.       {
  2445.         p++;
  2446.         fprintf (asm_out_file, "%d", insn_counter);
  2447.       }
  2448.     /* % followed by a letter and some digits
  2449.        outputs an operand in a special way depending on the letter.
  2450.        Letters `acln' are implemented directly.
  2451.        Other letters are passed to `output_operand' so that
  2452.        the PRINT_OPERAND macro can define them.  */
  2453.     else if ((*p >= 'a' && *p <= 'z')
  2454.          || (*p >= 'A' && *p <= 'Z'))
  2455.       {
  2456.         int letter = *p++;
  2457.         c = atoi (p);
  2458.  
  2459.         if (! (*p >= '0' && *p <= '9'))
  2460.           output_operand_lossage ("operand number missing after %-letter");
  2461.         else if (this_is_asm_operands && c >= (unsigned) insn_noperands)
  2462.           output_operand_lossage ("operand number out of range");
  2463.         else if (letter == 'l')
  2464.           output_asm_label (operands[c]);
  2465.         else if (letter == 'a')
  2466.           output_address (operands[c]);
  2467.         else if (letter == 'c')
  2468.           {
  2469.         if (CONSTANT_ADDRESS_P (operands[c]))
  2470.           output_addr_const (asm_out_file, operands[c]);
  2471.         else
  2472.           output_operand (operands[c], 'c');
  2473.           }
  2474.         else if (letter == 'n')
  2475.           {
  2476.         if (GET_CODE (operands[c]) == CONST_INT)
  2477.           fprintf (asm_out_file,
  2478. #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
  2479.                "%d",
  2480. #else
  2481.                "%ld",
  2482. #endif
  2483.                - INTVAL (operands[c]));
  2484.         else
  2485.           {
  2486.             putc ('-', asm_out_file);
  2487.             output_addr_const (asm_out_file, operands[c]);
  2488.           }
  2489.           }
  2490.         else
  2491.           output_operand (operands[c], letter);
  2492.         
  2493.         while ((c = *p) >= '0' && c <= '9') p++;
  2494.       }
  2495.     /* % followed by a digit outputs an operand the default way.  */
  2496.     else if (*p >= '0' && *p <= '9')
  2497.       {
  2498.         c = atoi (p);
  2499.         if (this_is_asm_operands && c >= (unsigned) insn_noperands)
  2500.           output_operand_lossage ("operand number out of range");
  2501.         else
  2502.           output_operand (operands[c], 0);
  2503.         while ((c = *p) >= '0' && c <= '9') p++;
  2504.       }
  2505.     /* % followed by punctuation: output something for that
  2506.        punctuation character alone, with no operand.
  2507.        The PRINT_OPERAND macro decides what is actually done.  */
  2508. #ifdef PRINT_OPERAND_PUNCT_VALID_P
  2509.     else if (PRINT_OPERAND_PUNCT_VALID_P (*p))
  2510.       output_operand (NULL_RTX, *p++);
  2511. #endif
  2512.     else
  2513.       output_operand_lossage ("invalid %%-code");
  2514.     break;
  2515.  
  2516. #if defined (NEXT_SEMANTICS) && defined (HPPA)
  2517.       case '\'':
  2518.     if (*(p-2) && strchr("RLTP", *(p-2)))
  2519.       {
  2520.         putc ('`', asm_out_file);
  2521.         break;
  2522.       }
  2523. #endif
  2524.  
  2525.       default:
  2526.     putc (c, asm_out_file);
  2527.       }
  2528.  
  2529.   output_asm_name ();
  2530.  
  2531.   putc ('\n', asm_out_file);
  2532. }
  2533.  
  2534. /* Output a LABEL_REF, or a bare CODE_LABEL, as an assembler symbol.  */
  2535.  
  2536. void
  2537. output_asm_label (x)
  2538.      rtx x;
  2539. {
  2540.   char buf[256];
  2541.  
  2542.   if (GET_CODE (x) == LABEL_REF)
  2543.     ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (XEXP (x, 0)));
  2544.   else if (GET_CODE (x) == CODE_LABEL)
  2545.     ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
  2546.   else
  2547.     output_operand_lossage ("`%l' operand isn't a label");
  2548.  
  2549.   assemble_name (asm_out_file, buf);
  2550. }
  2551.  
  2552. /* Print operand X using machine-dependent assembler syntax.
  2553.    The macro PRINT_OPERAND is defined just to control this function.
  2554.    CODE is a non-digit that preceded the operand-number in the % spec,
  2555.    such as 'z' if the spec was `%z3'.  CODE is 0 if there was no char
  2556.    between the % and the digits.
  2557.    When CODE is a non-letter, X is 0.
  2558.  
  2559.    The meanings of the letters are machine-dependent and controlled
  2560.    by PRINT_OPERAND.  */
  2561.  
  2562. static void
  2563. output_operand (x, code)
  2564.      rtx x;
  2565.      int code;
  2566. {
  2567.   if (x && GET_CODE (x) == SUBREG)
  2568.     x = alter_subreg (x);
  2569.  
  2570.   /* If X is a pseudo-register, abort now rather than writing trash to the
  2571.      assembler file.  */
  2572.  
  2573.   if (x && GET_CODE (x) == REG && REGNO (x) >= FIRST_PSEUDO_REGISTER)
  2574.     abort ();
  2575.  
  2576.   PRINT_OPERAND (asm_out_file, x, code);
  2577. }
  2578.  
  2579. /* Print a memory reference operand for address X
  2580.    using machine-dependent assembler syntax.
  2581.    The macro PRINT_OPERAND_ADDRESS exists just to control this function.  */
  2582.  
  2583. void
  2584. output_address (x)
  2585.      rtx x;
  2586. {
  2587.   walk_alter_subreg (x);
  2588.   PRINT_OPERAND_ADDRESS (asm_out_file, x);
  2589. }
  2590.  
  2591. /* Print an integer constant expression in assembler syntax.
  2592.    Addition and subtraction are the only arithmetic
  2593.    that may appear in these expressions.  */
  2594.  
  2595. void
  2596. output_addr_const (file, x)
  2597.      FILE *file;
  2598.      rtx x;
  2599. {
  2600.   char buf[256];
  2601.  
  2602.  restart:
  2603.   switch (GET_CODE (x))
  2604.     {
  2605.     case PC:
  2606.       if (flag_pic)
  2607.     putc ('.', file);
  2608.       else
  2609.     abort ();
  2610.       break;
  2611.  
  2612.     case SYMBOL_REF:
  2613.       assemble_name (file, XSTR (x, 0));
  2614.       break;
  2615.  
  2616.     case LABEL_REF:
  2617.       ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (XEXP (x, 0)));
  2618.       assemble_name (file, buf);
  2619.       break;
  2620.  
  2621.     case CODE_LABEL:
  2622.       ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
  2623.       assemble_name (file, buf);
  2624.       break;
  2625.  
  2626.     case CONST_INT:
  2627.       fprintf (file,
  2628. #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
  2629.            "%d",
  2630. #else
  2631.            "%ld",
  2632. #endif
  2633.            INTVAL (x));
  2634.       break;
  2635.  
  2636.     case CONST:
  2637.       /* This used to output parentheses around the expression,
  2638.      but that does not work on the 386 (either ATT or BSD assembler).  */
  2639.       output_addr_const (file, XEXP (x, 0));
  2640.       break;
  2641.  
  2642.     case CONST_DOUBLE:
  2643.       if (GET_MODE (x) == VOIDmode)
  2644.     {
  2645.       /* We can use %d if the number is one word and positive.  */
  2646.       if (CONST_DOUBLE_HIGH (x))
  2647.         fprintf (file,
  2648. #if HOST_BITS_PER_WIDE_INT == 64
  2649. #if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
  2650.              "0x%lx%016lx",
  2651. #else
  2652.              "0x%x%016x",
  2653. #endif
  2654. #else
  2655. #if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
  2656.              "0x%lx%08lx",
  2657. #else
  2658.              "0x%x%08x",
  2659. #endif
  2660. #endif
  2661.              CONST_DOUBLE_HIGH (x), CONST_DOUBLE_LOW (x));
  2662.       else if  (CONST_DOUBLE_LOW (x) < 0)
  2663.         fprintf (file,
  2664. #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
  2665.              "0x%x",
  2666. #else
  2667.              "0x%lx",
  2668. #endif
  2669.              CONST_DOUBLE_LOW (x));
  2670.       else
  2671.         fprintf (file,
  2672. #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
  2673.              "%d",
  2674. #else
  2675.              "%ld",
  2676. #endif
  2677.              CONST_DOUBLE_LOW (x));
  2678.     }
  2679.       else
  2680.     /* We can't handle floating point constants;
  2681.        PRINT_OPERAND must handle them.  */
  2682.     output_operand_lossage ("floating constant misused");
  2683.       break;
  2684.  
  2685.     case PLUS:
  2686.       /* Some assemblers need integer constants to appear last (eg masm).  */
  2687.       if (GET_CODE (XEXP (x, 0)) == CONST_INT)
  2688.     {
  2689.       output_addr_const (file, XEXP (x, 1));
  2690.       if (INTVAL (XEXP (x, 0)) >= 0)
  2691.         fprintf (file, "+");
  2692.       output_addr_const (file, XEXP (x, 0));
  2693.     }
  2694.       else
  2695.     {
  2696.       output_addr_const (file, XEXP (x, 0));
  2697.       if (INTVAL (XEXP (x, 1)) >= 0)
  2698.         fprintf (file, "+");
  2699.       output_addr_const (file, XEXP (x, 1));
  2700.     }
  2701.       break;
  2702.  
  2703.     case MINUS:
  2704.       /* Avoid outputting things like x-x or x+5-x,
  2705.      since some assemblers can't handle that.  */
  2706.       x = simplify_subtraction (x);
  2707.       if (GET_CODE (x) != MINUS)
  2708.     goto restart;
  2709.  
  2710.       output_addr_const (file, XEXP (x, 0));
  2711.       fprintf (file, "-");
  2712.       if (GET_CODE (XEXP (x, 1)) == CONST_INT
  2713.       && INTVAL (XEXP (x, 1)) < 0)
  2714.     {
  2715.       fprintf (file, ASM_OPEN_PAREN);
  2716.       output_addr_const (file, XEXP (x, 1));
  2717.       fprintf (file, ASM_CLOSE_PAREN);
  2718.     }
  2719.       else
  2720.     output_addr_const (file, XEXP (x, 1));
  2721.       break;
  2722.  
  2723.     case ZERO_EXTEND:
  2724.     case SIGN_EXTEND:
  2725.       output_addr_const (file, XEXP (x, 0));
  2726.       break;
  2727.  
  2728.     default:
  2729.       output_operand_lossage ("invalid expression as operand");
  2730.     }
  2731. }
  2732.  
  2733. /* A poor man's fprintf, with the added features of %I, %R, %L, and %U.
  2734.    %R prints the value of REGISTER_PREFIX.
  2735.    %L prints the value of LOCAL_LABEL_PREFIX.
  2736.    %U prints the value of USER_LABEL_PREFIX.
  2737.    %I prints the value of IMMEDIATE_PREFIX.
  2738.    %O runs ASM_OUTPUT_OPCODE to transform what follows in the string.
  2739.    Also supported are %d, %x, %s, %e, %f, %g and %%.
  2740.  
  2741.    We handle alternate assembler dialects here, just like output_asm_insn.  */
  2742.  
  2743. void
  2744. asm_fprintf VPROTO((FILE *file, char *p, ...))
  2745. {
  2746. #ifndef __STDC__
  2747.   FILE *file;
  2748.   char *p;
  2749. #endif
  2750.   va_list argptr;
  2751.   char buf[10];
  2752.   char *q, c;
  2753.   int i;
  2754.  
  2755.   VA_START (argptr, p);
  2756.  
  2757. #ifndef __STDC__
  2758.   file = va_arg (argptr, FILE*);
  2759.   p = va_arg (argptr, char*);
  2760. #endif
  2761.  
  2762.   buf[0] = '%';
  2763.  
  2764.   while (c = *p++)
  2765.     switch (c)
  2766.       {
  2767. #ifdef ASSEMBLER_DIALECT
  2768.       case '{':
  2769.     /* If we want the first dialect, do nothing.  Otherwise, skip
  2770.        DIALECT_NUMBER of strings ending with '|'.  */
  2771.     for (i = 0; i < dialect_number; i++)
  2772.       {
  2773.         while (*p && *p++ != '|')
  2774.           ;
  2775.  
  2776.         if (*p == '|')
  2777.           p++;
  2778.       }
  2779.     break;
  2780.  
  2781.       case '|':
  2782.     /* Skip to close brace.  */
  2783.     while (*p && *p++ != '}')
  2784.       ;
  2785.     break;
  2786.  
  2787.       case '}':
  2788.     break;
  2789. #endif
  2790.  
  2791.       case '%':
  2792.     c = *p++;
  2793.     q = &buf[1];
  2794.     while ((c >= '0' && c <= '9') || c == '.')
  2795.       {
  2796.         *q++ = c;
  2797.         c = *p++;
  2798.       }
  2799.     switch (c)
  2800.       {
  2801.       case '%':
  2802.         fprintf (file, "%%");
  2803.         break;
  2804.  
  2805.       case 'd':  case 'i':  case 'u':
  2806.       case 'x':  case 'p':  case 'X':
  2807.       case 'o':
  2808.         *q++ = c;
  2809.         *q = 0;
  2810.         fprintf (file, buf, va_arg (argptr, int));
  2811.         break;
  2812.  
  2813.       case 'w':
  2814.         /* This is a prefix to the 'd', 'i', 'u', 'x', 'p', and 'X' cases,
  2815.            but we do not check for those cases.  It means that the value
  2816.            is a HOST_WIDE_INT, which may be either `int' or `long'.  */
  2817.  
  2818. #if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
  2819.         *q++ = 'l';
  2820. #endif
  2821.  
  2822.         *q++ = *p++;
  2823.         *q = 0;
  2824.         fprintf (file, buf, va_arg (argptr, HOST_WIDE_INT));
  2825.         break;
  2826.  
  2827.       case 'l':
  2828.         *q++ = c;
  2829.         *q++ = *p++;
  2830.         *q = 0;
  2831.         fprintf (file, buf, va_arg (argptr, long));
  2832.         break;
  2833.  
  2834.       case 'e':
  2835.       case 'f':
  2836.       case 'g':
  2837.         *q++ = c;
  2838.         *q = 0;
  2839.         fprintf (file, buf, va_arg (argptr, double));
  2840.         break;
  2841.  
  2842.       case 's':
  2843.         *q++ = c;
  2844.         *q = 0;
  2845.         fprintf (file, buf, va_arg (argptr, char *));
  2846.         break;
  2847.  
  2848.       case 'O':
  2849. #ifdef ASM_OUTPUT_OPCODE
  2850.         ASM_OUTPUT_OPCODE (asm_out_file, p);
  2851. #endif
  2852.         break;
  2853.  
  2854.       case 'R':
  2855. #ifdef REGISTER_PREFIX
  2856.         fprintf (file, "%s", REGISTER_PREFIX);
  2857. #endif
  2858.         break;
  2859.  
  2860.       case 'I':
  2861. #ifdef IMMEDIATE_PREFIX
  2862.         fprintf (file, "%s", IMMEDIATE_PREFIX);
  2863. #endif
  2864.         break;
  2865.  
  2866.       case 'L':
  2867. #ifdef LOCAL_LABEL_PREFIX
  2868.         fprintf (file, "%s", LOCAL_LABEL_PREFIX);
  2869. #endif
  2870.         break;
  2871.  
  2872.       case 'U':
  2873. #ifdef USER_LABEL_PREFIX
  2874.         fprintf (file, "%s", USER_LABEL_PREFIX);
  2875. #endif
  2876.         break;
  2877.  
  2878. #ifdef NEXT_SEMANTICS
  2879.       case 'S':
  2880.         *q++ = c;
  2881.         *q = 0;
  2882.         assemble_name (file, va_arg (argptr, char*));
  2883.         break;
  2884. #endif
  2885.  
  2886.       default:
  2887.         abort ();
  2888.       }
  2889.     break;
  2890.  
  2891.       default:
  2892.     fputc (c, file);
  2893.       }
  2894. }
  2895.  
  2896. /* Split up a CONST_DOUBLE or integer constant rtx
  2897.    into two rtx's for single words,
  2898.    storing in *FIRST the word that comes first in memory in the target
  2899.    and in *SECOND the other.  */
  2900.  
  2901. void
  2902. split_double (value, first, second)
  2903.      rtx value;
  2904.      rtx *first, *second;
  2905. {
  2906.   if (GET_CODE (value) == CONST_INT)
  2907.     {
  2908.       if (HOST_BITS_PER_WIDE_INT >= (2 * BITS_PER_WORD))
  2909.     {
  2910.       /* In this case the CONST_INT holds both target words.
  2911.          Extract the bits from it into two word-sized pieces.  */
  2912.       rtx low, high;
  2913.       HOST_WIDE_INT word_mask;
  2914.       /* Avoid warnings for shift count >= BITS_PER_WORD.  */
  2915.       int shift_count = BITS_PER_WORD - 1;
  2916.  
  2917.       word_mask = (HOST_WIDE_INT) 1 << shift_count;
  2918.       word_mask |= word_mask - 1;
  2919.       low = GEN_INT (INTVAL (value) & word_mask);
  2920.       high = GEN_INT ((INTVAL (value) >> (shift_count + 1)) & word_mask);
  2921.       if (WORDS_BIG_ENDIAN)
  2922.         {
  2923.           *first = high;
  2924.           *second = low;
  2925.         }
  2926.       else
  2927.         {
  2928.           *first = low;
  2929.           *second = high;
  2930.         }
  2931.     }
  2932.       else
  2933.     {
  2934.       /* The rule for using CONST_INT for a wider mode
  2935.          is that we regard the value as signed.
  2936.          So sign-extend it.  */
  2937.       rtx high = (INTVAL (value) < 0 ? constm1_rtx : const0_rtx);
  2938.       if (WORDS_BIG_ENDIAN)
  2939.         {
  2940.           *first = high;
  2941.           *second = value;
  2942.         }
  2943.       else
  2944.         {
  2945.           *first = value;
  2946.           *second = high;
  2947.         }
  2948.     }
  2949.     }
  2950.   else if (GET_CODE (value) != CONST_DOUBLE)
  2951.     {
  2952.       if (WORDS_BIG_ENDIAN)
  2953.     {
  2954.       *first = const0_rtx;
  2955.       *second = value;
  2956.     }
  2957.       else
  2958.     {
  2959.       *first = value;
  2960.       *second = const0_rtx;
  2961.     }
  2962.     }
  2963.   else if (GET_MODE (value) == VOIDmode
  2964.        /* This is the old way we did CONST_DOUBLE integers.  */
  2965.        || GET_MODE_CLASS (GET_MODE (value)) == MODE_INT)
  2966.     {
  2967.       /* In an integer, the words are defined as most and least significant.
  2968.      So order them by the target's convention.  */
  2969.       if (WORDS_BIG_ENDIAN)
  2970.     {
  2971.       *first = GEN_INT (CONST_DOUBLE_HIGH (value));
  2972.       *second = GEN_INT (CONST_DOUBLE_LOW (value));
  2973.     }
  2974.       else
  2975.     {
  2976.       *first = GEN_INT (CONST_DOUBLE_LOW (value));
  2977.       *second = GEN_INT (CONST_DOUBLE_HIGH (value));
  2978.     }
  2979.     }
  2980.   else
  2981.     {
  2982. #ifdef REAL_ARITHMETIC
  2983.       REAL_VALUE_TYPE r; long l[2];
  2984.       REAL_VALUE_FROM_CONST_DOUBLE (r, value);
  2985.  
  2986.       /* Note, this converts the REAL_VALUE_TYPE to the target's
  2987.      format, splits up the floating point double and outputs
  2988.      exactly 32 bits of it into each of l[0] and l[1] --
  2989.      not necessarily BITS_PER_WORD bits. */
  2990.       REAL_VALUE_TO_TARGET_DOUBLE (r, l);
  2991.  
  2992.       *first = GEN_INT ((HOST_WIDE_INT) l[0]);
  2993.       *second = GEN_INT ((HOST_WIDE_INT) l[1]);
  2994. #else
  2995.       if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
  2996.        || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
  2997.       && ! flag_pretend_float)
  2998.       abort ();
  2999.  
  3000.       if (
  3001. #ifdef HOST_WORDS_BIG_ENDIAN
  3002.       WORDS_BIG_ENDIAN
  3003. #else
  3004.       ! WORDS_BIG_ENDIAN
  3005. #endif
  3006.       )
  3007.     {
  3008.       /* Host and target agree => no need to swap.  */
  3009.       *first = GEN_INT (CONST_DOUBLE_LOW (value));
  3010.       *second = GEN_INT (CONST_DOUBLE_HIGH (value));
  3011.     }
  3012.       else
  3013.     {
  3014.       *second = GEN_INT (CONST_DOUBLE_LOW (value));
  3015.       *first = GEN_INT (CONST_DOUBLE_HIGH (value));
  3016.     }
  3017. #endif /* no REAL_ARITHMETIC */
  3018.     }
  3019. }
  3020.  
  3021. /* Return nonzero if this function has no function calls.  */
  3022.  
  3023. int
  3024. leaf_function_p ()
  3025. {
  3026.   rtx insn;
  3027.  
  3028.   if (profile_flag || profile_block_flag)
  3029.     return 0;
  3030.  
  3031.   for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
  3032.     {
  3033.       if (GET_CODE (insn) == CALL_INSN)
  3034.     return 0;
  3035.       if (GET_CODE (insn) == INSN
  3036.       && GET_CODE (PATTERN (insn)) == SEQUENCE
  3037.       && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN)
  3038.     return 0;
  3039.     }
  3040.   for (insn = current_function_epilogue_delay_list; insn; insn = XEXP (insn, 1))
  3041.     {
  3042.       if (GET_CODE (XEXP (insn, 0)) == CALL_INSN)
  3043.     return 0;
  3044.       if (GET_CODE (XEXP (insn, 0)) == INSN
  3045.       && GET_CODE (PATTERN (XEXP (insn, 0))) == SEQUENCE
  3046.       && GET_CODE (XVECEXP (PATTERN (XEXP (insn, 0)), 0, 0)) == CALL_INSN)
  3047.     return 0;
  3048.     }
  3049.  
  3050.   return 1;
  3051. }
  3052.  
  3053. /* On some machines, a function with no call insns
  3054.    can run faster if it doesn't create its own register window.
  3055.    When output, the leaf function should use only the "output"
  3056.    registers.  Ordinarily, the function would be compiled to use
  3057.    the "input" registers to find its arguments; it is a candidate
  3058.    for leaf treatment if it uses only the "input" registers.
  3059.    Leaf function treatment means renumbering so the function
  3060.    uses the "output" registers instead.  */
  3061.  
  3062. #ifdef LEAF_REGISTERS
  3063.  
  3064. static char permitted_reg_in_leaf_functions[] = LEAF_REGISTERS;
  3065.  
  3066. /* Return 1 if this function uses only the registers that can be
  3067.    safely renumbered.  */
  3068.  
  3069. int
  3070. only_leaf_regs_used ()
  3071. {
  3072.   int i;
  3073.  
  3074.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  3075.     {
  3076.       if ((regs_ever_live[i] || global_regs[i])
  3077.       && ! permitted_reg_in_leaf_functions[i])
  3078.     return 0;
  3079.     }
  3080.   return 1;
  3081. }
  3082.  
  3083. /* Scan all instructions and renumber all registers into those
  3084.    available in leaf functions.  */
  3085.  
  3086. static void
  3087. leaf_renumber_regs (first)
  3088.      rtx first;
  3089. {
  3090.   rtx insn;
  3091.  
  3092.   /* Renumber only the actual patterns.
  3093.      The reg-notes can contain frame pointer refs,
  3094.      and renumbering them could crash, and should not be needed.  */
  3095.   for (insn = first; insn; insn = NEXT_INSN (insn))
  3096.     if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
  3097.       leaf_renumber_regs_insn (PATTERN (insn));
  3098.   for (insn = current_function_epilogue_delay_list; insn; insn = XEXP (insn, 1))
  3099.     if (GET_RTX_CLASS (GET_CODE (XEXP (insn, 0))) == 'i')
  3100.       leaf_renumber_regs_insn (PATTERN (XEXP (insn, 0)));
  3101. }
  3102.  
  3103. /* Scan IN_RTX and its subexpressions, and renumber all regs into those
  3104.    available in leaf functions.  */
  3105.  
  3106. void
  3107. leaf_renumber_regs_insn (in_rtx)
  3108.      register rtx in_rtx;
  3109. {
  3110.   register int i, j;
  3111.   register char *format_ptr;
  3112.  
  3113.   if (in_rtx == 0)
  3114.     return;
  3115.  
  3116.   /* Renumber all input-registers into output-registers.
  3117.      renumbered_regs would be 1 for an output-register;
  3118.      they  */
  3119.  
  3120.   if (GET_CODE (in_rtx) == REG)
  3121.     {
  3122.       int newreg;
  3123.  
  3124.       /* Don't renumber the same reg twice.  */
  3125.       if (in_rtx->used)
  3126.     return;
  3127.  
  3128.       newreg = REGNO (in_rtx);
  3129.       /* Don't try to renumber pseudo regs.  It is possible for a pseudo reg
  3130.      to reach here as part of a REG_NOTE.  */
  3131.       if (newreg >= FIRST_PSEUDO_REGISTER)
  3132.     {
  3133.       in_rtx->used = 1;
  3134.       return;
  3135.     }
  3136.       newreg = LEAF_REG_REMAP (newreg);
  3137.       if (newreg < 0)
  3138.     abort ();
  3139.       regs_ever_live[REGNO (in_rtx)] = 0;
  3140.       regs_ever_live[newreg] = 1;
  3141.       REGNO (in_rtx) = newreg;
  3142.       in_rtx->used = 1;
  3143.     }
  3144.  
  3145.   if (GET_RTX_CLASS (GET_CODE (in_rtx)) == 'i')
  3146.     {
  3147.       /* Inside a SEQUENCE, we find insns.
  3148.      Renumber just the patterns of these insns,
  3149.      just as we do for the top-level insns.  */
  3150.       leaf_renumber_regs_insn (PATTERN (in_rtx));
  3151.       return;
  3152.     }
  3153.  
  3154.   format_ptr = GET_RTX_FORMAT (GET_CODE (in_rtx));
  3155.  
  3156.   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (in_rtx)); i++)
  3157.     switch (*format_ptr++)
  3158.       {
  3159.       case 'e':
  3160.     leaf_renumber_regs_insn (XEXP (in_rtx, i));
  3161.     break;
  3162.  
  3163.       case 'E':
  3164.     if (NULL != XVEC (in_rtx, i))
  3165.       {
  3166.         for (j = 0; j < XVECLEN (in_rtx, i); j++)
  3167.           leaf_renumber_regs_insn (XVECEXP (in_rtx, i, j));
  3168.       }
  3169.     break;
  3170.  
  3171.       case 'S':
  3172.       case 's':
  3173.       case '0':
  3174.       case 'i':
  3175.       case 'w':
  3176.       case 'n':
  3177.       case 'u':
  3178.     break;
  3179.  
  3180.       default:
  3181.     abort ();
  3182.       }
  3183. }
  3184. #endif
  3185.