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

  1. /* Perform instruction reorganizations for delay slot filling.
  2.    Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
  3.    Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu).
  4.    Hacked by Michael Tiemann (tiemann@cygnus.com).
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. /* Instruction reorganization pass.
  23.  
  24.    This pass runs after register allocation and final jump
  25.    optimization.  It should be the last pass to run before peephole.
  26.    It serves primarily to fill delay slots of insns, typically branch
  27.    and call insns.  Other insns typically involve more complicated
  28.    interactions of data dependencies and resource constraints, and
  29.    are better handled by scheduling before register allocation (by the
  30.    function `schedule_insns').
  31.  
  32.    The Branch Penalty is the number of extra cycles that are needed to
  33.    execute a branch insn.  On an ideal machine, branches take a single
  34.    cycle, and the Branch Penalty is 0.  Several RISC machines approach
  35.    branch delays differently:
  36.  
  37.    The MIPS and AMD 29000 have a single branch delay slot.  Most insns
  38.    (except other branches) can be used to fill this slot.  When the
  39.    slot is filled, two insns execute in two cycles, reducing the
  40.    branch penalty to zero.
  41.  
  42.    The Motorola 88000 conditionally exposes its branch delay slot,
  43.    so code is shorter when it is turned off, but will run faster
  44.    when useful insns are scheduled there.
  45.  
  46.    The IBM ROMP has two forms of branch and call insns, both with and
  47.    without a delay slot.  Much like the 88k, insns not using the delay
  48.    slot can be shorted (2 bytes vs. 4 bytes), but will run slowed.
  49.  
  50.    The SPARC always has a branch delay slot, but its effects can be
  51.    annulled when the branch is not taken.  This means that failing to
  52.    find other sources of insns, we can hoist an insn from the branch
  53.    target that would only be safe to execute knowing that the branch
  54.    is taken.
  55.  
  56.    The HP-PA always has a branch delay slot.  For unconditional branches
  57.    its effects can be annulled when the branch is taken.  The effects 
  58.    of the delay slot in a conditional branch can be nullified for forward
  59.    taken branches, or for untaken backward branches.  This means
  60.    we can hoist insns from the fall-through path for forward branches or
  61.    steal insns from the target of backward branches.
  62.  
  63.    Three techniques for filling delay slots have been implemented so far:
  64.  
  65.    (1) `fill_simple_delay_slots' is the simplest, most efficient way
  66.    to fill delay slots.  This pass first looks for insns which come
  67.    from before the branch and which are safe to execute after the
  68.    branch.  Then it searches after the insn requiring delay slots or,
  69.    in the case of a branch, for insns that are after the point at
  70.    which the branch merges into the fallthrough code, if such a point
  71.    exists.  When such insns are found, the branch penalty decreases
  72.    and no code expansion takes place.
  73.  
  74.    (2) `fill_eager_delay_slots' is more complicated: it is used for
  75.    scheduling conditional jumps, or for scheduling jumps which cannot
  76.    be filled using (1).  A machine need not have annulled jumps to use
  77.    this strategy, but it helps (by keeping more options open).
  78.    `fill_eager_delay_slots' tries to guess the direction the branch
  79.    will go; if it guesses right 100% of the time, it can reduce the
  80.    branch penalty as much as `fill_simple_delay_slots' does.  If it
  81.    guesses wrong 100% of the time, it might as well schedule nops (or
  82.    on the m88k, unexpose the branch slot).  When
  83.    `fill_eager_delay_slots' takes insns from the fall-through path of
  84.    the jump, usually there is no code expansion; when it takes insns
  85.    from the branch target, there is code expansion if it is not the
  86.    only way to reach that target.
  87.  
  88.    (3) `relax_delay_slots' uses a set of rules to simplify code that
  89.    has been reorganized by (1) and (2).  It finds cases where
  90.    conditional test can be eliminated, jumps can be threaded, extra
  91.    insns can be eliminated, etc.  It is the job of (1) and (2) to do a
  92.    good job of scheduling locally; `relax_delay_slots' takes care of
  93.    making the various individual schedules work well together.  It is
  94.    especially tuned to handle the control flow interactions of branch
  95.    insns.  It does nothing for insns with delay slots that do not
  96.    branch.
  97.  
  98.    On machines that use CC0, we are very conservative.  We will not make
  99.    a copy of an insn involving CC0 since we want to maintain a 1-1
  100.    correspondence between the insn that sets and uses CC0.  The insns are
  101.    allowed to be separated by placing an insn that sets CC0 (but not an insn
  102.    that uses CC0; we could do this, but it doesn't seem worthwhile) in a
  103.    delay slot.  In that case, we point each insn at the other with REG_CC_USER
  104.    and REG_CC_SETTER notes.  Note that these restrictions affect very few
  105.    machines because most RISC machines with delay slots will not use CC0
  106.    (the RT is the only known exception at this point).
  107.  
  108.    Not yet implemented:
  109.  
  110.    The Acorn Risc Machine can conditionally execute most insns, so
  111.    it is profitable to move single insns into a position to execute
  112.    based on the condition code of the previous insn.
  113.  
  114.    The HP-PA can conditionally nullify insns, providing a similar
  115.    effect to the ARM, differing mostly in which insn is "in charge".   */
  116.  
  117. #include <stdio.h>
  118. #include "config.h"
  119. #include "rtl.h"
  120. #include "insn-config.h"
  121. #include "conditions.h"
  122. #include "hard-reg-set.h"
  123. #include "basic-block.h"
  124. #include "regs.h"
  125. #include "insn-flags.h"
  126. #include "recog.h"
  127. #include "flags.h"
  128. #include "output.h"
  129. #include "obstack.h"
  130. #include "insn-attr.h"
  131.  
  132. #ifdef DELAY_SLOTS
  133.  
  134. #define obstack_chunk_alloc xmalloc
  135. #define obstack_chunk_free free
  136.  
  137. #ifndef ANNUL_IFTRUE_SLOTS
  138. #define eligible_for_annul_true(INSN, SLOTS, TRIAL, FLAGS) 0
  139. #endif
  140. #ifndef ANNUL_IFFALSE_SLOTS
  141. #define eligible_for_annul_false(INSN, SLOTS, TRIAL, FLAGS) 0
  142. #endif
  143.  
  144. /* Insns which have delay slots that have not yet been filled.  */
  145.  
  146. static struct obstack unfilled_slots_obstack;
  147. static rtx *unfilled_firstobj;
  148.  
  149. /* Define macros to refer to the first and last slot containing unfilled
  150.    insns.  These are used because the list may move and its address
  151.    should be recomputed at each use.  */
  152.  
  153. #define unfilled_slots_base    \
  154.   ((rtx *) obstack_base (&unfilled_slots_obstack))
  155.  
  156. #define unfilled_slots_next    \
  157.   ((rtx *) obstack_next_free (&unfilled_slots_obstack))
  158.  
  159. /* This structure is used to indicate which hardware resources are set or
  160.    needed by insns so far.  */
  161.  
  162. struct resources
  163. {
  164.   char memory;            /* Insn sets or needs a memory location.  */
  165.   char unch_memory;        /* Insn sets of needs a "unchanging" MEM. */
  166.   char volatil;            /* Insn sets or needs a volatile memory loc. */
  167.   char cc;            /* Insn sets or needs the condition codes.  */
  168.   HARD_REG_SET regs;        /* Which registers are set or needed.  */
  169. };
  170.  
  171. /* Macro to clear all resources.  */
  172. #define CLEAR_RESOURCE(RES)    \
  173.  do { (RES)->memory = (RES)->unch_memory = (RES)->volatil = (RES)->cc = 0; \
  174.       CLEAR_HARD_REG_SET ((RES)->regs); } while (0)
  175.  
  176. /* Indicates what resources are required at the beginning of the epilogue.  */
  177. static struct resources start_of_epilogue_needs;
  178.  
  179. /* Indicates what resources are required at function end.  */
  180. static struct resources end_of_function_needs;
  181.  
  182. /* Points to the label before the end of the function.  */
  183. static rtx end_of_function_label;
  184.  
  185. /* This structure is used to record liveness information at the targets or
  186.    fallthrough insns of branches.  We will most likely need the information
  187.    at targets again, so save them in a hash table rather than recomputing them
  188.    each time.  */
  189.  
  190. struct target_info
  191. {
  192.   int uid;            /* INSN_UID of target.  */
  193.   struct target_info *next;    /* Next info for same hash bucket.  */
  194.   HARD_REG_SET live_regs;    /* Registers live at target.  */
  195.   int block;            /* Basic block number containing target.  */
  196.   int bb_tick;            /* Generation count of basic block info.  */
  197. };
  198.  
  199. #define TARGET_HASH_PRIME 257
  200.  
  201. /* Define the hash table itself.  */
  202. static struct target_info **target_hash_table;
  203.  
  204. /* For each basic block, we maintain a generation number of its basic
  205.    block info, which is updated each time we move an insn from the
  206.    target of a jump.  This is the generation number indexed by block
  207.    number.  */
  208.  
  209. static int *bb_ticks;
  210.  
  211. /* Mapping between INSN_UID's and position in the code since INSN_UID's do
  212.    not always monotonically increase.  */
  213. static int *uid_to_ruid;
  214.  
  215. /* Highest valid index in `uid_to_ruid'.  */
  216. static int max_uid;
  217.  
  218. static void mark_referenced_resources PROTO((rtx, struct resources *, int));
  219. static void mark_set_resources    PROTO((rtx, struct resources *, int, int));
  220. static int stop_search_p    PROTO((rtx, int));
  221. static int resource_conflicts_p    PROTO((struct resources *,
  222.                        struct resources *));
  223. static int insn_references_resource_p PROTO((rtx, struct resources *, int));
  224. static int insn_sets_resources_p PROTO((rtx, struct resources *, int));
  225. static rtx find_end_label    PROTO((void));
  226. static rtx emit_delay_sequence    PROTO((rtx, rtx, int, int));
  227. static rtx add_to_delay_list    PROTO((rtx, rtx));
  228. static void delete_from_delay_slot PROTO((rtx));
  229. static void delete_scheduled_jump PROTO((rtx));
  230. static void note_delay_statistics PROTO((int, int));
  231. static rtx optimize_skip    PROTO((rtx));
  232. static int get_jump_flags PROTO((rtx, rtx));
  233. static int rare_destination PROTO((rtx));
  234. static int mostly_true_jump    PROTO((rtx, rtx));
  235. static rtx get_branch_condition    PROTO((rtx, rtx));
  236. static int condition_dominates_p PROTO((rtx, rtx));
  237. static rtx steal_delay_list_from_target PROTO((rtx, rtx, rtx, rtx,
  238.                            struct resources *,
  239.                            struct resources *,
  240.                            struct resources *,
  241.                            int, int *, int *, rtx *));
  242. static rtx steal_delay_list_from_fallthrough PROTO((rtx, rtx, rtx, rtx,
  243.                             struct resources *,
  244.                             struct resources *,
  245.                             struct resources *,
  246.                             int, int *, int *));
  247. static void try_merge_delay_insns PROTO((rtx, rtx));
  248. static rtx redundant_insn_p    PROTO((rtx, rtx, rtx));
  249. static int own_thread_p        PROTO((rtx, rtx, int));
  250. static int find_basic_block    PROTO((rtx));
  251. static void update_block    PROTO((rtx, rtx));
  252. static int reorg_redirect_jump PROTO((rtx, rtx));
  253. static void update_reg_dead_notes PROTO((rtx, rtx));
  254. static void update_reg_unused_notes PROTO((rtx, rtx));
  255. static void update_live_status    PROTO((rtx, rtx));
  256. static rtx next_insn_no_annul    PROTO((rtx));
  257. static void mark_target_live_regs PROTO((rtx, struct resources *));
  258. static void fill_simple_delay_slots PROTO((rtx, int));
  259. static rtx fill_slots_from_thread PROTO((rtx, rtx, rtx, rtx, int, int,
  260.                      int, int, int, int *));
  261. static void fill_eager_delay_slots PROTO((rtx));
  262. static void relax_delay_slots    PROTO((rtx));
  263. static void make_return_insns    PROTO((rtx));
  264. static int redirect_with_delay_slots_safe_p PROTO ((rtx, rtx, rtx));
  265. static int redirect_with_delay_list_safe_p PROTO ((rtx, rtx, rtx));
  266.  
  267. /* Given X, some rtl, and RES, a pointer to a `struct resource', mark
  268.    which resources are references by the insn.  If INCLUDE_CALLED_ROUTINE
  269.    is TRUE, resources used by the called routine will be included for
  270.    CALL_INSNs.  */
  271.  
  272. static void
  273. mark_referenced_resources (x, res, include_delayed_effects)
  274.      register rtx x;
  275.      register struct resources *res;
  276.      register int include_delayed_effects;
  277. {
  278.   register enum rtx_code code = GET_CODE (x);
  279.   register int i, j;
  280.   register char *format_ptr;
  281.  
  282.   /* Handle leaf items for which we set resource flags.  Also, special-case
  283.      CALL, SET and CLOBBER operators.  */
  284.   switch (code)
  285.     {
  286.     case CONST:
  287.     case CONST_INT:
  288.     case CONST_DOUBLE:
  289.     case PC:
  290.     case SYMBOL_REF:
  291.     case LABEL_REF:
  292.       return;
  293.  
  294.     case SUBREG:
  295.       if (GET_CODE (SUBREG_REG (x)) != REG)
  296.     mark_referenced_resources (SUBREG_REG (x), res, 0);
  297.       else
  298.     {
  299.       int regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
  300.       int last_regno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
  301.       for (i = regno; i < last_regno; i++)
  302.         SET_HARD_REG_BIT (res->regs, i);
  303.     }
  304.       return;
  305.  
  306.     case REG:
  307.       for (i = 0; i < HARD_REGNO_NREGS (REGNO (x), GET_MODE (x)); i++)
  308.     SET_HARD_REG_BIT (res->regs, REGNO (x) + i);
  309.       return;
  310.  
  311.     case MEM:
  312.       /* If this memory shouldn't change, it really isn't referencing
  313.      memory.  */
  314.       if (RTX_UNCHANGING_P (x))
  315.     res->unch_memory = 1;
  316.       else
  317.     res->memory = 1;
  318.       res->volatil = MEM_VOLATILE_P (x);
  319.  
  320.       /* Mark registers used to access memory.  */
  321.       mark_referenced_resources (XEXP (x, 0), res, 0);
  322.       return;
  323.  
  324.     case CC0:
  325.       res->cc = 1;
  326.       return;
  327.  
  328.     case UNSPEC_VOLATILE:
  329.     case ASM_INPUT:
  330.       /* Traditional asm's are always volatile.  */
  331.       res->volatil = 1;
  332.       return;
  333.  
  334.     case ASM_OPERANDS:
  335.       res->volatil = MEM_VOLATILE_P (x);
  336.  
  337.       /* For all ASM_OPERANDS, we must traverse the vector of input operands.
  338.      We can not just fall through here since then we would be confused
  339.      by the ASM_INPUT rtx inside ASM_OPERANDS, which do not indicate
  340.      traditional asms unlike their normal usage.  */
  341.       
  342.       for (i = 0; i < ASM_OPERANDS_INPUT_LENGTH (x); i++)
  343.     mark_referenced_resources (ASM_OPERANDS_INPUT (x, i), res, 0);
  344.       return;
  345.  
  346.     case CALL:
  347.       /* The first operand will be a (MEM (xxx)) but doesn't really reference
  348.      memory.  The second operand may be referenced, though.  */
  349.       mark_referenced_resources (XEXP (XEXP (x, 0), 0), res, 0);
  350.       mark_referenced_resources (XEXP (x, 1), res, 0);
  351.       return;
  352.  
  353.     case SET:
  354.       /* Usually, the first operand of SET is set, not referenced.  But
  355.      registers used to access memory are referenced.  SET_DEST is
  356.      also referenced if it is a ZERO_EXTRACT or SIGN_EXTRACT.  */
  357.  
  358.       mark_referenced_resources (SET_SRC (x), res, 0);
  359.  
  360.       x = SET_DEST (x);
  361.       if (GET_CODE (x) == SIGN_EXTRACT || GET_CODE (x) == ZERO_EXTRACT)
  362.     mark_referenced_resources (x, res, 0);
  363.       else if (GET_CODE (x) == SUBREG)
  364.     x = SUBREG_REG (x);
  365.       if (GET_CODE (x) == MEM)
  366.     mark_referenced_resources (XEXP (x, 0), res, 0);
  367.       return;
  368.  
  369.     case CLOBBER:
  370.       return;
  371.  
  372.     case CALL_INSN:
  373.       if (include_delayed_effects)
  374.     {
  375.       /* A CALL references memory, the frame pointer if it exists, the
  376.          stack pointer, any global registers and any registers given in
  377.          USE insns immediately in front of the CALL.
  378.  
  379.          However, we may have moved some of the parameter loading insns
  380.          into the delay slot of this CALL.  If so, the USE's for them
  381.          don't count and should be skipped.  */
  382.       rtx insn = PREV_INSN (x);
  383.       rtx sequence = 0;
  384.       int seq_size = 0;
  385.       int i;
  386.  
  387.       /* If we are part of a delay slot sequence, point at the SEQUENCE. */
  388.       if (NEXT_INSN (insn) != x)
  389.         {
  390.           sequence = PATTERN (NEXT_INSN (insn));
  391.           seq_size = XVECLEN (sequence, 0);
  392.           if (GET_CODE (sequence) != SEQUENCE)
  393.         abort ();
  394.         }
  395.  
  396.       res->memory = 1;
  397.       SET_HARD_REG_BIT (res->regs, STACK_POINTER_REGNUM);
  398.       if (frame_pointer_needed)
  399.         {
  400.           SET_HARD_REG_BIT (res->regs, FRAME_POINTER_REGNUM);
  401. #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
  402.           SET_HARD_REG_BIT (res->regs, HARD_FRAME_POINTER_REGNUM);
  403. #endif
  404.         }
  405.  
  406.       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  407.         if (global_regs[i])
  408.           SET_HARD_REG_BIT (res->regs, i);
  409.  
  410.       {
  411.         rtx link;
  412.  
  413.         for (link = CALL_INSN_FUNCTION_USAGE (x);
  414.          link;
  415.          link = XEXP (link, 1))
  416.           if (GET_CODE (XEXP (link, 0)) == USE)
  417.         {
  418.           for (i = 1; i < seq_size; i++)
  419.             {
  420.               rtx slot_pat = PATTERN (XVECEXP (sequence, 0, i));
  421.               if (GET_CODE (slot_pat) == SET
  422.               && rtx_equal_p (SET_DEST (slot_pat),
  423.                       SET_DEST (XEXP (link, 0))))
  424.             break;
  425.             }
  426.           if (i >= seq_size)
  427.             mark_referenced_resources (SET_DEST (XEXP (link, 0)),
  428.                            res, 0);
  429.         }
  430.       }
  431.     }
  432.  
  433.       /* ... fall through to other INSN processing ... */
  434.  
  435.     case INSN:
  436.     case JUMP_INSN:
  437.  
  438. #ifdef INSN_REFERENCES_ARE_DELAYED
  439.       if (! include_delayed_effects
  440.       && INSN_REFERENCES_ARE_DELAYED (x))
  441.     return;
  442. #endif
  443.  
  444.       /* No special processing, just speed up.  */
  445.       mark_referenced_resources (PATTERN (x), res, include_delayed_effects);
  446.       return;
  447.     }
  448.  
  449.   /* Process each sub-expression and flag what it needs.  */
  450.   format_ptr = GET_RTX_FORMAT (code);
  451.   for (i = 0; i < GET_RTX_LENGTH (code); i++)
  452.     switch (*format_ptr++)
  453.       {
  454.       case 'e':
  455.     mark_referenced_resources (XEXP (x, i), res, include_delayed_effects);
  456.     break;
  457.  
  458.       case 'E':
  459.     for (j = 0; j < XVECLEN (x, i); j++)
  460.       mark_referenced_resources (XVECEXP (x, i, j), res,
  461.                      include_delayed_effects);
  462.     break;
  463.       }
  464. }
  465.  
  466. /* Given X, a part of an insn, and a pointer to a `struct resource', RES,
  467.    indicate which resources are modified by the insn. If INCLUDE_CALLED_ROUTINE
  468.    is nonzero, also mark resources potentially set by the called routine.
  469.  
  470.    If IN_DEST is nonzero, it means we are inside a SET.  Otherwise,
  471.    objects are being referenced instead of set.
  472.  
  473.    We never mark the insn as modifying the condition code unless it explicitly
  474.    SETs CC0 even though this is not totally correct.  The reason for this is
  475.    that we require a SET of CC0 to immediately precede the reference to CC0.
  476.    So if some other insn sets CC0 as a side-effect, we know it cannot affect
  477.    our computation and thus may be placed in a delay slot.   */
  478.  
  479. static void
  480. mark_set_resources (x, res, in_dest, include_delayed_effects)
  481.      register rtx x;
  482.      register struct resources *res;
  483.      int in_dest;
  484.      int include_delayed_effects;
  485. {
  486.   register enum rtx_code code;
  487.   register int i, j;
  488.   register char *format_ptr;
  489.  
  490.  restart:
  491.  
  492.   code = GET_CODE (x);
  493.  
  494.   switch (code)
  495.     {
  496.     case NOTE:
  497.     case BARRIER:
  498.     case CODE_LABEL:
  499.     case USE:
  500.     case CONST_INT:
  501.     case CONST_DOUBLE:
  502.     case LABEL_REF:
  503.     case SYMBOL_REF:
  504.     case CONST:
  505.     case PC:
  506.       /* These don't set any resources.  */
  507.       return;
  508.  
  509.     case CC0:
  510.       if (in_dest)
  511.     res->cc = 1;
  512.       return;
  513.  
  514.     case CALL_INSN:
  515.       /* Called routine modifies the condition code, memory, any registers
  516.      that aren't saved across calls, global registers and anything
  517.      explicitly CLOBBERed immediately after the CALL_INSN.  */
  518.  
  519.       if (include_delayed_effects)
  520.     {
  521.       rtx next = NEXT_INSN (x);
  522.       rtx prev = PREV_INSN (x);
  523.       rtx link;
  524.  
  525.       res->cc = res->memory = 1;
  526.       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  527.         if (call_used_regs[i] || global_regs[i])
  528.           SET_HARD_REG_BIT (res->regs, i);
  529.  
  530.       /* If X is part of a delay slot sequence, then NEXT should be
  531.          the first insn after the sequence.  */
  532.       if (NEXT_INSN (prev) != x)
  533.         next = NEXT_INSN (NEXT_INSN (prev));
  534.  
  535.       for (link = CALL_INSN_FUNCTION_USAGE (x);
  536.            link; link = XEXP (link, 1))
  537.         if (GET_CODE (XEXP (link, 0)) == CLOBBER)
  538.           mark_set_resources (SET_DEST (XEXP (link, 0)), res, 1, 0);
  539.  
  540.       /* Check for a NOTE_INSN_SETJMP.  If it exists, then we must
  541.          assume that this call can clobber any register.  */
  542.       if (next && GET_CODE (next) == NOTE
  543.           && NOTE_LINE_NUMBER (next) == NOTE_INSN_SETJMP)
  544.         SET_HARD_REG_SET (res->regs);
  545.     }
  546.  
  547.       /* ... and also what it's RTL says it modifies, if anything.  */
  548.  
  549.     case JUMP_INSN:
  550.     case INSN:
  551.  
  552.     /* An insn consisting of just a CLOBBER (or USE) is just for flow
  553.        and doesn't actually do anything, so we ignore it.  */
  554.  
  555. #ifdef INSN_SETS_ARE_DELAYED
  556.       if (! include_delayed_effects
  557.       && INSN_SETS_ARE_DELAYED (x))
  558.     return;
  559. #endif
  560.  
  561.       x = PATTERN (x);
  562.       if (GET_CODE (x) != USE && GET_CODE (x) != CLOBBER)
  563.     goto restart;
  564.       return;
  565.  
  566.     case SET:
  567.       /* If the source of a SET is a CALL, this is actually done by
  568.      the called routine.  So only include it if we are to include the
  569.      effects of the calling routine.  */
  570.  
  571.       mark_set_resources (SET_DEST (x), res,
  572.               (include_delayed_effects
  573.                || GET_CODE (SET_SRC (x)) != CALL),
  574.               0);
  575.  
  576.       mark_set_resources (SET_SRC (x), res, 0, 0);
  577.       return;
  578.  
  579.     case CLOBBER:
  580.       mark_set_resources (XEXP (x, 0), res, 1, 0);
  581.       return;
  582.       
  583.     case SEQUENCE:
  584.       for (i = 0; i < XVECLEN (x, 0); i++)
  585.     if (! (INSN_ANNULLED_BRANCH_P (XVECEXP (x, 0, 0))
  586.            && INSN_FROM_TARGET_P (XVECEXP (x, 0, i))))
  587.       mark_set_resources (XVECEXP (x, 0, i), res, 0,
  588.                   include_delayed_effects);
  589.       return;
  590.  
  591.     case POST_INC:
  592.     case PRE_INC:
  593.     case POST_DEC:
  594.     case PRE_DEC:
  595.       mark_set_resources (XEXP (x, 0), res, 1, 0);
  596.       return;
  597.  
  598.     case ZERO_EXTRACT:
  599.       mark_set_resources (XEXP (x, 0), res, in_dest, 0);
  600.       mark_set_resources (XEXP (x, 1), res, 0, 0);
  601.       mark_set_resources (XEXP (x, 2), res, 0, 0);
  602.       return;
  603.  
  604.     case MEM:
  605.       if (in_dest)
  606.     {
  607.       res->memory = 1;
  608.       res->unch_memory = RTX_UNCHANGING_P (x);
  609.       res->volatil = MEM_VOLATILE_P (x);
  610.     }
  611.  
  612.       mark_set_resources (XEXP (x, 0), res, 0, 0);
  613.       return;
  614.  
  615.     case SUBREG:
  616.       if (in_dest)
  617.     {
  618.       if (GET_CODE (SUBREG_REG (x)) != REG)
  619.         mark_set_resources (SUBREG_REG (x), res,
  620.                 in_dest, include_delayed_effects);
  621.       else
  622.         {
  623.           int regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
  624.           int last_regno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
  625.           for (i = regno; i < last_regno; i++)
  626.         SET_HARD_REG_BIT (res->regs, i);
  627.         }
  628.     }
  629.       return;
  630.  
  631.     case REG:
  632.       if (in_dest)
  633.         for (i = 0; i < HARD_REGNO_NREGS (REGNO (x), GET_MODE (x)); i++)
  634.       SET_HARD_REG_BIT (res->regs, REGNO (x) + i);
  635.       return;
  636.     }
  637.  
  638.   /* Process each sub-expression and flag what it needs.  */
  639.   format_ptr = GET_RTX_FORMAT (code);
  640.   for (i = 0; i < GET_RTX_LENGTH (code); i++)
  641.     switch (*format_ptr++)
  642.       {
  643.       case 'e':
  644.     mark_set_resources (XEXP (x, i), res, in_dest, include_delayed_effects);
  645.     break;
  646.  
  647.       case 'E':
  648.     for (j = 0; j < XVECLEN (x, i); j++)
  649.       mark_set_resources (XVECEXP (x, i, j), res, in_dest,
  650.                   include_delayed_effects);
  651.     break;
  652.       }
  653. }
  654.  
  655. /* Return TRUE if this insn should stop the search for insn to fill delay
  656.    slots.  LABELS_P indicates that labels should terminate the search.
  657.    In all cases, jumps terminate the search.  */
  658.  
  659. static int
  660. stop_search_p (insn, labels_p)
  661.      rtx insn;
  662.      int labels_p;
  663. {
  664.   if (insn == 0)
  665.     return 1;
  666.  
  667.   switch (GET_CODE (insn))
  668.     {
  669.     case NOTE:
  670.     case CALL_INSN:
  671.       return 0;
  672.  
  673.     case CODE_LABEL:
  674.       return labels_p;
  675.  
  676.     case JUMP_INSN:
  677.     case BARRIER:
  678.       return 1;
  679.  
  680.     case INSN:
  681.       /* OK unless it contains a delay slot or is an `asm' insn of some type.
  682.      We don't know anything about these.  */
  683.       return (GET_CODE (PATTERN (insn)) == SEQUENCE
  684.           || GET_CODE (PATTERN (insn)) == ASM_INPUT
  685.           || asm_noperands (PATTERN (insn)) >= 0);
  686.  
  687.     default:
  688.       abort ();
  689.     }
  690. }
  691.  
  692. /* Return TRUE if any resources are marked in both RES1 and RES2 or if either
  693.    resource set contains a volatile memory reference.  Otherwise, return FALSE.  */
  694.  
  695. static int
  696. resource_conflicts_p (res1, res2)
  697.      struct resources *res1, *res2;
  698. {
  699.   if ((res1->cc && res2->cc) || (res1->memory && res2->memory)
  700.       || (res1->unch_memory && res2->unch_memory)
  701.       || res1->volatil || res2->volatil)
  702.     return 1;
  703.  
  704. #ifdef HARD_REG_SET
  705.   return (res1->regs & res2->regs) != HARD_CONST (0);
  706. #else
  707.   {
  708.     int i;
  709.  
  710.     for (i = 0; i < HARD_REG_SET_LONGS; i++)
  711.       if ((res1->regs[i] & res2->regs[i]) != 0)
  712.     return 1;
  713.     return 0;
  714.   }
  715. #endif
  716. }
  717.  
  718. /* Return TRUE if any resource marked in RES, a `struct resources', is
  719.    referenced by INSN.  If INCLUDE_CALLED_ROUTINE is set, return if the called
  720.    routine is using those resources.
  721.  
  722.    We compute this by computing all the resources referenced by INSN and
  723.    seeing if this conflicts with RES.  It might be faster to directly check
  724.    ourselves, and this is the way it used to work, but it means duplicating
  725.    a large block of complex code.  */
  726.  
  727. static int
  728. insn_references_resource_p (insn, res, include_delayed_effects)
  729.      register rtx insn;
  730.      register struct resources *res;
  731.      int include_delayed_effects;
  732. {
  733.   struct resources insn_res;
  734.  
  735.   CLEAR_RESOURCE (&insn_res);
  736.   mark_referenced_resources (insn, &insn_res, include_delayed_effects);
  737.   return resource_conflicts_p (&insn_res, res);
  738. }
  739.  
  740. /* Return TRUE if INSN modifies resources that are marked in RES.
  741.    INCLUDE_CALLED_ROUTINE is set if the actions of that routine should be
  742.    included.   CC0 is only modified if it is explicitly set; see comments
  743.    in front of mark_set_resources for details.  */
  744.  
  745. static int
  746. insn_sets_resource_p (insn, res, include_delayed_effects)
  747.      register rtx insn;
  748.      register struct resources *res;
  749.      int include_delayed_effects;
  750. {
  751.   struct resources insn_sets;
  752.  
  753.   CLEAR_RESOURCE (&insn_sets);
  754.   mark_set_resources (insn, &insn_sets, 0, include_delayed_effects);
  755.   return resource_conflicts_p (&insn_sets, res);
  756. }
  757.  
  758. /* Find a label at the end of the function or before a RETURN.  If there is
  759.    none, make one.  */
  760.  
  761. static rtx
  762. find_end_label ()
  763. {
  764.   rtx insn;
  765.  
  766.   /* If we found one previously, return it.  */
  767.   if (end_of_function_label)
  768.     return end_of_function_label;
  769.  
  770.   /* Otherwise, see if there is a label at the end of the function.  If there
  771.      is, it must be that RETURN insns aren't needed, so that is our return
  772.      label and we don't have to do anything else.  */
  773.  
  774.   insn = get_last_insn ();
  775.   while (GET_CODE (insn) == NOTE
  776.      || (GET_CODE (insn) == INSN
  777.          && (GET_CODE (PATTERN (insn)) == USE
  778.          || GET_CODE (PATTERN (insn)) == CLOBBER)))
  779.     insn = PREV_INSN (insn);
  780.  
  781.   /* When a target threads its epilogue we might already have a 
  782.      suitable return insn.  If so put a label before it for the
  783.      end_of_function_label.  */
  784.   if (GET_CODE (insn) == BARRIER
  785.       && GET_CODE (PREV_INSN (insn)) == JUMP_INSN
  786.       && GET_CODE (PATTERN (PREV_INSN (insn))) == RETURN)
  787.     {
  788.       rtx temp = PREV_INSN (PREV_INSN (insn));
  789.       end_of_function_label = gen_label_rtx ();
  790.       LABEL_NUSES (end_of_function_label) = 0;
  791.  
  792.       /* Put the label before an USE insns that may proceed the RETURN insn. */
  793.       while (GET_CODE (temp) == USE)
  794.     temp = PREV_INSN (temp);
  795.  
  796.       emit_label_after (end_of_function_label, temp);
  797.     }
  798.  
  799.   else if (GET_CODE (insn) == CODE_LABEL)
  800.     end_of_function_label = insn;
  801.   else
  802.     {
  803.       /* Otherwise, make a new label and emit a RETURN and BARRIER,
  804.      if needed.  */
  805.       end_of_function_label = gen_label_rtx ();
  806.       LABEL_NUSES (end_of_function_label) = 0;
  807.       emit_label (end_of_function_label);
  808. #ifdef HAVE_return
  809.       if (HAVE_return)
  810.     {
  811.       /* The return we make may have delay slots too.  */
  812.       rtx insn = gen_return ();
  813.       insn = emit_jump_insn (insn);
  814.       emit_barrier ();
  815.           if (num_delay_slots (insn) > 0)
  816.         obstack_ptr_grow (&unfilled_slots_obstack, insn);
  817.     }
  818. #endif
  819.     }
  820.  
  821.   /* Show one additional use for this label so it won't go away until
  822.      we are done.  */
  823.   ++LABEL_NUSES (end_of_function_label);
  824.  
  825.   return end_of_function_label;
  826. }
  827.  
  828. /* Put INSN and LIST together in a SEQUENCE rtx of LENGTH, and replace
  829.    the pattern of INSN with the SEQUENCE.
  830.  
  831.    Chain the insns so that NEXT_INSN of each insn in the sequence points to
  832.    the next and NEXT_INSN of the last insn in the sequence points to
  833.    the first insn after the sequence.  Similarly for PREV_INSN.  This makes
  834.    it easier to scan all insns.
  835.  
  836.    Returns the SEQUENCE that replaces INSN.  */
  837.  
  838. static rtx
  839. emit_delay_sequence (insn, list, length, avail)
  840.      rtx insn;
  841.      rtx list;
  842.      int length;
  843.      int avail;
  844. {
  845.   register int i = 1;
  846.   register rtx li;
  847.   int had_barrier = 0;
  848.  
  849.   /* Allocate the the rtvec to hold the insns and the SEQUENCE. */
  850.   rtvec seqv = rtvec_alloc (length + 1);
  851.   rtx seq = gen_rtx (SEQUENCE, VOIDmode, seqv);
  852.   rtx seq_insn = make_insn_raw (seq);
  853.   rtx first = get_insns ();
  854.   rtx last = get_last_insn ();
  855.  
  856.   /* Make a copy of the insn having delay slots. */
  857.   rtx delay_insn = copy_rtx (insn);
  858.  
  859.   /* If INSN is followed by a BARRIER, delete the BARRIER since it will only
  860.      confuse further processing.  Update LAST in case it was the last insn.  
  861.      We will put the BARRIER back in later.  */
  862.   if (NEXT_INSN (insn) && GET_CODE (NEXT_INSN (insn)) == BARRIER)
  863.     {
  864.       delete_insn (NEXT_INSN (insn));
  865.       last = get_last_insn ();
  866.       had_barrier = 1;
  867.     }
  868.  
  869.   /* Splice our SEQUENCE into the insn stream where INSN used to be.  */
  870.   NEXT_INSN (seq_insn) = NEXT_INSN (insn);
  871.   PREV_INSN (seq_insn) = PREV_INSN (insn);
  872.  
  873.   if (insn == last)
  874.     set_new_first_and_last_insn (first, seq_insn);
  875.   else
  876.     PREV_INSN (NEXT_INSN (seq_insn)) = seq_insn;
  877.  
  878.   if (insn == first)
  879.     set_new_first_and_last_insn (seq_insn, last);
  880.   else
  881.     NEXT_INSN (PREV_INSN (seq_insn)) = seq_insn;
  882.  
  883.   /* Build our SEQUENCE and rebuild the insn chain.  */
  884.   XVECEXP (seq, 0, 0) = delay_insn;
  885.   INSN_DELETED_P (delay_insn) = 0;
  886.   PREV_INSN (delay_insn) = PREV_INSN (seq_insn);
  887.  
  888.   for (li = list; li; li = XEXP (li, 1), i++)
  889.     {
  890.       rtx tem = XEXP (li, 0);
  891.       rtx note;
  892.  
  893.       /* Show that this copy of the insn isn't deleted.  */
  894.       INSN_DELETED_P (tem) = 0;
  895.  
  896.       XVECEXP (seq, 0, i) = tem;
  897.       PREV_INSN (tem) = XVECEXP (seq, 0, i - 1);
  898.       NEXT_INSN (XVECEXP (seq, 0, i - 1)) = tem;
  899.  
  900.       /* Remove any REG_DEAD notes because we can't rely on them now
  901.      that the insn has been moved.  */
  902.       for (note = REG_NOTES (tem); note; note = XEXP (note, 1))
  903.     if (REG_NOTE_KIND (note) == REG_DEAD)
  904.       XEXP (note, 0) = const0_rtx;
  905.     }
  906.  
  907.   NEXT_INSN (XVECEXP (seq, 0, length)) = NEXT_INSN (seq_insn);
  908.  
  909.   /* If the previous insn is a SEQUENCE, update the NEXT_INSN pointer on the
  910.      last insn in that SEQUENCE to point to us.  Similarly for the first
  911.      insn in the following insn if it is a SEQUENCE.  */
  912.  
  913.   if (PREV_INSN (seq_insn) && GET_CODE (PREV_INSN (seq_insn)) == INSN
  914.       && GET_CODE (PATTERN (PREV_INSN (seq_insn))) == SEQUENCE)
  915.     NEXT_INSN (XVECEXP (PATTERN (PREV_INSN (seq_insn)), 0,
  916.             XVECLEN (PATTERN (PREV_INSN (seq_insn)), 0) - 1))
  917.       = seq_insn;
  918.  
  919.   if (NEXT_INSN (seq_insn) && GET_CODE (NEXT_INSN (seq_insn)) == INSN
  920.       && GET_CODE (PATTERN (NEXT_INSN (seq_insn))) == SEQUENCE)
  921.     PREV_INSN (XVECEXP (PATTERN (NEXT_INSN (seq_insn)), 0, 0)) = seq_insn;
  922.     
  923.   /* If there used to be a BARRIER, put it back.  */
  924.   if (had_barrier)
  925.     emit_barrier_after (seq_insn);
  926.  
  927.   if (i != length + 1)
  928.     abort ();
  929.  
  930.   return seq_insn;
  931. }
  932.  
  933. /* Add INSN to DELAY_LIST and return the head of the new list.  The list must
  934.    be in the order in which the insns are to be executed.  */
  935.  
  936. static rtx
  937. add_to_delay_list (insn, delay_list)
  938.      rtx insn;
  939.      rtx delay_list;
  940. {
  941.   /* If we have an empty list, just make a new list element.  If
  942.      INSN has it's block number recorded, clear it since we may
  943.      be moving the insn to a new block.  */
  944.  
  945.   if (delay_list == 0)
  946.     {
  947.       struct target_info *tinfo;
  948.       
  949.       for (tinfo = target_hash_table[INSN_UID (insn) % TARGET_HASH_PRIME];
  950.        tinfo; tinfo = tinfo->next)
  951.     if (tinfo->uid == INSN_UID (insn))
  952.       break;
  953.  
  954.       if (tinfo)
  955.     tinfo->block = -1;
  956.  
  957.       return gen_rtx (INSN_LIST, VOIDmode, insn, NULL_RTX);
  958.     }
  959.  
  960.   /* Otherwise this must be an INSN_LIST.  Add INSN to the end of the
  961.      list.  */
  962.   XEXP (delay_list, 1) = add_to_delay_list (insn, XEXP (delay_list, 1));
  963.  
  964.   return delay_list;
  965. }   
  966.  
  967. /* Delete INSN from the the delay slot of the insn that it is in.  This may
  968.    produce an insn without anything in its delay slots.  */
  969.  
  970. static void
  971. delete_from_delay_slot (insn)
  972.      rtx insn;
  973. {
  974.   rtx trial, seq_insn, seq, prev;
  975.   rtx delay_list = 0;
  976.   int i;
  977.  
  978.   /* We first must find the insn containing the SEQUENCE with INSN in its
  979.      delay slot.  Do this by finding an insn, TRIAL, where
  980.      PREV_INSN (NEXT_INSN (TRIAL)) != TRIAL.  */
  981.  
  982.   for (trial = insn;
  983.        PREV_INSN (NEXT_INSN (trial)) == trial;
  984.        trial = NEXT_INSN (trial))
  985.     ;
  986.  
  987.   seq_insn = PREV_INSN (NEXT_INSN (trial));
  988.   seq = PATTERN (seq_insn);
  989.  
  990.   /* Create a delay list consisting of all the insns other than the one
  991.      we are deleting (unless we were the only one).  */
  992.   if (XVECLEN (seq, 0) > 2)
  993.     for (i = 1; i < XVECLEN (seq, 0); i++)
  994.       if (XVECEXP (seq, 0, i) != insn)
  995.     delay_list = add_to_delay_list (XVECEXP (seq, 0, i), delay_list);
  996.  
  997.   /* Delete the old SEQUENCE, re-emit the insn that used to have the delay
  998.      list, and rebuild the delay list if non-empty.  */
  999.   prev = PREV_INSN (seq_insn);
  1000.   trial = XVECEXP (seq, 0, 0);
  1001.   delete_insn (seq_insn);
  1002.   add_insn_after (trial, prev);
  1003.  
  1004.   if (GET_CODE (trial) == JUMP_INSN
  1005.       && (simplejump_p (trial) || GET_CODE (PATTERN (trial)) == RETURN))
  1006.     emit_barrier_after (trial);
  1007.  
  1008.   /* If there are any delay insns, remit them.  Otherwise clear the
  1009.      annul flag.  */
  1010.   if (delay_list)
  1011.     trial = emit_delay_sequence (trial, delay_list, XVECLEN (seq, 0) - 2, 0);
  1012.   else
  1013.     INSN_ANNULLED_BRANCH_P (trial) = 0;
  1014.  
  1015.   INSN_FROM_TARGET_P (insn) = 0;
  1016.  
  1017.   /* Show we need to fill this insn again.  */
  1018.   obstack_ptr_grow (&unfilled_slots_obstack, trial);
  1019. }
  1020.  
  1021. /* Delete INSN, a JUMP_INSN.  If it is a conditional jump, we must track down
  1022.    the insn that sets CC0 for it and delete it too.  */
  1023.  
  1024. static void
  1025. delete_scheduled_jump (insn)
  1026.      rtx insn;
  1027. {
  1028.   /* Delete the insn that sets cc0 for us.  On machines without cc0, we could
  1029.      delete the insn that sets the condition code, but it is hard to find it.
  1030.      Since this case is rare anyway, don't bother trying; there would likely
  1031.      be other insns that became dead anyway, which we wouldn't know to
  1032.      delete.  */
  1033.  
  1034. #ifdef HAVE_cc0
  1035.   if (reg_mentioned_p (cc0_rtx, insn))
  1036.     {
  1037.       rtx note = find_reg_note (insn, REG_CC_SETTER, NULL_RTX);
  1038.  
  1039.       /* If a reg-note was found, it points to an insn to set CC0.  This
  1040.      insn is in the delay list of some other insn.  So delete it from
  1041.      the delay list it was in.  */
  1042.       if (note)
  1043.     {
  1044.       if (! FIND_REG_INC_NOTE (XEXP (note, 0), NULL_RTX)
  1045.           && sets_cc0_p (PATTERN (XEXP (note, 0))) == 1)
  1046.         delete_from_delay_slot (XEXP (note, 0));
  1047.     }
  1048.       else
  1049.     {
  1050.       /* The insn setting CC0 is our previous insn, but it may be in
  1051.          a delay slot.  It will be the last insn in the delay slot, if
  1052.          it is.  */
  1053.       rtx trial = previous_insn (insn);
  1054.       if (GET_CODE (trial) == NOTE)
  1055.         trial = prev_nonnote_insn (trial);
  1056.       if (sets_cc0_p (PATTERN (trial)) != 1
  1057.           || FIND_REG_INC_NOTE (trial, 0))
  1058.         return;
  1059.       if (PREV_INSN (NEXT_INSN (trial)) == trial)
  1060.         delete_insn (trial);
  1061.       else
  1062.         delete_from_delay_slot (trial);
  1063.     }
  1064.     }
  1065. #endif
  1066.  
  1067.   delete_insn (insn);
  1068. }
  1069.  
  1070. /* Counters for delay-slot filling.  */
  1071.  
  1072. #define NUM_REORG_FUNCTIONS 2
  1073. #define MAX_DELAY_HISTOGRAM 3
  1074. #define MAX_REORG_PASSES 2
  1075.  
  1076. static int num_insns_needing_delays[NUM_REORG_FUNCTIONS][MAX_REORG_PASSES];
  1077.  
  1078. static int num_filled_delays[NUM_REORG_FUNCTIONS][MAX_DELAY_HISTOGRAM+1][MAX_REORG_PASSES];
  1079.  
  1080. static int reorg_pass_number;
  1081.  
  1082. static void
  1083. note_delay_statistics (slots_filled, index)
  1084.      int slots_filled, index;
  1085. {
  1086.   num_insns_needing_delays[index][reorg_pass_number]++;
  1087.   if (slots_filled > MAX_DELAY_HISTOGRAM)
  1088.     slots_filled = MAX_DELAY_HISTOGRAM;
  1089.   num_filled_delays[index][slots_filled][reorg_pass_number]++;
  1090. }
  1091.  
  1092. #if defined(ANNUL_IFFALSE_SLOTS) || defined(ANNUL_IFTRUE_SLOTS)
  1093.  
  1094. /* Optimize the following cases:
  1095.  
  1096.    1.  When a conditional branch skips over only one instruction,
  1097.        use an annulling branch and put that insn in the delay slot.
  1098.        Use either a branch that annuls when the condition if true or
  1099.        invert the test with a branch that annuls when the condition is
  1100.        false.  This saves insns, since otherwise we must copy an insn
  1101.        from the L1 target.
  1102.  
  1103.         (orig)         (skip)        (otherwise)
  1104.     Bcc.n L1    Bcc',a L1    Bcc,a L1'
  1105.     insn        insn        insn2
  1106.       L1:          L1:          L1:
  1107.     insn2        insn2        insn2
  1108.     insn3        insn3          L1':
  1109.                     insn3
  1110.  
  1111.    2.  When a conditional branch skips over only one instruction,
  1112.        and after that, it unconditionally branches somewhere else,
  1113.        perform the similar optimization. This saves executing the
  1114.        second branch in the case where the inverted condition is true.
  1115.  
  1116.     Bcc.n L1    Bcc',a L2
  1117.     insn        insn
  1118.       L1:          L1:
  1119.     Bra L2        Bra L2
  1120.  
  1121.    INSN is a JUMP_INSN.
  1122.  
  1123.    This should be expanded to skip over N insns, where N is the number
  1124.    of delay slots required.  */
  1125.  
  1126. static rtx
  1127. optimize_skip (insn)
  1128.      register rtx insn;
  1129. {
  1130.   register rtx trial = next_nonnote_insn (insn);
  1131.   rtx next_trial = next_active_insn (trial);
  1132.   rtx delay_list = 0;
  1133.   rtx target_label;
  1134.   int flags;
  1135.  
  1136.   flags = get_jump_flags (insn, JUMP_LABEL (insn));
  1137.  
  1138.   if (trial == 0
  1139.       || GET_CODE (trial) != INSN
  1140.       || GET_CODE (PATTERN (trial)) == SEQUENCE
  1141.       || recog_memoized (trial) < 0
  1142.       || (! eligible_for_annul_false (insn, 0, trial, flags)
  1143.       && ! eligible_for_annul_true (insn, 0, trial, flags)))
  1144.     return 0;
  1145.  
  1146.   /* There are two cases where we are just executing one insn (we assume
  1147.      here that a branch requires only one insn; this should be generalized
  1148.      at some point):  Where the branch goes around a single insn or where
  1149.      we have one insn followed by a branch to the same label we branch to.
  1150.      In both of these cases, inverting the jump and annulling the delay
  1151.      slot give the same effect in fewer insns.  */
  1152.   if ((next_trial == next_active_insn (JUMP_LABEL (insn)))
  1153.       || (next_trial != 0
  1154.       && GET_CODE (next_trial) == JUMP_INSN
  1155.       && JUMP_LABEL (insn) == JUMP_LABEL (next_trial)
  1156.       && (simplejump_p (next_trial)
  1157.           || GET_CODE (PATTERN (next_trial)) == RETURN)))
  1158.     {
  1159.       if (eligible_for_annul_false (insn, 0, trial, flags))
  1160.     {
  1161.       if (invert_jump (insn, JUMP_LABEL (insn)))
  1162.         INSN_FROM_TARGET_P (trial) = 1;
  1163.       else if (! eligible_for_annul_true (insn, 0, trial, flags))
  1164.         return 0;
  1165.     }
  1166.  
  1167.       delay_list = add_to_delay_list (trial, NULL_RTX);
  1168.       next_trial = next_active_insn (trial);
  1169.       update_block (trial, trial);
  1170.       delete_insn (trial);
  1171.  
  1172.       /* Also, if we are targeting an unconditional
  1173.      branch, thread our jump to the target of that branch.  Don't
  1174.      change this into a RETURN here, because it may not accept what
  1175.      we have in the delay slot.  We'll fix this up later.  */
  1176.       if (next_trial && GET_CODE (next_trial) == JUMP_INSN
  1177.       && (simplejump_p (next_trial)
  1178.           || GET_CODE (PATTERN (next_trial)) == RETURN))
  1179.     {
  1180.       target_label = JUMP_LABEL (next_trial);
  1181.       if (target_label == 0)
  1182.         target_label = find_end_label ();
  1183.  
  1184.       /* Recompute the flags based on TARGET_LABEL since threading
  1185.          the jump to TARGET_LABEL may change the direction of the
  1186.          jump (which may change the circumstances in which the
  1187.          delay slot is nullified).  */
  1188.       flags = get_jump_flags (insn, target_label);
  1189.       if (eligible_for_annul_true (insn, 0, trial, flags))
  1190.         reorg_redirect_jump (insn, target_label);
  1191.     }
  1192.  
  1193.       INSN_ANNULLED_BRANCH_P (insn) = 1;
  1194.     }
  1195.  
  1196.   return delay_list;
  1197. }
  1198. #endif
  1199.  
  1200.  
  1201. /*  Encode and return branch direction and prediction information for
  1202.     INSN assuming it will jump to LABEL.
  1203.  
  1204.     Non conditional branches return no direction information and
  1205.     are predicted as very likely taken.  */
  1206. static int
  1207. get_jump_flags (insn, label)
  1208.      rtx insn, label;
  1209. {
  1210.   int flags;
  1211.  
  1212.   /* get_jump_flags can be passed any insn with delay slots, these may
  1213.      be INSNs, CALL_INSNs, or JUMP_INSNs.  Only JUMP_INSNs have branch
  1214.      direction information, and only if they are conditional jumps.
  1215.  
  1216.      If LABEL is zero, then there is no way to determine the branch
  1217.      direction.  */
  1218.   if (GET_CODE (insn) == JUMP_INSN
  1219.       && (condjump_p (insn) || condjump_in_parallel_p (insn))
  1220.       && INSN_UID (insn) <= max_uid
  1221.       && label != 0
  1222.       && INSN_UID (label) <= max_uid)
  1223.     flags 
  1224.       = (uid_to_ruid[INSN_UID (label)] > uid_to_ruid[INSN_UID (insn)])
  1225.      ? ATTR_FLAG_forward : ATTR_FLAG_backward;
  1226.   /* No valid direction information.  */
  1227.   else
  1228.     flags = 0;
  1229.   
  1230.   /* If insn is a conditional branch call mostly_true_jump to get
  1231.      determine the branch prediction.  
  1232.  
  1233.      Non conditional branches are predicted as very likely taken.  */
  1234.   if (GET_CODE (insn) == JUMP_INSN
  1235.       && (condjump_p (insn) || condjump_in_parallel_p (insn)))
  1236.     {
  1237.       int prediction;
  1238.  
  1239.       prediction = mostly_true_jump (insn, get_branch_condition (insn, label));
  1240.       switch (prediction)
  1241.     {
  1242.       case 2:
  1243.         flags |= (ATTR_FLAG_very_likely | ATTR_FLAG_likely);
  1244.         break;
  1245.       case 1:
  1246.         flags |= ATTR_FLAG_likely;
  1247.         break;
  1248.       case 0:
  1249.         flags |= ATTR_FLAG_unlikely;
  1250.         break;
  1251.       case -1:
  1252.         flags |= (ATTR_FLAG_very_unlikely | ATTR_FLAG_unlikely);
  1253.         break;
  1254.  
  1255.       default:
  1256.         abort();
  1257.     }
  1258.     }
  1259.   else
  1260.     flags |= (ATTR_FLAG_very_likely | ATTR_FLAG_likely);
  1261.  
  1262.   return flags;
  1263. }
  1264.  
  1265. /* Return 1 if INSN is a destination that will be branched to rarely (the
  1266.    return point of a function); return 2 if DEST will be branched to very
  1267.    rarely (a call to a function that doesn't return).  Otherwise,
  1268.    return 0.  */
  1269.  
  1270. static int
  1271. rare_destination (insn)
  1272.      rtx insn;
  1273. {
  1274.   int jump_count = 0;
  1275.   rtx next;
  1276.  
  1277.   for (; insn; insn = next)
  1278.     {
  1279.       if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
  1280.     insn = XVECEXP (PATTERN (insn), 0, 0);
  1281.  
  1282.       next = NEXT_INSN (insn);
  1283.  
  1284.       switch (GET_CODE (insn))
  1285.     {
  1286.     case CODE_LABEL:
  1287.       return 0;
  1288.     case BARRIER:
  1289.       /* A BARRIER can either be after a JUMP_INSN or a CALL_INSN.  We 
  1290.          don't scan past JUMP_INSNs, so any barrier we find here must
  1291.          have been after a CALL_INSN and hence mean the call doesn't
  1292.          return.  */
  1293.       return 2;
  1294.     case JUMP_INSN:
  1295.       if (GET_CODE (PATTERN (insn)) == RETURN)
  1296.         return 1;
  1297.       else if (simplejump_p (insn)
  1298.            && jump_count++ < 10)
  1299.         next = JUMP_LABEL (insn);
  1300.       else
  1301.         return 0;
  1302.     }
  1303.     }
  1304.  
  1305.   /* If we got here it means we hit the end of the function.  So this
  1306.      is an unlikely destination.  */
  1307.  
  1308.   return 1;
  1309. }
  1310.  
  1311. /* Return truth value of the statement that this branch
  1312.    is mostly taken.  If we think that the branch is extremely likely
  1313.    to be taken, we return 2.  If the branch is slightly more likely to be
  1314.    taken, return 1.  If the branch is slightly less likely to be taken,
  1315.    return 0 and if the branch is highly unlikely to be taken, return -1.
  1316.  
  1317.    CONDITION, if non-zero, is the condition that JUMP_INSN is testing.  */
  1318.  
  1319. static int
  1320. mostly_true_jump (jump_insn, condition)
  1321.      rtx jump_insn, condition;
  1322. {
  1323.   rtx target_label = JUMP_LABEL (jump_insn);
  1324.   rtx insn;
  1325.   int rare_dest = rare_destination (target_label);
  1326.   int rare_fallthrough = rare_destination (NEXT_INSN (jump_insn));
  1327.  
  1328.   /* If this is a branch outside a loop, it is highly unlikely.  */
  1329.   if (GET_CODE (PATTERN (jump_insn)) == SET
  1330.       && GET_CODE (SET_SRC (PATTERN (jump_insn))) == IF_THEN_ELSE
  1331.       && ((GET_CODE (XEXP (SET_SRC (PATTERN (jump_insn)), 1)) == LABEL_REF
  1332.        && LABEL_OUTSIDE_LOOP_P (XEXP (SET_SRC (PATTERN (jump_insn)), 1)))
  1333.       || (GET_CODE (XEXP (SET_SRC (PATTERN (jump_insn)), 2)) == LABEL_REF
  1334.           && LABEL_OUTSIDE_LOOP_P (XEXP (SET_SRC (PATTERN (jump_insn)), 2)))))
  1335.     return -1;
  1336.  
  1337.   if (target_label)
  1338.     {
  1339.       /* If this is the test of a loop, it is very likely true.  We scan
  1340.      backwards from the target label.  If we find a NOTE_INSN_LOOP_BEG
  1341.      before the next real insn, we assume the branch is to the top of 
  1342.      the loop.  */
  1343.       for (insn = PREV_INSN (target_label);
  1344.        insn && GET_CODE (insn) == NOTE;
  1345.        insn = PREV_INSN (insn))
  1346.     if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
  1347.       return 2;
  1348.  
  1349.       /* If this is a jump to the test of a loop, it is likely true.  We scan
  1350.      forwards from the target label.  If we find a NOTE_INSN_LOOP_VTOP
  1351.      before the next real insn, we assume the branch is to the loop branch
  1352.      test.  */
  1353.       for (insn = NEXT_INSN (target_label);
  1354.        insn && GET_CODE (insn) == NOTE;
  1355.        insn = PREV_INSN (insn))
  1356.     if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_VTOP)
  1357.       return 1;
  1358.     }
  1359.  
  1360.   /* Look at the relative rarities of the fallthough and destination.  If
  1361.      they differ, we can predict the branch that way. */
  1362.  
  1363.   switch (rare_fallthrough - rare_dest)
  1364.     {
  1365.     case -2:
  1366.       return -1;
  1367.     case -1:
  1368.       return 0;
  1369.     case 0:
  1370.       break;
  1371.     case 1:
  1372.       return 1;
  1373.     case 2:
  1374.       return 2;
  1375.     }
  1376.  
  1377.   /* If we couldn't figure out what this jump was, assume it won't be 
  1378.      taken.  This should be rare.  */
  1379.   if (condition == 0)
  1380.     return 0;
  1381.  
  1382.   /* EQ tests are usually false and NE tests are usually true.  Also,
  1383.      most quantities are positive, so we can make the appropriate guesses
  1384.      about signed comparisons against zero.  */
  1385.   switch (GET_CODE (condition))
  1386.     {
  1387.     case CONST_INT:
  1388.       /* Unconditional branch.  */
  1389.       return 1;
  1390.     case EQ:
  1391.       return 0;
  1392.     case NE:
  1393.       return 1;
  1394.     case LE:
  1395.     case LT:
  1396.       if (XEXP (condition, 1) == const0_rtx)
  1397.         return 0;
  1398.       break;
  1399.     case GE:
  1400.     case GT:
  1401.       if (XEXP (condition, 1) == const0_rtx)
  1402.     return 1;
  1403.       break;
  1404.     }
  1405.  
  1406.   /* Predict backward branches usually take, forward branches usually not.  If
  1407.      we don't know whether this is forward or backward, assume the branch
  1408.      will be taken, since most are.  */
  1409.   return (target_label == 0 || INSN_UID (jump_insn) > max_uid
  1410.       || INSN_UID (target_label) > max_uid
  1411.       || (uid_to_ruid[INSN_UID (jump_insn)]
  1412.           > uid_to_ruid[INSN_UID (target_label)]));;
  1413. }
  1414.  
  1415. /* Return the condition under which INSN will branch to TARGET.  If TARGET
  1416.    is zero, return the condition under which INSN will return.  If INSN is
  1417.    an unconditional branch, return const_true_rtx.  If INSN isn't a simple
  1418.    type of jump, or it doesn't go to TARGET, return 0.  */
  1419.  
  1420. static rtx
  1421. get_branch_condition (insn, target)
  1422.      rtx insn;
  1423.      rtx target;
  1424. {
  1425.   rtx pat = PATTERN (insn);
  1426.   rtx src;
  1427.   
  1428.   if (condjump_in_parallel_p (insn))
  1429.     pat = XVECEXP (pat, 0, 0);
  1430.  
  1431.   if (GET_CODE (pat) == RETURN)
  1432.     return target == 0 ? const_true_rtx : 0;
  1433.  
  1434.   else if (GET_CODE (pat) != SET || SET_DEST (pat) != pc_rtx)
  1435.     return 0;
  1436.  
  1437.   src = SET_SRC (pat);
  1438.   if (GET_CODE (src) == LABEL_REF && XEXP (src, 0) == target)
  1439.     return const_true_rtx;
  1440.  
  1441.   else if (GET_CODE (src) == IF_THEN_ELSE
  1442.        && ((target == 0 && GET_CODE (XEXP (src, 1)) == RETURN)
  1443.            || (GET_CODE (XEXP (src, 1)) == LABEL_REF
  1444.            && XEXP (XEXP (src, 1), 0) == target))
  1445.        && XEXP (src, 2) == pc_rtx)
  1446.     return XEXP (src, 0);
  1447.  
  1448.   else if (GET_CODE (src) == IF_THEN_ELSE
  1449.        && ((target == 0 && GET_CODE (XEXP (src, 2)) == RETURN)
  1450.            || (GET_CODE (XEXP (src, 2)) == LABEL_REF
  1451.            && XEXP (XEXP (src, 2), 0) == target))
  1452.        && XEXP (src, 1) == pc_rtx)
  1453.     return gen_rtx (reverse_condition (GET_CODE (XEXP (src, 0))),
  1454.             GET_MODE (XEXP (src, 0)),
  1455.             XEXP (XEXP (src, 0), 0), XEXP (XEXP (src, 0), 1));
  1456.  
  1457.   return 0;
  1458. }
  1459.  
  1460. /* Return non-zero if CONDITION is more strict than the condition of
  1461.    INSN, i.e., if INSN will always branch if CONDITION is true.  */
  1462.  
  1463. static int
  1464. condition_dominates_p (condition, insn)
  1465.      rtx condition;
  1466.      rtx insn;
  1467. {
  1468.   rtx other_condition = get_branch_condition (insn, JUMP_LABEL (insn));
  1469.   enum rtx_code code = GET_CODE (condition);
  1470.   enum rtx_code other_code;
  1471.  
  1472.   if (rtx_equal_p (condition, other_condition)
  1473.       || other_condition == const_true_rtx)
  1474.     return 1;
  1475.  
  1476.   else if (condition == const_true_rtx || other_condition == 0)
  1477.     return 0;
  1478.  
  1479.   other_code = GET_CODE (other_condition);
  1480.   if (GET_RTX_LENGTH (code) != 2 || GET_RTX_LENGTH (other_code) != 2
  1481.       || ! rtx_equal_p (XEXP (condition, 0), XEXP (other_condition, 0))
  1482.       || ! rtx_equal_p (XEXP (condition, 1), XEXP (other_condition, 1)))
  1483.     return 0;
  1484.  
  1485.   return comparison_dominates_p (code, other_code);
  1486. }
  1487.  
  1488. /* Return non-zero if redirecting JUMP to NEWLABEL does not invalidate
  1489.    any insns already in the delay slot of JUMP.  */
  1490.  
  1491. static int
  1492. redirect_with_delay_slots_safe_p (jump, newlabel, seq)
  1493.      rtx jump, newlabel, seq;
  1494. {
  1495.   int flags, slots, i;
  1496.   rtx pat = PATTERN (seq);
  1497.  
  1498.   /* Make sure all the delay slots of this jump would still
  1499.      be valid after threading the jump.  If they are still
  1500.      valid, then return non-zero.  */
  1501.  
  1502.   flags = get_jump_flags (jump, newlabel);
  1503.   for (i = 1; i < XVECLEN (pat, 0); i++)
  1504.     if (! (
  1505. #ifdef ANNUL_IFFALSE_SLOTS
  1506.        (INSN_ANNULLED_BRANCH_P (jump)
  1507.         && INSN_FROM_TARGET_P (XVECEXP (pat, 0, i)))
  1508.        ? eligible_for_annul_false (jump, i - 1,
  1509.                        XVECEXP (pat, 0, i), flags) :
  1510. #endif
  1511. #ifdef ANNUL_IFTRUE_SLOTS
  1512.        (INSN_ANNULLED_BRANCH_P (jump)
  1513.         && ! INSN_FROM_TARGET_P (XVECEXP (pat, 0, i)))
  1514.        ? eligible_for_annul_true (jump, i - 1,
  1515.                       XVECEXP (pat, 0, i), flags) :
  1516. #endif
  1517.        eligible_for_delay (jump, i -1, XVECEXP (pat, 0, i), flags)))
  1518.       break;
  1519.  
  1520.   return (i == XVECLEN (pat, 0));
  1521. }
  1522.  
  1523. /* Return non-zero if redirecting JUMP to NEWLABEL does not invalidate
  1524.    any insns we wish to place in the delay slot of JUMP.  */
  1525.  
  1526. static int
  1527. redirect_with_delay_list_safe_p (jump, newlabel, delay_list)
  1528.      rtx jump, newlabel, delay_list;
  1529. {
  1530.   int flags, i;
  1531.   rtx li;
  1532.  
  1533.   /* Make sure all the insns in DELAY_LIST would still be
  1534.      valid after threading the jump.  If they are still
  1535.      valid, then return non-zero.  */
  1536.  
  1537.   flags = get_jump_flags (jump, newlabel);
  1538.   for (li = delay_list, i = 0; li; li = XEXP (li, 1), i++)
  1539.     if (! (
  1540. #ifdef ANNUL_IFFALSE_SLOTS
  1541.        (INSN_ANNULLED_BRANCH_P (jump)
  1542.         && INSN_FROM_TARGET_P (XEXP (li, 0)))
  1543.        ? eligible_for_annul_false (jump, i, XEXP (li, 0), flags) :
  1544. #endif
  1545. #ifdef ANNUL_IFTRUE_SLOTS
  1546.        (INSN_ANNULLED_BRANCH_P (jump)
  1547.         && ! INSN_FROM_TARGET_P (XEXP (li, 0)))
  1548.        ? eligible_for_annul_true (jump, i, XEXP (li, 0), flags) :
  1549. #endif
  1550.        eligible_for_delay (jump, i, XEXP (li, 0), flags)))
  1551.       break;
  1552.  
  1553.   return (li == NULL);
  1554. }
  1555.  
  1556.  
  1557. /* INSN branches to an insn whose pattern SEQ is a SEQUENCE.  Given that
  1558.    the condition tested by INSN is CONDITION and the resources shown in
  1559.    OTHER_NEEDED are needed after INSN, see whether INSN can take all the insns
  1560.    from SEQ's delay list, in addition to whatever insns it may execute
  1561.    (in DELAY_LIST).   SETS and NEEDED are denote resources already set and
  1562.    needed while searching for delay slot insns.  Return the concatenated
  1563.    delay list if possible, otherwise, return 0.
  1564.  
  1565.    SLOTS_TO_FILL is the total number of slots required by INSN, and
  1566.    PSLOTS_FILLED points to the number filled so far (also the number of
  1567.    insns in DELAY_LIST).  It is updated with the number that have been
  1568.    filled from the SEQUENCE, if any.
  1569.  
  1570.    PANNUL_P points to a non-zero value if we already know that we need
  1571.    to annul INSN.  If this routine determines that annulling is needed,
  1572.    it may set that value non-zero.
  1573.  
  1574.    PNEW_THREAD points to a location that is to receive the place at which
  1575.    execution should continue.  */
  1576.  
  1577. static rtx
  1578. steal_delay_list_from_target (insn, condition, seq, delay_list,
  1579.                   sets, needed, other_needed,
  1580.                   slots_to_fill, pslots_filled, pannul_p,
  1581.                   pnew_thread)
  1582.      rtx insn, condition;
  1583.      rtx seq;
  1584.      rtx delay_list;
  1585.      struct resources *sets, *needed, *other_needed;
  1586.      int slots_to_fill;
  1587.      int *pslots_filled;
  1588.      int *pannul_p;
  1589.      rtx *pnew_thread;
  1590. {
  1591.   rtx temp;
  1592.   int slots_remaining = slots_to_fill - *pslots_filled;
  1593.   int total_slots_filled = *pslots_filled;
  1594.   rtx new_delay_list = 0;
  1595.   int must_annul = *pannul_p;
  1596.   int i;
  1597.  
  1598.   /* We can't do anything if there are more delay slots in SEQ than we
  1599.      can handle, or if we don't know that it will be a taken branch.
  1600.  
  1601.      We know that it will be a taken branch if it is either an unconditional
  1602.      branch or a conditional branch with a stricter branch condition.  */
  1603.  
  1604.   if (XVECLEN (seq, 0) - 1 > slots_remaining
  1605.       || ! condition_dominates_p (condition, XVECEXP (seq, 0, 0)))
  1606.     return delay_list;
  1607.  
  1608.   for (i = 1; i < XVECLEN (seq, 0); i++)
  1609.     {
  1610.       rtx trial = XVECEXP (seq, 0, i);
  1611.       int flags;
  1612.  
  1613.       if (insn_references_resource_p (trial, sets, 0)
  1614.       || insn_sets_resource_p (trial, needed, 0)
  1615.       || insn_sets_resource_p (trial, sets, 0)
  1616. #ifdef HAVE_cc0
  1617.       /* If TRIAL sets CC0, we can't copy it, so we can't steal this
  1618.          delay list.  */
  1619.       || find_reg_note (trial, REG_CC_USER, NULL_RTX)
  1620. #endif
  1621.       /* If TRIAL is from the fallthrough code of an annulled branch insn
  1622.          in SEQ, we cannot use it.  */
  1623.       || (INSN_ANNULLED_BRANCH_P (XVECEXP (seq, 0, 0))
  1624.           && ! INSN_FROM_TARGET_P (trial)))
  1625.     return delay_list;
  1626.  
  1627.       /* If this insn was already done (usually in a previous delay slot),
  1628.      pretend we put it in our delay slot.  */
  1629.       if (redundant_insn_p (trial, insn, new_delay_list))
  1630.     continue;
  1631.  
  1632.       /* We will end up re-vectoring this branch, so compute flags
  1633.      based on jumping to the new label.  */
  1634.       flags = get_jump_flags (insn, JUMP_LABEL (XVECEXP (seq, 0, 0)));
  1635.  
  1636.       if (! must_annul
  1637.       && ((condition == const_true_rtx
  1638.            || (! insn_sets_resource_p (trial, other_needed, 0)
  1639.            && ! may_trap_p (PATTERN (trial)))))
  1640.       ? eligible_for_delay (insn, total_slots_filled, trial, flags)
  1641.       : (must_annul = 1,
  1642.          eligible_for_annul_false (insn, total_slots_filled, trial, flags)))
  1643.     {
  1644.       temp = copy_rtx (trial);
  1645.       INSN_FROM_TARGET_P (temp) = 1;
  1646.       new_delay_list = add_to_delay_list (temp, new_delay_list);
  1647.       total_slots_filled++;
  1648.  
  1649.       if (--slots_remaining == 0)
  1650.         break;
  1651.     }
  1652.       else
  1653.     return delay_list;
  1654.     }
  1655.  
  1656.   /* Show the place to which we will be branching.  */
  1657.   *pnew_thread = next_active_insn (JUMP_LABEL (XVECEXP (seq, 0, 0)));
  1658.  
  1659.   /* Add any new insns to the delay list and update the count of the
  1660.      number of slots filled.  */
  1661.   *pslots_filled = total_slots_filled;
  1662.   *pannul_p = must_annul;
  1663.  
  1664.   if (delay_list == 0)
  1665.     return new_delay_list;
  1666.  
  1667.   for (temp = new_delay_list; temp; temp = XEXP (temp, 1))
  1668.     delay_list = add_to_delay_list (XEXP (temp, 0), delay_list);
  1669.  
  1670.   return delay_list;
  1671. }
  1672.  
  1673. /* Similar to steal_delay_list_from_target except that SEQ is on the 
  1674.    fallthrough path of INSN.  Here we only do something if the delay insn
  1675.    of SEQ is an unconditional branch.  In that case we steal its delay slot
  1676.    for INSN since unconditional branches are much easier to fill.  */
  1677.  
  1678. static rtx
  1679. steal_delay_list_from_fallthrough (insn, condition, seq, 
  1680.                    delay_list, sets, needed, other_needed,
  1681.                    slots_to_fill, pslots_filled, pannul_p)
  1682.      rtx insn, condition;
  1683.      rtx seq;
  1684.      rtx delay_list;
  1685.      struct resources *sets, *needed, *other_needed;
  1686.      int slots_to_fill;
  1687.      int *pslots_filled;
  1688.      int *pannul_p;
  1689. {
  1690.   int i;
  1691.   int flags;
  1692.  
  1693.   flags = get_jump_flags (insn, JUMP_LABEL (insn));
  1694.  
  1695.   /* We can't do anything if SEQ's delay insn isn't an
  1696.      unconditional branch.  */
  1697.  
  1698.   if (! simplejump_p (XVECEXP (seq, 0, 0))
  1699.       && GET_CODE (PATTERN (XVECEXP (seq, 0, 0))) != RETURN)
  1700.     return delay_list;
  1701.  
  1702.   for (i = 1; i < XVECLEN (seq, 0); i++)
  1703.     {
  1704.       rtx trial = XVECEXP (seq, 0, i);
  1705.  
  1706.       /* If TRIAL sets CC0, stealing it will move it too far from the use
  1707.      of CC0.  */
  1708.       if (insn_references_resource_p (trial, sets, 0)
  1709.       || insn_sets_resource_p (trial, needed, 0)
  1710.       || insn_sets_resource_p (trial, sets, 0)
  1711. #ifdef HAVE_cc0
  1712.       || sets_cc0_p (PATTERN (trial))
  1713. #endif
  1714.       )
  1715.  
  1716.     break;
  1717.  
  1718.       /* If this insn was already done, we don't need it.  */
  1719.       if (redundant_insn_p (trial, insn, delay_list))
  1720.     {
  1721.       delete_from_delay_slot (trial);
  1722.       continue;
  1723.     }
  1724.  
  1725.       if (! *pannul_p
  1726.       && ((condition == const_true_rtx
  1727.            || (! insn_sets_resource_p (trial, other_needed, 0)
  1728.            && ! may_trap_p (PATTERN (trial)))))
  1729.       ? eligible_for_delay (insn, *pslots_filled, trial, flags)
  1730.       : (*pannul_p = 1,
  1731.          eligible_for_annul_true (insn, *pslots_filled, trial, flags)))
  1732.     {
  1733.       delete_from_delay_slot (trial);
  1734.       delay_list = add_to_delay_list (trial, delay_list);
  1735.  
  1736.       if (++(*pslots_filled) == slots_to_fill)
  1737.         break;
  1738.     }
  1739.       else
  1740.     break;
  1741.     }
  1742.  
  1743.   return delay_list;
  1744. }
  1745.  
  1746. /* Try merging insns starting at THREAD which match exactly the insns in
  1747.    INSN's delay list.
  1748.  
  1749.    If all insns were matched and the insn was previously annulling, the
  1750.    annul bit will be cleared.
  1751.  
  1752.    For each insn that is merged, if the branch is or will be non-annulling,
  1753.    we delete the merged insn.  */
  1754.  
  1755. static void
  1756. try_merge_delay_insns (insn, thread)
  1757.      rtx insn, thread;
  1758. {
  1759.   rtx trial, next_trial;
  1760.   rtx delay_insn = XVECEXP (PATTERN (insn), 0, 0);
  1761.   int annul_p = INSN_ANNULLED_BRANCH_P (delay_insn);
  1762.   int slot_number = 1;
  1763.   int num_slots = XVECLEN (PATTERN (insn), 0);
  1764.   rtx next_to_match = XVECEXP (PATTERN (insn), 0, slot_number);
  1765.   struct resources set, needed;
  1766.   rtx merged_insns = 0;
  1767.   int i;
  1768.   int flags;
  1769.  
  1770.   flags = get_jump_flags (delay_insn, JUMP_LABEL (delay_insn));
  1771.  
  1772.   CLEAR_RESOURCE (&needed);
  1773.   CLEAR_RESOURCE (&set);
  1774.  
  1775.   /* If this is not an annulling branch, take into account anything needed in
  1776.      NEXT_TO_MATCH.  This prevents two increments from being incorrectly
  1777.      folded into one.  If we are annulling, this would be the correct
  1778.      thing to do.  (The alternative, looking at things set in NEXT_TO_MATCH
  1779.      will essentially disable this optimization.  This method is somewhat of
  1780.      a kludge, but I don't see a better way.)  */
  1781.   if (! annul_p)
  1782.     mark_referenced_resources (next_to_match, &needed, 1);
  1783.  
  1784.   for (trial = thread; !stop_search_p (trial, 1); trial = next_trial)
  1785.     {
  1786.       rtx pat = PATTERN (trial);
  1787.       rtx oldtrial = trial;
  1788.  
  1789.       next_trial = next_nonnote_insn (trial);
  1790.  
  1791.       /* TRIAL must be a CALL_INSN or INSN.  Skip USE and CLOBBER.  */
  1792.       if (GET_CODE (trial) == INSN
  1793.       && (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER))
  1794.     continue;
  1795.  
  1796.       if (GET_CODE (next_to_match) == GET_CODE (trial)
  1797. #ifdef HAVE_cc0
  1798.       /* We can't share an insn that sets cc0.  */
  1799.       && ! sets_cc0_p (pat)
  1800. #endif
  1801.       && ! insn_references_resource_p (trial, &set, 1)
  1802.       && ! insn_sets_resource_p (trial, &set, 1)
  1803.       && ! insn_sets_resource_p (trial, &needed, 1)
  1804.       && (trial = try_split (pat, trial, 0)) != 0
  1805.       /* Update next_trial, in case try_split succeeded.  */
  1806.       && (next_trial = next_nonnote_insn (trial))
  1807.       /* Likewise THREAD.  */
  1808.       && (thread = oldtrial == thread ? trial : thread)
  1809.       && rtx_equal_p (PATTERN (next_to_match), PATTERN (trial))
  1810.       /* Have to test this condition if annul condition is different
  1811.          from (and less restrictive than) non-annulling one.  */
  1812.       && eligible_for_delay (delay_insn, slot_number - 1, trial, flags))
  1813.     {
  1814.  
  1815.       if (! annul_p)
  1816.         {
  1817.           update_block (trial, thread);
  1818.           if (trial == thread)
  1819.         thread = next_active_insn (thread);
  1820.  
  1821.           delete_insn (trial);
  1822.           INSN_FROM_TARGET_P (next_to_match) = 0;
  1823.         }
  1824.       else
  1825.         merged_insns = gen_rtx (INSN_LIST, VOIDmode, trial, merged_insns);
  1826.  
  1827.       if (++slot_number == num_slots)
  1828.         break;
  1829.  
  1830.       next_to_match = XVECEXP (PATTERN (insn), 0, slot_number);
  1831.       if (! annul_p)
  1832.         mark_referenced_resources (next_to_match, &needed, 1);
  1833.     }
  1834.  
  1835.       mark_set_resources (trial, &set, 0, 1);
  1836.       mark_referenced_resources (trial, &needed, 1);
  1837.     }
  1838.  
  1839.   /* See if we stopped on a filled insn.  If we did, try to see if its
  1840.      delay slots match.  */
  1841.   if (slot_number != num_slots
  1842.       && trial && GET_CODE (trial) == INSN
  1843.       && GET_CODE (PATTERN (trial)) == SEQUENCE
  1844.       && ! INSN_ANNULLED_BRANCH_P (XVECEXP (PATTERN (trial), 0, 0)))
  1845.     {
  1846.       rtx pat = PATTERN (trial);
  1847.       rtx filled_insn = XVECEXP (pat, 0, 0);
  1848.  
  1849.       /* Account for resources set/needed by the filled insn.  */
  1850.       mark_set_resources (filled_insn, &set, 0, 1);
  1851.       mark_referenced_resources (filled_insn, &needed, 1);
  1852.  
  1853.       for (i = 1; i < XVECLEN (pat, 0); i++)
  1854.     {
  1855.       rtx dtrial = XVECEXP (pat, 0, i);
  1856.  
  1857.       if (! insn_references_resource_p (dtrial, &set, 1)
  1858.           && ! insn_sets_resource_p (dtrial, &set, 1)
  1859.           && ! insn_sets_resource_p (dtrial, &needed, 1)
  1860. #ifdef HAVE_cc0
  1861.           && ! sets_cc0_p (PATTERN (dtrial))
  1862. #endif
  1863.           && rtx_equal_p (PATTERN (next_to_match), PATTERN (dtrial))
  1864.           && eligible_for_delay (delay_insn, slot_number - 1, dtrial, flags))
  1865.         {
  1866.           if (! annul_p)
  1867.         {
  1868.           update_block (dtrial, thread);
  1869.           delete_from_delay_slot (dtrial);
  1870.           INSN_FROM_TARGET_P (next_to_match) = 0;
  1871.         }
  1872.           else
  1873.         merged_insns = gen_rtx (INSN_LIST, SImode, dtrial,
  1874.                     merged_insns);
  1875.  
  1876.           if (++slot_number == num_slots)
  1877.         break;
  1878.  
  1879.           next_to_match = XVECEXP (PATTERN (insn), 0, slot_number);
  1880.         }
  1881.     }
  1882.     }
  1883.  
  1884.   /* If all insns in the delay slot have been matched and we were previously
  1885.      annulling the branch, we need not any more.  In that case delete all the
  1886.      merged insns.  Also clear the INSN_FROM_TARGET_P bit of each insn the
  1887.      the delay list so that we know that it isn't only being used at the
  1888.      target.  */
  1889.   if (slot_number == num_slots && annul_p)
  1890.     {
  1891.       for (; merged_insns; merged_insns = XEXP (merged_insns, 1))
  1892.     {
  1893.       if (GET_MODE (merged_insns) == SImode)
  1894.         {
  1895.           update_block (XEXP (merged_insns, 0), thread);
  1896.           delete_from_delay_slot (XEXP (merged_insns, 0));
  1897.         }
  1898.       else
  1899.         {
  1900.           update_block (XEXP (merged_insns, 0), thread);
  1901.           delete_insn (XEXP (merged_insns, 0));
  1902.         }
  1903.     }
  1904.  
  1905.       INSN_ANNULLED_BRANCH_P (delay_insn) = 0;
  1906.  
  1907.       for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
  1908.     INSN_FROM_TARGET_P (XVECEXP (PATTERN (insn), 0, i)) = 0;
  1909.     }
  1910. }
  1911.  
  1912. /* See if INSN is redundant with an insn in front of TARGET.  Often this
  1913.    is called when INSN is a candidate for a delay slot of TARGET.
  1914.    DELAY_LIST are insns that will be placed in delay slots of TARGET in front
  1915.    of INSN.  Often INSN will be redundant with an insn in a delay slot of
  1916.    some previous insn.  This happens when we have a series of branches to the
  1917.    same label; in that case the first insn at the target might want to go
  1918.    into each of the delay slots.
  1919.  
  1920.    If we are not careful, this routine can take up a significant fraction
  1921.    of the total compilation time (4%), but only wins rarely.  Hence we
  1922.    speed this routine up by making two passes.  The first pass goes back
  1923.    until it hits a label and sees if it find an insn with an identical
  1924.    pattern.  Only in this (relatively rare) event does it check for
  1925.    data conflicts.
  1926.  
  1927.    We do not split insns we encounter.  This could cause us not to find a
  1928.    redundant insn, but the cost of splitting seems greater than the possible
  1929.    gain in rare cases.  */
  1930.  
  1931. static rtx
  1932. redundant_insn_p (insn, target, delay_list)
  1933.      rtx insn;
  1934.      rtx target;
  1935.      rtx delay_list;
  1936. {
  1937.   rtx target_main = target;
  1938.   rtx ipat = PATTERN (insn);
  1939.   rtx trial, pat;
  1940.   struct resources needed, set;
  1941.   int i;
  1942.  
  1943.   /* Scan backwards looking for a match.  */
  1944.   for (trial = PREV_INSN (target); trial; trial = PREV_INSN (trial))
  1945.     {
  1946.       if (GET_CODE (trial) == CODE_LABEL)
  1947.     return 0;
  1948.  
  1949.       if (GET_RTX_CLASS (GET_CODE (trial)) != 'i')
  1950.     continue;
  1951.  
  1952.       pat = PATTERN (trial);
  1953.       if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
  1954.     continue;
  1955.  
  1956.       if (GET_CODE (pat) == SEQUENCE)
  1957.     {
  1958.       /* Stop for a CALL and its delay slots because it is difficult to
  1959.          track its resource needs correctly.  */
  1960.       if (GET_CODE (XVECEXP (pat, 0, 0)) == CALL_INSN)
  1961.         return 0;
  1962.  
  1963.       /* Stop for an INSN or JUMP_INSN with delayed effects and its delay
  1964.          slots because it is difficult to track its resource needs 
  1965.          correctly.  */
  1966.  
  1967. #ifdef INSN_SETS_ARE_DELAYED
  1968.       if (INSN_SETS_ARE_DELAYED (XVECEXP (pat, 0, 0)))
  1969.         return 0; 
  1970. #endif
  1971.  
  1972. #ifdef INSN_REFERENCES_ARE_DELAYED
  1973.       if (INSN_REFERENCES_ARE_DELAYED (XVECEXP (pat, 0, 0)))
  1974.         return 0; 
  1975. #endif
  1976.  
  1977.       /* See if any of the insns in the delay slot match, updating
  1978.          resource requirements as we go.  */
  1979.       for (i = XVECLEN (pat, 0) - 1; i > 0; i--)
  1980.         if (GET_CODE (XVECEXP (pat, 0, i)) == GET_CODE (insn)
  1981.         && rtx_equal_p (PATTERN (XVECEXP (pat, 0, i)), ipat))
  1982.           break;
  1983.  
  1984.       /* If found a match, exit this loop early.  */
  1985.       if (i > 0)
  1986.         break;
  1987.     }
  1988.  
  1989.       else if (GET_CODE (trial) == GET_CODE (insn) && rtx_equal_p (pat, ipat))
  1990.     break;
  1991.     }
  1992.  
  1993.   /* If we didn't find an insn that matches, return 0.  */
  1994.   if (trial == 0)
  1995.     return 0;
  1996.  
  1997.   /* See what resources this insn sets and needs.  If they overlap, or
  1998.      if this insn references CC0, it can't be redundant.  */
  1999.  
  2000.   CLEAR_RESOURCE (&needed);
  2001.   CLEAR_RESOURCE (&set);
  2002.   mark_set_resources (insn, &set, 0, 1);
  2003.   mark_referenced_resources (insn, &needed, 1);
  2004.  
  2005.   /* If TARGET is a SEQUENCE, get the main insn.  */
  2006.   if (GET_CODE (target) == INSN && GET_CODE (PATTERN (target)) == SEQUENCE)
  2007.     target_main = XVECEXP (PATTERN (target), 0, 0);
  2008.  
  2009.   if (resource_conflicts_p (&needed, &set)
  2010. #ifdef HAVE_cc0
  2011.       || reg_mentioned_p (cc0_rtx, ipat)
  2012. #endif
  2013.       /* The insn requiring the delay may not set anything needed or set by
  2014.      INSN.  */
  2015.       || insn_sets_resource_p (target_main, &needed, 1)
  2016.       || insn_sets_resource_p (target_main, &set, 1))
  2017.     return 0;
  2018.  
  2019.   /* Insns we pass may not set either NEEDED or SET, so merge them for
  2020.      simpler tests.  */
  2021.   needed.memory |= set.memory;
  2022.   needed.unch_memory |= set.unch_memory;
  2023.   IOR_HARD_REG_SET (needed.regs, set.regs);
  2024.  
  2025.   /* This insn isn't redundant if it conflicts with an insn that either is
  2026.      or will be in a delay slot of TARGET.  */
  2027.  
  2028.   while (delay_list)
  2029.     {
  2030.       if (insn_sets_resource_p (XEXP (delay_list, 0), &needed, 1))
  2031.     return 0;
  2032.       delay_list = XEXP (delay_list, 1);
  2033.     }
  2034.  
  2035.   if (GET_CODE (target) == INSN && GET_CODE (PATTERN (target)) == SEQUENCE)
  2036.     for (i = 1; i < XVECLEN (PATTERN (target), 0); i++)
  2037.       if (insn_sets_resource_p (XVECEXP (PATTERN (target), 0, i), &needed, 1))
  2038.     return 0;
  2039.  
  2040.   /* Scan backwards until we reach a label or an insn that uses something
  2041.      INSN sets or sets something insn uses or sets.  */
  2042.  
  2043.   for (trial = PREV_INSN (target);
  2044.        trial && GET_CODE (trial) != CODE_LABEL;
  2045.        trial = PREV_INSN (trial))
  2046.     {
  2047.       if (GET_CODE (trial) != INSN && GET_CODE (trial) != CALL_INSN
  2048.       && GET_CODE (trial) != JUMP_INSN)
  2049.     continue;
  2050.  
  2051.       pat = PATTERN (trial);
  2052.       if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
  2053.     continue;
  2054.  
  2055.       if (GET_CODE (pat) == SEQUENCE)
  2056.     {
  2057.       /* If this is a CALL_INSN and its delay slots, it is hard to track
  2058.          the resource needs properly, so give up.  */
  2059.       if (GET_CODE (XVECEXP (pat, 0, 0)) == CALL_INSN)
  2060.         return 0;
  2061.  
  2062.       /* If this this is an INSN or JUMP_INSN with delayed effects, it
  2063.          is hard to track the resource needs properly, so give up.  */
  2064.  
  2065. #ifdef INSN_SETS_ARE_DELAYED
  2066.       if (INSN_SETS_ARE_DELAYED (XVECEXP (pat, 0, 0)))
  2067.         return 0; 
  2068. #endif
  2069.  
  2070. #ifdef INSN_REFERENCES_ARE_DELAYED
  2071.       if (INSN_REFERENCES_ARE_DELAYED (XVECEXP (pat, 0, 0)))
  2072.         return 0; 
  2073. #endif
  2074.  
  2075.       /* See if any of the insns in the delay slot match, updating
  2076.          resource requirements as we go.  */
  2077.       for (i = XVECLEN (pat, 0) - 1; i > 0; i--)
  2078.         {
  2079.           rtx candidate = XVECEXP (pat, 0, i);
  2080.  
  2081.           /* If an insn will be annulled if the branch is false, it isn't
  2082.          considered as a possible duplicate insn.  */
  2083.           if (rtx_equal_p (PATTERN (candidate), ipat)
  2084.           && ! (INSN_ANNULLED_BRANCH_P (XVECEXP (pat, 0, 0))
  2085.             && INSN_FROM_TARGET_P (candidate)))
  2086.         {
  2087.           /* Show that this insn will be used in the sequel.  */
  2088.           INSN_FROM_TARGET_P (candidate) = 0;
  2089.           return candidate;
  2090.         }
  2091.  
  2092.           /* Unless this is an annulled insn from the target of a branch,
  2093.          we must stop if it sets anything needed or set by INSN.  */
  2094.           if ((! INSN_ANNULLED_BRANCH_P (XVECEXP (pat, 0, 0))
  2095.            || ! INSN_FROM_TARGET_P (candidate))
  2096.           && insn_sets_resource_p (candidate, &needed, 1))
  2097.         return 0;
  2098.         }
  2099.  
  2100.  
  2101.       /* If the insn requiring the delay slot conflicts with INSN, we 
  2102.          must stop.  */
  2103.       if (insn_sets_resource_p (XVECEXP (pat, 0, 0), &needed, 1))
  2104.         return 0;
  2105.     }
  2106.       else
  2107.     {
  2108.       /* See if TRIAL is the same as INSN.  */
  2109.       pat = PATTERN (trial);
  2110.       if (rtx_equal_p (pat, ipat))
  2111.         return trial;
  2112.  
  2113.       /* Can't go any further if TRIAL conflicts with INSN.  */
  2114.       if (insn_sets_resource_p (trial, &needed, 1))
  2115.         return 0;
  2116.     }
  2117.     }
  2118.  
  2119.   return 0;
  2120. }
  2121.  
  2122. /* Return 1 if THREAD can only be executed in one way.  If LABEL is non-zero,
  2123.    it is the target of the branch insn being scanned.  If ALLOW_FALLTHROUGH
  2124.    is non-zero, we are allowed to fall into this thread; otherwise, we are
  2125.    not.
  2126.  
  2127.    If LABEL is used more than one or we pass a label other than LABEL before
  2128.    finding an active insn, we do not own this thread.  */
  2129.  
  2130. static int
  2131. own_thread_p (thread, label, allow_fallthrough)
  2132.      rtx thread;
  2133.      rtx label;
  2134.      int allow_fallthrough;
  2135. {
  2136.   rtx active_insn;
  2137.   rtx insn;
  2138.  
  2139.   /* We don't own the function end.  */
  2140.   if (thread == 0)
  2141.     return 0;
  2142.  
  2143.   /* Get the first active insn, or THREAD, if it is an active insn.  */
  2144.   active_insn = next_active_insn (PREV_INSN (thread));
  2145.  
  2146.   for (insn = thread; insn != active_insn; insn = NEXT_INSN (insn))
  2147.     if (GET_CODE (insn) == CODE_LABEL
  2148.     && (insn != label || LABEL_NUSES (insn) != 1))
  2149.       return 0;
  2150.  
  2151.   if (allow_fallthrough)
  2152.     return 1;
  2153.  
  2154.   /* Ensure that we reach a BARRIER before any insn or label.  */
  2155.   for (insn = prev_nonnote_insn (thread);
  2156.        insn == 0 || GET_CODE (insn) != BARRIER;
  2157.        insn = prev_nonnote_insn (insn))
  2158.     if (insn == 0
  2159.     || GET_CODE (insn) == CODE_LABEL
  2160.     || (GET_CODE (insn) == INSN
  2161.         && GET_CODE (PATTERN (insn)) != USE
  2162.         && GET_CODE (PATTERN (insn)) != CLOBBER))
  2163.       return 0;
  2164.  
  2165.   return 1;
  2166. }
  2167.  
  2168. /* Find the number of the basic block that starts closest to INSN.  Return -1
  2169.    if we couldn't find such a basic block.  */
  2170.  
  2171. static int
  2172. find_basic_block (insn)
  2173.      rtx insn;
  2174. {
  2175.   int i;
  2176.  
  2177.   /* Scan backwards to the previous BARRIER.  Then see if we can find a
  2178.      label that starts a basic block.  Return the basic block number.  */
  2179.  
  2180.   for (insn = prev_nonnote_insn (insn);
  2181.        insn && GET_CODE (insn) != BARRIER;
  2182.        insn = prev_nonnote_insn (insn))
  2183.     ;
  2184.  
  2185.   /* The start of the function is basic block zero.  */
  2186.   if (insn == 0)
  2187.     return 0;
  2188.  
  2189.   /* See if any of the upcoming CODE_LABELs start a basic block.  If we reach
  2190.      anything other than a CODE_LABEL or note, we can't find this code.  */
  2191.   for (insn = next_nonnote_insn (insn);
  2192.        insn && GET_CODE (insn) == CODE_LABEL;
  2193.        insn = next_nonnote_insn (insn))
  2194.     {
  2195.       for (i = 0; i < n_basic_blocks; i++)
  2196.     if (insn == basic_block_head[i])
  2197.       return i;
  2198.     }
  2199.  
  2200.   return -1;
  2201. }
  2202.  
  2203. /* Called when INSN is being moved from a location near the target of a jump.
  2204.    We leave a marker of the form (use (INSN)) immediately in front
  2205.    of WHERE for mark_target_live_regs.  These markers will be deleted when
  2206.    reorg finishes.
  2207.  
  2208.    We used to try to update the live status of registers if WHERE is at
  2209.    the start of a basic block, but that can't work since we may remove a
  2210.    BARRIER in relax_delay_slots.  */
  2211.  
  2212. static void
  2213. update_block (insn, where)
  2214.      rtx insn;
  2215.      rtx where;
  2216. {
  2217.   int b;
  2218.  
  2219.   /* Ignore if this was in a delay slot and it came from the target of 
  2220.      a branch.  */
  2221.   if (INSN_FROM_TARGET_P (insn))
  2222.     return;
  2223.  
  2224.   emit_insn_before (gen_rtx (USE, VOIDmode, insn), where);
  2225.  
  2226.   /* INSN might be making a value live in a block where it didn't use to
  2227.      be.  So recompute liveness information for this block.  */
  2228.  
  2229.   b = find_basic_block (insn);
  2230.   if (b != -1)
  2231.     bb_ticks[b]++;
  2232. }
  2233.  
  2234. /* Similar to REDIRECT_JUMP except that we update the BB_TICKS entry for
  2235.    the basic block containing the jump.  */
  2236.  
  2237. static int
  2238. reorg_redirect_jump (jump, nlabel)
  2239.      rtx jump;
  2240.      rtx nlabel;
  2241. {
  2242.   int b = find_basic_block (jump);
  2243.  
  2244.   if (b != -1)
  2245.     bb_ticks[b]++;
  2246.  
  2247.   return redirect_jump (jump, nlabel);
  2248. }
  2249.  
  2250. /* Called when INSN is being moved forward into a delay slot of DELAYED_INSN.
  2251.    We check every instruction between INSN and DELAYED_INSN for REG_DEAD notes
  2252.    that reference values used in INSN.  If we find one, then we move the
  2253.    REG_DEAD note to INSN.
  2254.  
  2255.    This is needed to handle the case where an later insn (after INSN) has a
  2256.    REG_DEAD note for a register used by INSN, and this later insn subsequently
  2257.    gets moved before a CODE_LABEL because it is a redundant insn.  In this
  2258.    case, mark_target_live_regs may be confused into thinking the register
  2259.    is dead because it sees a REG_DEAD note immediately before a CODE_LABEL.  */
  2260.  
  2261. static void
  2262. update_reg_dead_notes (insn, delayed_insn)
  2263.      rtx insn, delayed_insn;
  2264. {
  2265.   rtx p, link, next;
  2266.  
  2267.   for (p = next_nonnote_insn (insn); p != delayed_insn;
  2268.        p = next_nonnote_insn (p))
  2269.     for (link = REG_NOTES (p); link; link = next)
  2270.       {
  2271.     next = XEXP (link, 1);
  2272.  
  2273.     if (REG_NOTE_KIND (link) != REG_DEAD
  2274.         || GET_CODE (XEXP (link, 0)) != REG)
  2275.       continue;
  2276.  
  2277.     if (reg_referenced_p (XEXP (link, 0), PATTERN (insn)))
  2278.       {
  2279.         /* Move the REG_DEAD note from P to INSN.  */
  2280.         remove_note (p, link);
  2281.         XEXP (link, 1) = REG_NOTES (insn);
  2282.         REG_NOTES (insn) = link;
  2283.       }
  2284.       }
  2285. }
  2286.  
  2287. /* Delete any REG_UNUSED notes that exist on INSN but not on REDUNDANT_INSN.
  2288.  
  2289.    This handles the case of udivmodXi4 instructions which optimize their
  2290.    output depending on whether any REG_UNUSED notes are present.
  2291.    we must make sure that INSN calculates as many results as REDUNDANT_INSN
  2292.    does.  */
  2293.  
  2294. static void
  2295. update_reg_unused_notes (insn, redundant_insn)
  2296.      rtx insn, redundant_insn;
  2297. {
  2298.   rtx p, link, next;
  2299.  
  2300.   for (link = REG_NOTES (insn); link; link = next)
  2301.     {
  2302.       next = XEXP (link, 1);
  2303.  
  2304.       if (REG_NOTE_KIND (link) != REG_UNUSED
  2305.       || GET_CODE (XEXP (link, 0)) != REG)
  2306.     continue;
  2307.  
  2308.       if (! find_regno_note (redundant_insn, REG_UNUSED,
  2309.                  REGNO (XEXP (link, 0))))
  2310.     remove_note (insn, link);
  2311.     }
  2312. }
  2313.  
  2314. /* Marks registers possibly live at the current place being scanned by
  2315.    mark_target_live_regs.  Used only by next two function.    */
  2316.  
  2317. static HARD_REG_SET current_live_regs;
  2318.  
  2319. /* Marks registers for which we have seen a REG_DEAD note but no assignment.
  2320.    Also only used by the next two functions.  */
  2321.  
  2322. static HARD_REG_SET pending_dead_regs;
  2323.  
  2324. /* Utility function called from mark_target_live_regs via note_stores.
  2325.    It deadens any CLOBBERed registers and livens any SET registers.  */
  2326.  
  2327. static void
  2328. update_live_status (dest, x)
  2329.      rtx dest;
  2330.      rtx x;
  2331. {
  2332.   int first_regno, last_regno;
  2333.   int i;
  2334.  
  2335.   if (GET_CODE (dest) != REG
  2336.       && (GET_CODE (dest) != SUBREG || GET_CODE (SUBREG_REG (dest)) != REG))
  2337.     return;
  2338.  
  2339.   if (GET_CODE (dest) == SUBREG)
  2340.     first_regno = REGNO (SUBREG_REG (dest)) + SUBREG_WORD (dest);
  2341.   else
  2342.     first_regno = REGNO (dest);
  2343.  
  2344.   last_regno = first_regno + HARD_REGNO_NREGS (first_regno, GET_MODE (dest));
  2345.  
  2346.   if (GET_CODE (x) == CLOBBER)
  2347.     for (i = first_regno; i < last_regno; i++)
  2348.       CLEAR_HARD_REG_BIT (current_live_regs, i);
  2349.   else
  2350.     for (i = first_regno; i < last_regno; i++)
  2351.       {
  2352.     SET_HARD_REG_BIT (current_live_regs, i);
  2353.     CLEAR_HARD_REG_BIT (pending_dead_regs, i);
  2354.       }
  2355. }
  2356.  
  2357. /* Similar to next_insn, but ignores insns in the delay slots of
  2358.    an annulled branch.  */
  2359.  
  2360. static rtx
  2361. next_insn_no_annul (insn)
  2362.      rtx insn;
  2363. {
  2364.   if (insn)
  2365.     {
  2366.       /* If INSN is an annulled branch, skip any insns from the target
  2367.      of the branch.  */
  2368.       if (INSN_ANNULLED_BRANCH_P (insn)
  2369.       && NEXT_INSN (PREV_INSN (insn)) != insn)
  2370.     while (INSN_FROM_TARGET_P (NEXT_INSN (insn)))
  2371.       insn = NEXT_INSN (insn);
  2372.  
  2373.       insn = NEXT_INSN (insn);
  2374.       if (insn && GET_CODE (insn) == INSN
  2375.       && GET_CODE (PATTERN (insn)) == SEQUENCE)
  2376.     insn = XVECEXP (PATTERN (insn), 0, 0);
  2377.     }
  2378.  
  2379.   return insn;
  2380. }
  2381.  
  2382. /* Set the resources that are live at TARGET.
  2383.  
  2384.    If TARGET is zero, we refer to the end of the current function and can
  2385.    return our precomputed value.
  2386.  
  2387.    Otherwise, we try to find out what is live by consulting the basic block
  2388.    information.  This is tricky, because we must consider the actions of
  2389.    reload and jump optimization, which occur after the basic block information
  2390.    has been computed.
  2391.  
  2392.    Accordingly, we proceed as follows::
  2393.  
  2394.    We find the previous BARRIER and look at all immediately following labels
  2395.    (with no intervening active insns) to see if any of them start a basic
  2396.    block.  If we hit the start of the function first, we use block 0.
  2397.  
  2398.    Once we have found a basic block and a corresponding first insns, we can
  2399.    accurately compute the live status from basic_block_live_regs and
  2400.    reg_renumber.  (By starting at a label following a BARRIER, we are immune
  2401.    to actions taken by reload and jump.)  Then we scan all insns between
  2402.    that point and our target.  For each CLOBBER (or for call-clobbered regs
  2403.    when we pass a CALL_INSN), mark the appropriate registers are dead.  For
  2404.    a SET, mark them as live.
  2405.  
  2406.    We have to be careful when using REG_DEAD notes because they are not
  2407.    updated by such things as find_equiv_reg.  So keep track of registers
  2408.    marked as dead that haven't been assigned to, and mark them dead at the
  2409.    next CODE_LABEL since reload and jump won't propagate values across labels.
  2410.  
  2411.    If we cannot find the start of a basic block (should be a very rare
  2412.    case, if it can happen at all), mark everything as potentially live.
  2413.  
  2414.    Next, scan forward from TARGET looking for things set or clobbered
  2415.    before they are used.  These are not live.
  2416.  
  2417.    Because we can be called many times on the same target, save our results
  2418.    in a hash table indexed by INSN_UID.  */
  2419.  
  2420. static void
  2421. mark_target_live_regs (target, res)
  2422.      rtx target;
  2423.      struct resources *res;
  2424. {
  2425.   int b = -1;
  2426.   int i;
  2427.   struct target_info *tinfo;
  2428.   rtx insn, next;
  2429.   rtx jump_insn = 0;
  2430.   rtx jump_target;
  2431.   HARD_REG_SET scratch;
  2432.   struct resources set, needed;
  2433.   int jump_count = 0;
  2434.  
  2435.   /* Handle end of function.  */
  2436.   if (target == 0)
  2437.     {
  2438.       *res = end_of_function_needs;
  2439.       return;
  2440.     }
  2441.  
  2442.   /* We have to assume memory is needed, but the CC isn't.  */
  2443.   res->memory = 1;
  2444.   res->volatil = res->unch_memory = 0;
  2445.   res->cc = 0;
  2446.  
  2447.   /* See if we have computed this value already.  */
  2448.   for (tinfo = target_hash_table[INSN_UID (target) % TARGET_HASH_PRIME];
  2449.        tinfo; tinfo = tinfo->next)
  2450.     if (tinfo->uid == INSN_UID (target))
  2451.       break;
  2452.  
  2453.   /* Start by getting the basic block number.  If we have saved information,
  2454.      we can get it from there unless the insn at the start of the basic block
  2455.      has been deleted.  */
  2456.   if (tinfo && tinfo->block != -1
  2457.       && ! INSN_DELETED_P (basic_block_head[tinfo->block]))
  2458.     b = tinfo->block;
  2459.  
  2460.   if (b == -1)
  2461.     b = find_basic_block (target);
  2462.  
  2463.   if (tinfo)
  2464.     {
  2465.       /* If the information is up-to-date, use it.  Otherwise, we will
  2466.      update it below.  */
  2467.       if (b == tinfo->block && b != -1 && tinfo->bb_tick == bb_ticks[b])
  2468.     {
  2469.       COPY_HARD_REG_SET (res->regs, tinfo->live_regs);
  2470.       return;
  2471.     }
  2472.     }
  2473.   else
  2474.     {
  2475.       /* Allocate a place to put our results and chain it into the 
  2476.      hash table.  */
  2477.       tinfo = (struct target_info *) oballoc (sizeof (struct target_info));
  2478.       tinfo->uid = INSN_UID (target);
  2479.       tinfo->block = b;
  2480.       tinfo->next = target_hash_table[INSN_UID (target) % TARGET_HASH_PRIME];
  2481.       target_hash_table[INSN_UID (target) % TARGET_HASH_PRIME] = tinfo;
  2482.     }
  2483.  
  2484.   CLEAR_HARD_REG_SET (pending_dead_regs);
  2485.  
  2486.   /* If we found a basic block, get the live registers from it and update
  2487.      them with anything set or killed between its start and the insn before
  2488.      TARGET.  Otherwise, we must assume everything is live.  */
  2489.   if (b != -1)
  2490.     {
  2491.       regset regs_live = basic_block_live_at_start[b];
  2492.       int offset, j;
  2493.       REGSET_ELT_TYPE bit;
  2494.       int regno;
  2495.       rtx start_insn, stop_insn;
  2496.  
  2497.       /* Compute hard regs live at start of block -- this is the real hard regs
  2498.      marked live, plus live pseudo regs that have been renumbered to
  2499.      hard regs.  */
  2500.  
  2501. #ifdef HARD_REG_SET
  2502.       current_live_regs = *regs_live;
  2503. #else
  2504.       COPY_HARD_REG_SET (current_live_regs, regs_live);
  2505. #endif
  2506.  
  2507.       for (offset = 0, i = 0; offset < regset_size; offset++)
  2508.     {
  2509.       if (regs_live[offset] == 0)
  2510.         i += REGSET_ELT_BITS;
  2511.       else
  2512.         for (bit = 1; bit && i < max_regno; bit <<= 1, i++)
  2513.           if ((regs_live[offset] & bit)
  2514.           && (regno = reg_renumber[i]) >= 0)
  2515.         for (j = regno;
  2516.              j < regno + HARD_REGNO_NREGS (regno,
  2517.                            PSEUDO_REGNO_MODE (i));
  2518.              j++)
  2519.           SET_HARD_REG_BIT (current_live_regs, j);
  2520.     }
  2521.  
  2522.       /* Get starting and ending insn, handling the case where each might
  2523.      be a SEQUENCE.  */
  2524.       start_insn = (b == 0 ? get_insns () : basic_block_head[b]);
  2525.       stop_insn = target;
  2526.  
  2527.       if (GET_CODE (start_insn) == INSN
  2528.       && GET_CODE (PATTERN (start_insn)) == SEQUENCE)
  2529.     start_insn = XVECEXP (PATTERN (start_insn), 0, 0);
  2530.  
  2531.       if (GET_CODE (stop_insn) == INSN
  2532.       && GET_CODE (PATTERN (stop_insn)) == SEQUENCE)
  2533.     stop_insn = next_insn (PREV_INSN (stop_insn));
  2534.  
  2535.       for (insn = start_insn; insn != stop_insn;
  2536.        insn = next_insn_no_annul (insn))
  2537.     {
  2538.       rtx link;
  2539.       rtx real_insn = insn;
  2540.  
  2541.       /* If this insn is from the target of a branch, it isn't going to
  2542.          be used in the sequel.  If it is used in both cases, this
  2543.          test will not be true.  */
  2544.       if (INSN_FROM_TARGET_P (insn))
  2545.         continue;
  2546.  
  2547.       /* If this insn is a USE made by update_block, we care about the
  2548.          underlying insn.  */
  2549.       if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == USE
  2550.           && GET_RTX_CLASS (GET_CODE (XEXP (PATTERN (insn), 0))) == 'i')
  2551.           real_insn = XEXP (PATTERN (insn), 0);
  2552.  
  2553.       if (GET_CODE (real_insn) == CALL_INSN)
  2554.         {
  2555.           /* CALL clobbers all call-used regs that aren't fixed except
  2556.          sp, ap, and fp.  Do this before setting the result of the
  2557.          call live.  */
  2558.           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  2559.         if (call_used_regs[i]
  2560.             && i != STACK_POINTER_REGNUM && i != FRAME_POINTER_REGNUM
  2561.             && i != ARG_POINTER_REGNUM
  2562. #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
  2563.             && i != HARD_FRAME_POINTER_REGNUM
  2564. #endif
  2565. #if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
  2566.             && ! (i == ARG_POINTER_REGNUM && fixed_regs[i])
  2567. #endif
  2568. #ifdef PIC_OFFSET_TABLE_REGNUM
  2569.             && ! (i == PIC_OFFSET_TABLE_REGNUM && flag_pic)
  2570. #endif
  2571.             )
  2572.           CLEAR_HARD_REG_BIT (current_live_regs, i);
  2573.  
  2574.           /* A CALL_INSN sets any global register live, since it may
  2575.          have been modified by the call.  */
  2576.           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  2577.         if (global_regs[i])
  2578.           SET_HARD_REG_BIT (current_live_regs, i);
  2579.         }
  2580.  
  2581.       /* Mark anything killed in an insn to be deadened at the next
  2582.          label.  Ignore USE insns; the only REG_DEAD notes will be for
  2583.          parameters.  But they might be early.  A CALL_INSN will usually
  2584.          clobber registers used for parameters.  It isn't worth bothering
  2585.          with the unlikely case when it won't.  */
  2586.       if ((GET_CODE (real_insn) == INSN
  2587.            && GET_CODE (PATTERN (real_insn)) != USE
  2588.            && GET_CODE (PATTERN (real_insn)) != CLOBBER)
  2589.           || GET_CODE (real_insn) == JUMP_INSN
  2590.           || GET_CODE (real_insn) == CALL_INSN)
  2591.         {
  2592.           for (link = REG_NOTES (real_insn); link; link = XEXP (link, 1))
  2593.         if (REG_NOTE_KIND (link) == REG_DEAD
  2594.             && GET_CODE (XEXP (link, 0)) == REG
  2595.             && REGNO (XEXP (link, 0)) < FIRST_PSEUDO_REGISTER)
  2596.           {
  2597.             int first_regno = REGNO (XEXP (link, 0));
  2598.             int last_regno
  2599.               = (first_regno
  2600.              + HARD_REGNO_NREGS (first_regno,
  2601.                          GET_MODE (XEXP (link, 0))));
  2602.              
  2603.             for (i = first_regno; i < last_regno; i++)
  2604.               SET_HARD_REG_BIT (pending_dead_regs, i);
  2605.           }
  2606.  
  2607.           note_stores (PATTERN (real_insn), update_live_status);
  2608.  
  2609.           /* If any registers were unused after this insn, kill them.
  2610.          These notes will always be accurate.  */
  2611.           for (link = REG_NOTES (real_insn); link; link = XEXP (link, 1))
  2612.         if (REG_NOTE_KIND (link) == REG_UNUSED
  2613.             && GET_CODE (XEXP (link, 0)) == REG
  2614.             && REGNO (XEXP (link, 0)) < FIRST_PSEUDO_REGISTER)
  2615.           {
  2616.             int first_regno = REGNO (XEXP (link, 0));
  2617.             int last_regno
  2618.               = (first_regno
  2619.              + HARD_REGNO_NREGS (first_regno,
  2620.                          GET_MODE (XEXP (link, 0))));
  2621.              
  2622.             for (i = first_regno; i < last_regno; i++)
  2623.               CLEAR_HARD_REG_BIT (current_live_regs, i);
  2624.           }
  2625.         }
  2626.  
  2627.       else if (GET_CODE (real_insn) == CODE_LABEL)
  2628.         {
  2629.           /* A label clobbers the pending dead registers since neither
  2630.          reload nor jump will propagate a value across a label.  */
  2631.           AND_COMPL_HARD_REG_SET (current_live_regs, pending_dead_regs);
  2632.           CLEAR_HARD_REG_SET (pending_dead_regs);
  2633.         }
  2634.  
  2635.       /* The beginning of the epilogue corresponds to the end of the
  2636.          RTL chain when there are no epilogue insns.  Certain resources
  2637.          are implicitly required at that point.  */
  2638.       else if (GET_CODE (real_insn) == NOTE
  2639.             && NOTE_LINE_NUMBER (real_insn) == NOTE_INSN_EPILOGUE_BEG)
  2640.         IOR_HARD_REG_SET (current_live_regs, start_of_epilogue_needs.regs);
  2641.     }
  2642.  
  2643.       COPY_HARD_REG_SET (res->regs, current_live_regs);
  2644.       tinfo->block = b;
  2645.       tinfo->bb_tick = bb_ticks[b];
  2646.     }
  2647.   else
  2648.     /* We didn't find the start of a basic block.  Assume everything
  2649.        in use.  This should happen only extremely rarely.  */
  2650.     SET_HARD_REG_SET (res->regs);
  2651.  
  2652.   /* Now step forward from TARGET looking for registers that are set before
  2653.      they are used.  These are dead.  If we pass a label, any pending dead
  2654.      registers that weren't yet used can be made dead.  Stop when we pass a
  2655.      conditional JUMP_INSN; follow the first few unconditional branches.  */
  2656.  
  2657.   CLEAR_RESOURCE (&set);
  2658.   CLEAR_RESOURCE (&needed);
  2659.  
  2660.   for (insn = target; insn; insn = next)
  2661.     {
  2662.       rtx this_jump_insn = insn;
  2663.  
  2664.       next = NEXT_INSN (insn);
  2665.       switch (GET_CODE (insn))
  2666.     {
  2667.     case CODE_LABEL:
  2668.       AND_COMPL_HARD_REG_SET (pending_dead_regs, needed.regs);
  2669.       AND_COMPL_HARD_REG_SET (res->regs, pending_dead_regs);
  2670.       CLEAR_HARD_REG_SET (pending_dead_regs);
  2671.       continue;
  2672.  
  2673.     case BARRIER:
  2674.     case NOTE:
  2675.       continue;
  2676.  
  2677.     case INSN:
  2678.       if (GET_CODE (PATTERN (insn)) == USE)
  2679.         {
  2680.           /* If INSN is a USE made by update_block, we care about the
  2681.          underlying insn.  Any registers set by the underlying insn
  2682.          are live since the insn is being done somewhere else.  */
  2683.           if (GET_RTX_CLASS (GET_CODE (XEXP (PATTERN (insn), 0))) == 'i')
  2684.         mark_set_resources (XEXP (PATTERN (insn), 0), res, 0, 1);
  2685.  
  2686.           /* All other USE insns are to be ignored.  */
  2687.           continue;
  2688.         }
  2689.       else if (GET_CODE (PATTERN (insn)) == CLOBBER)
  2690.         continue;
  2691.       else if (GET_CODE (PATTERN (insn)) == SEQUENCE)
  2692.         {
  2693.           /* An unconditional jump can be used to fill the delay slot
  2694.          of a call, so search for a JUMP_INSN in any position.  */
  2695.           for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
  2696.         {
  2697.           this_jump_insn = XVECEXP (PATTERN (insn), 0, i);
  2698.           if (GET_CODE (this_jump_insn) == JUMP_INSN)
  2699.             break;
  2700.         }
  2701.         }
  2702.     }
  2703.  
  2704.       if (GET_CODE (this_jump_insn) == JUMP_INSN)
  2705.     {
  2706.       if (jump_count++ < 10
  2707.           && (simplejump_p (this_jump_insn)
  2708.           || GET_CODE (PATTERN (this_jump_insn)) == RETURN))
  2709.         {
  2710.           next = next_active_insn (JUMP_LABEL (this_jump_insn));
  2711.           if (jump_insn == 0)
  2712.         {
  2713.           jump_insn = insn;
  2714.           jump_target = JUMP_LABEL (this_jump_insn);
  2715.         }
  2716.         }
  2717.       else
  2718.         break;
  2719.     }
  2720.  
  2721.       mark_referenced_resources (insn, &needed, 1);
  2722.       mark_set_resources (insn, &set, 0, 1);
  2723.  
  2724.       COPY_HARD_REG_SET (scratch, set.regs);
  2725.       AND_COMPL_HARD_REG_SET (scratch, needed.regs);
  2726.       AND_COMPL_HARD_REG_SET (res->regs, scratch);
  2727.     }
  2728.  
  2729.   /* If we hit an unconditional branch, we have another way of finding out
  2730.      what is live: we can see what is live at the branch target and include
  2731.      anything used but not set before the branch.  The only things that are
  2732.      live are those that are live using the above test and the test below.
  2733.  
  2734.      Don't try this if we expired our jump count above, since that would
  2735.      mean there may be an infinite loop in the function being compiled.  */
  2736.  
  2737.   if (jump_insn && jump_count < 10)
  2738.     {
  2739.       struct resources new_resources;
  2740.       rtx stop_insn = next_active_insn (jump_insn);
  2741.  
  2742.       mark_target_live_regs (next_active_insn (jump_target), &new_resources);
  2743.       CLEAR_RESOURCE (&set);
  2744.       CLEAR_RESOURCE (&needed);
  2745.  
  2746.       /* Include JUMP_INSN in the needed registers.  */
  2747.       for (insn = target; insn != stop_insn; insn = next_active_insn (insn))
  2748.     {
  2749.       mark_referenced_resources (insn, &needed, 1);
  2750.  
  2751.       COPY_HARD_REG_SET (scratch, needed.regs);
  2752.       AND_COMPL_HARD_REG_SET (scratch, set.regs);
  2753.       IOR_HARD_REG_SET (new_resources.regs, scratch);
  2754.  
  2755.       mark_set_resources (insn, &set, 0, 1);
  2756.     }
  2757.  
  2758.       AND_HARD_REG_SET (res->regs, new_resources.regs);
  2759.     }
  2760.  
  2761.   COPY_HARD_REG_SET (tinfo->live_regs, res->regs);
  2762. }
  2763.  
  2764. /* Scan a function looking for insns that need a delay slot and find insns to
  2765.    put into the delay slot.
  2766.  
  2767.    NON_JUMPS_P is non-zero if we are to only try to fill non-jump insns (such
  2768.    as calls).  We do these first since we don't want jump insns (that are
  2769.    easier to fill) to get the only insns that could be used for non-jump insns.
  2770.    When it is zero, only try to fill JUMP_INSNs.
  2771.  
  2772.    When slots are filled in this manner, the insns (including the
  2773.    delay_insn) are put together in a SEQUENCE rtx.  In this fashion,
  2774.    it is possible to tell whether a delay slot has really been filled
  2775.    or not.  `final' knows how to deal with this, by communicating
  2776.    through FINAL_SEQUENCE.  */
  2777.  
  2778. static void
  2779. fill_simple_delay_slots (first, non_jumps_p)
  2780.      rtx first;
  2781.      int non_jumps_p;
  2782. {
  2783.   register rtx insn, pat, trial, next_trial;
  2784.   register int i, j;
  2785.   int num_unfilled_slots = unfilled_slots_next - unfilled_slots_base;
  2786.   struct resources needed, set;
  2787.   register int slots_to_fill, slots_filled;
  2788.   rtx delay_list;
  2789.  
  2790.   for (i = 0; i < num_unfilled_slots; i++)
  2791.     {
  2792.       int flags;
  2793.       /* Get the next insn to fill.  If it has already had any slots assigned,
  2794.      we can't do anything with it.  Maybe we'll improve this later.  */
  2795.  
  2796.       insn = unfilled_slots_base[i];
  2797.       if (insn == 0
  2798.       || INSN_DELETED_P (insn)
  2799.       || (GET_CODE (insn) == INSN
  2800.           && GET_CODE (PATTERN (insn)) == SEQUENCE)
  2801.       || (GET_CODE (insn) == JUMP_INSN && non_jumps_p)
  2802.       || (GET_CODE (insn) != JUMP_INSN && ! non_jumps_p))
  2803.     continue;
  2804.      
  2805.       if (GET_CODE (insn) == JUMP_INSN)
  2806.     flags = get_jump_flags (insn, JUMP_LABEL (insn));
  2807.       else
  2808.     flags = get_jump_flags (insn, NULL_RTX);
  2809.       slots_to_fill = num_delay_slots (insn);
  2810.       if (slots_to_fill == 0)
  2811.     abort ();
  2812.  
  2813.       /* This insn needs, or can use, some delay slots.  SLOTS_TO_FILL
  2814.      says how many.  After initialization, first try optimizing
  2815.  
  2816.      call _foo        call _foo
  2817.      nop            add %o7,.-L1,%o7
  2818.      b,a L1
  2819.      nop
  2820.  
  2821.      If this case applies, the delay slot of the call is filled with
  2822.      the unconditional jump.  This is done first to avoid having the
  2823.      delay slot of the call filled in the backward scan.  Also, since
  2824.      the unconditional jump is likely to also have a delay slot, that
  2825.      insn must exist when it is subsequently scanned.
  2826.  
  2827.      This is tried on each insn with delay slots as some machines
  2828.      have insns which perform calls, but are not represented as 
  2829.      CALL_INSNs.  */
  2830.  
  2831.       slots_filled = 0;
  2832.       delay_list = 0;
  2833.  
  2834.       if ((trial = next_active_insn (insn))
  2835.       && GET_CODE (trial) == JUMP_INSN
  2836.       && simplejump_p (trial)
  2837.       && eligible_for_delay (insn, slots_filled, trial, flags)
  2838.       && no_labels_between_p (insn, trial))
  2839.     {
  2840.       slots_filled++;
  2841.       delay_list = add_to_delay_list (trial, delay_list);
  2842.       /* Remove the unconditional jump from consideration for delay slot
  2843.          filling and unthread it.  */
  2844.       if (unfilled_slots_base[i + 1] == trial)
  2845.         unfilled_slots_base[i + 1] = 0;
  2846.       {
  2847.         rtx next = NEXT_INSN (trial);
  2848.         rtx prev = PREV_INSN (trial);
  2849.         if (prev)
  2850.           NEXT_INSN (prev) = next;
  2851.         if (next)
  2852.           PREV_INSN (next) = prev;
  2853.       }
  2854.     }
  2855.  
  2856.       /* Now, scan backwards from the insn to search for a potential
  2857.      delay-slot candidate.  Stop searching when a label or jump is hit.
  2858.  
  2859.      For each candidate, if it is to go into the delay slot (moved
  2860.      forward in execution sequence), it must not need or set any resources
  2861.      that were set by later insns and must not set any resources that
  2862.      are needed for those insns.
  2863.      
  2864.      The delay slot insn itself sets resources unless it is a call
  2865.      (in which case the called routine, not the insn itself, is doing
  2866.      the setting).  */
  2867.  
  2868.       if (slots_filled < slots_to_fill)
  2869.     {
  2870.       CLEAR_RESOURCE (&needed);
  2871.       CLEAR_RESOURCE (&set);
  2872.       mark_set_resources (insn, &set, 0, 0);
  2873.       mark_referenced_resources (insn, &needed, 0);
  2874.  
  2875.       for (trial = prev_nonnote_insn (insn); ! stop_search_p (trial, 1);
  2876.            trial = next_trial)
  2877.         {
  2878.           next_trial = prev_nonnote_insn (trial);
  2879.  
  2880.           /* This must be an INSN or CALL_INSN.  */
  2881.           pat = PATTERN (trial);
  2882.  
  2883.           /* USE and CLOBBER at this level was just for flow; ignore it.  */
  2884.           if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
  2885.         continue;
  2886.  
  2887.           /* Check for resource conflict first, to avoid unnecessary 
  2888.          splitting.  */
  2889.           if (! insn_references_resource_p (trial, &set, 1)
  2890.           && ! insn_sets_resource_p (trial, &set, 1)
  2891.           && ! insn_sets_resource_p (trial, &needed, 1)
  2892. #ifdef HAVE_cc0
  2893.           /* Can't separate set of cc0 from its use.  */
  2894.           && ! (reg_mentioned_p (cc0_rtx, pat)
  2895.             && ! sets_cc0_p (cc0_rtx, pat))
  2896. #endif
  2897.           )
  2898.         {
  2899.           trial = try_split (pat, trial, 1);
  2900.           next_trial = prev_nonnote_insn (trial);
  2901.           if (eligible_for_delay (insn, slots_filled, trial, flags))
  2902.             {
  2903.               /* In this case, we are searching backward, so if we
  2904.              find insns to put on the delay list, we want
  2905.              to put them at the head, rather than the
  2906.              tail, of the list.  */
  2907.  
  2908.               update_reg_dead_notes (trial, insn);
  2909.               delay_list = gen_rtx (INSN_LIST, VOIDmode,
  2910.                         trial, delay_list);
  2911.               update_block (trial, trial);
  2912.               delete_insn (trial);
  2913.               if (slots_to_fill == ++slots_filled)
  2914.             break;
  2915.               continue;
  2916.             }
  2917.         }
  2918.  
  2919.           mark_set_resources (trial, &set, 0, 1);
  2920.           mark_referenced_resources (trial, &needed, 1);
  2921.         }
  2922.     }
  2923.  
  2924.       /* If all needed slots haven't been filled, we come here.  */
  2925.  
  2926.       /* Try to optimize case of jumping around a single insn.  */
  2927. #if defined(ANNUL_IFFALSE_SLOTS) || defined(ANNUL_IFTRUE_SLOTS)
  2928.       if (slots_filled != slots_to_fill
  2929.       && delay_list == 0
  2930.       && GET_CODE (insn) == JUMP_INSN 
  2931.       && (condjump_p (insn) || condjump_in_parallel_p (insn)))
  2932.     {
  2933.       delay_list = optimize_skip (insn);
  2934.       if (delay_list)
  2935.         slots_filled += 1;
  2936.     }
  2937. #endif
  2938.  
  2939.       /* Try to get insns from beyond the insn needing the delay slot.
  2940.      These insns can neither set or reference resources set in insns being
  2941.      skipped, cannot set resources in the insn being skipped, and, if this
  2942.      is a CALL_INSN (or a CALL_INSN is passed), cannot trap (because the
  2943.      call might not return).
  2944.  
  2945.      If this is a conditional jump, see if it merges back to us early
  2946.      enough for us to pick up insns from the merge point.  Don't do
  2947.      this if there is another branch to our label unless we pass all of
  2948.      them.
  2949.  
  2950.      Another similar merge is if we jump to the same place that a
  2951.      later unconditional jump branches to.  In that case, we don't
  2952.      care about the number of uses of our label.  */
  2953.  
  2954.       if (slots_filled != slots_to_fill
  2955.           && (GET_CODE (insn) != JUMP_INSN
  2956.           || ((condjump_p (insn) || condjump_in_parallel_p (insn))
  2957.            && ! simplejump_p (insn)
  2958.            && JUMP_LABEL (insn) != 0)))
  2959.     {
  2960.       rtx target = 0;
  2961.       int maybe_never = 0;
  2962.       int passed_label = 0;
  2963.       int target_uses;
  2964.       struct resources needed_at_jump;
  2965.  
  2966.       CLEAR_RESOURCE (&needed);
  2967.       CLEAR_RESOURCE (&set);
  2968.  
  2969.       if (GET_CODE (insn) == CALL_INSN)
  2970.         {
  2971.           mark_set_resources (insn, &set, 0, 1);
  2972.           mark_referenced_resources (insn, &needed, 1);
  2973.           maybe_never = 1;
  2974.         }
  2975.       else 
  2976.         {
  2977.           mark_set_resources (insn, &set, 0, 1);
  2978.           mark_referenced_resources (insn, &needed, 1);
  2979.           if (GET_CODE (insn) == JUMP_INSN)
  2980.         {
  2981.           /* Get our target and show how many more uses we want to
  2982.              see before we hit the label.  */
  2983.           target = JUMP_LABEL (insn);
  2984.           target_uses = LABEL_NUSES (target) - 1;
  2985.         }
  2986.         
  2987.         }
  2988.  
  2989.       for (trial = next_nonnote_insn (insn); trial; trial = next_trial)
  2990.         {
  2991.           rtx pat, trial_delay;
  2992.  
  2993.           next_trial = next_nonnote_insn (trial);
  2994.  
  2995.           if (GET_CODE (trial) == CODE_LABEL)
  2996.         {
  2997.           passed_label = 1;
  2998.  
  2999.           /* If this is our target, see if we have seen all its uses.
  3000.              If so, indicate we have passed our target and ignore it.
  3001.              All other labels cause us to stop our search.  */
  3002.           if (trial == target && target_uses == 0)
  3003.             {
  3004.               target = 0;
  3005.               continue;
  3006.             }
  3007.           else
  3008.             break;
  3009.         }
  3010.           else if (GET_CODE (trial) == BARRIER)
  3011.         break;
  3012.  
  3013.           /* We must have an INSN, JUMP_INSN, or CALL_INSN.  */
  3014.           pat = PATTERN (trial);
  3015.  
  3016.           /* Stand-alone USE and CLOBBER are just for flow.  */
  3017.           if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
  3018.         continue;
  3019.  
  3020.           /* If this already has filled delay slots, get the insn needing
  3021.          the delay slots.  */
  3022.           if (GET_CODE (pat) == SEQUENCE)
  3023.         trial_delay = XVECEXP (pat, 0, 0);
  3024.           else
  3025.         trial_delay = trial;
  3026.  
  3027.           /* If this is a jump insn to our target, indicate that we have
  3028.          seen another jump to it.  If we aren't handling a conditional
  3029.          jump, stop our search. Otherwise, compute the needs at its
  3030.          target and add them to NEEDED.  */
  3031.           if (GET_CODE (trial_delay) == JUMP_INSN)
  3032.         {
  3033.           if (target == 0)
  3034.             break;
  3035.           else if (JUMP_LABEL (trial_delay) == target)
  3036.             target_uses--;
  3037.           else
  3038.             {
  3039.               mark_target_live_regs
  3040.             (next_active_insn (JUMP_LABEL (trial_delay)),
  3041.              &needed_at_jump);
  3042.               needed.memory |= needed_at_jump.memory;
  3043.               needed.unch_memory |= needed_at_jump.unch_memory;
  3044.               IOR_HARD_REG_SET (needed.regs, needed_at_jump.regs);
  3045.             }
  3046.         }
  3047.  
  3048.           /* See if we have a resource problem before we try to
  3049.          split.   */
  3050.           if (target == 0
  3051.           && GET_CODE (pat) != SEQUENCE
  3052.           && ! insn_references_resource_p (trial, &set, 1)
  3053.           && ! insn_sets_resource_p (trial, &set, 1)
  3054.           && ! insn_sets_resource_p (trial, &needed, 1)
  3055. #ifdef HAVE_cc0
  3056.           && ! (reg_mentioned_p (cc0_rtx, pat) && ! sets_cc0_p (pat))
  3057. #endif
  3058.           && ! (maybe_never && may_trap_p (pat))
  3059.           && (trial = try_split (pat, trial, 0))
  3060.           && eligible_for_delay (insn, slots_filled, trial, flags))
  3061.         {
  3062.           next_trial = next_nonnote_insn (trial);
  3063.           delay_list = add_to_delay_list (trial, delay_list);
  3064.  
  3065. #ifdef HAVE_cc0
  3066.           if (reg_mentioned_p (cc0_rtx, pat))
  3067.             link_cc0_insns (trial);
  3068. #endif
  3069.  
  3070.           if (passed_label)
  3071.             update_block (trial, trial);
  3072.           delete_insn (trial);
  3073.           if (slots_to_fill == ++slots_filled)
  3074.             break;
  3075.           continue;
  3076.         }
  3077.  
  3078.           mark_set_resources (trial, &set, 0, 1);
  3079.           mark_referenced_resources (trial, &needed, 1);
  3080.  
  3081.           /* Ensure we don't put insns between the setting of cc and the
  3082.          comparison by moving a setting of cc into an earlier delay
  3083.          slot since these insns could clobber the condition code.  */
  3084.           set.cc = 1;
  3085.  
  3086.           /* If this is a call or jump, we might not get here.  */
  3087.           if (GET_CODE (trial) == CALL_INSN
  3088.           || GET_CODE (trial) == JUMP_INSN)
  3089.         maybe_never = 1;
  3090.         }
  3091.  
  3092.       /* If there are slots left to fill and our search was stopped by an
  3093.          unconditional branch, try the insn at the branch target.  We can
  3094.          redirect the branch if it works.  */
  3095.       if (slots_to_fill != slots_filled
  3096.           && trial
  3097.           && GET_CODE (trial) == JUMP_INSN
  3098.           && simplejump_p (trial)
  3099.           && (target == 0 || JUMP_LABEL (trial) == target)
  3100.           && (next_trial = next_active_insn (JUMP_LABEL (trial))) != 0
  3101.           && ! (GET_CODE (next_trial) == INSN
  3102.             && GET_CODE (PATTERN (next_trial)) == SEQUENCE)
  3103.           && ! insn_references_resource_p (next_trial, &set, 1)
  3104.           && ! insn_sets_resource_p (next_trial, &set, 1)
  3105.           && ! insn_sets_resource_p (next_trial, &needed, 1)
  3106. #ifdef HAVE_cc0
  3107.           && ! reg_mentioned_p (cc0_rtx, PATTERN (next_trial))
  3108. #endif
  3109.           && ! (maybe_never && may_trap_p (PATTERN (next_trial)))
  3110.           && (next_trial = try_split (PATTERN (next_trial), next_trial, 0))
  3111.           && eligible_for_delay (insn, slots_filled, next_trial, flags))
  3112.         {
  3113.           rtx new_label = next_active_insn (next_trial);
  3114.  
  3115.           if (new_label != 0)
  3116.         new_label = get_label_before (new_label);
  3117.           else
  3118.         new_label = find_end_label ();
  3119.  
  3120.           delay_list 
  3121.         = add_to_delay_list (copy_rtx (next_trial), delay_list);
  3122.           slots_filled++;
  3123.           reorg_redirect_jump (trial, new_label);
  3124.  
  3125.           /* If we merged because we both jumped to the same place,
  3126.          redirect the original insn also.  */
  3127.           if (target)
  3128.         reorg_redirect_jump (insn, new_label);
  3129.         }
  3130.     }
  3131.  
  3132.       if (delay_list)
  3133.     unfilled_slots_base[i]
  3134.       = emit_delay_sequence (insn, delay_list,
  3135.                  slots_filled, slots_to_fill);
  3136.  
  3137.       if (slots_to_fill == slots_filled)
  3138.     unfilled_slots_base[i] = 0;
  3139.  
  3140.       note_delay_statistics (slots_filled, 0);
  3141.     }
  3142.  
  3143. #ifdef DELAY_SLOTS_FOR_EPILOGUE
  3144.   /* See if the epilogue needs any delay slots.  Try to fill them if so.
  3145.      The only thing we can do is scan backwards from the end of the 
  3146.      function.  If we did this in a previous pass, it is incorrect to do it
  3147.      again.  */
  3148.   if (current_function_epilogue_delay_list)
  3149.     return;
  3150.  
  3151.   slots_to_fill = DELAY_SLOTS_FOR_EPILOGUE;
  3152.   if (slots_to_fill == 0)
  3153.     return;
  3154.  
  3155.   slots_filled = 0;
  3156.   needed = end_of_function_needs;
  3157.   CLEAR_RESOURCE (&set);
  3158.  
  3159.   for (trial = get_last_insn (); ! stop_search_p (trial, 1);
  3160.        trial = PREV_INSN (trial))
  3161.     {
  3162.       if (GET_CODE (trial) == NOTE)
  3163.     continue;
  3164.       pat = PATTERN (trial);
  3165.       if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
  3166.     continue;
  3167.  
  3168.       if (! insn_references_resource_p (trial, &set, 1)
  3169.       && ! insn_sets_resource_p (trial, &needed, 1)
  3170. #ifdef HAVE_cc0
  3171.       /* Don't want to mess with cc0 here.  */
  3172.       && ! reg_mentioned_p (cc0_rtx, pat)
  3173. #endif
  3174.       )
  3175.     {
  3176.       trial = try_split (pat, trial, 1);
  3177.       if (ELIGIBLE_FOR_EPILOGUE_DELAY (trial, slots_filled))
  3178.         {
  3179.           /* Here as well we are searching backward, so put the
  3180.          insns we find on the head of the list.  */
  3181.  
  3182.           current_function_epilogue_delay_list
  3183.         = gen_rtx (INSN_LIST, VOIDmode, trial,
  3184.                current_function_epilogue_delay_list);
  3185.           mark_referenced_resources (trial, &end_of_function_needs, 1);
  3186.           update_block (trial, trial);
  3187.           delete_insn (trial);
  3188.  
  3189.           /* Clear deleted bit so final.c will output the insn.  */
  3190.           INSN_DELETED_P (trial) = 0;
  3191.  
  3192.           if (slots_to_fill == ++slots_filled)
  3193.         break;
  3194.           continue;
  3195.         }
  3196.     }
  3197.  
  3198.       mark_set_resources (trial, &set, 0, 1);
  3199.       mark_referenced_resources (trial, &needed, 1);
  3200.     }
  3201.  
  3202.   note_delay_statistics (slots_filled, 0);
  3203. #endif
  3204. }
  3205.  
  3206. /* Try to find insns to place in delay slots.
  3207.  
  3208.    INSN is the jump needing SLOTS_TO_FILL delay slots.  It tests CONDITION
  3209.    or is an unconditional branch if CONDITION is const_true_rtx.
  3210.    *PSLOTS_FILLED is updated with the number of slots that we have filled.
  3211.  
  3212.    THREAD is a flow-of-control, either the insns to be executed if the
  3213.    branch is true or if the branch is false, THREAD_IF_TRUE says which.
  3214.  
  3215.    OPPOSITE_THREAD is the thread in the opposite direction.  It is used
  3216.    to see if any potential delay slot insns set things needed there.
  3217.  
  3218.    LIKELY is non-zero if it is extremely likely that the branch will be
  3219.    taken and THREAD_IF_TRUE is set.  This is used for the branch at the
  3220.    end of a loop back up to the top.
  3221.  
  3222.    OWN_THREAD and OWN_OPPOSITE_THREAD are true if we are the only user of the
  3223.    thread.  I.e., it is the fallthrough code of our jump or the target of the
  3224.    jump when we are the only jump going there.
  3225.  
  3226.    If OWN_THREAD is false, it must be the "true" thread of a jump.  In that
  3227.    case, we can only take insns from the head of the thread for our delay
  3228.    slot.  We then adjust the jump to point after the insns we have taken.  */
  3229.  
  3230. static rtx
  3231. fill_slots_from_thread (insn, condition, thread, opposite_thread, likely,
  3232.             thread_if_true, own_thread, own_opposite_thread,
  3233.             slots_to_fill, pslots_filled)
  3234.      rtx insn;
  3235.      rtx condition;
  3236.      rtx thread, opposite_thread;
  3237.      int likely;
  3238.      int thread_if_true;
  3239.      int own_thread, own_opposite_thread;
  3240.      int slots_to_fill, *pslots_filled;
  3241. {
  3242.   rtx new_thread;
  3243.   rtx delay_list = 0;
  3244.   struct resources opposite_needed, set, needed;
  3245.   rtx trial;
  3246.   int lose = 0;
  3247.   int must_annul = 0;
  3248.   int flags;
  3249.  
  3250.   /* Validate our arguments.  */
  3251.   if ((condition == const_true_rtx && ! thread_if_true)
  3252.       || (! own_thread && ! thread_if_true))
  3253.     abort ();
  3254.  
  3255.   flags = get_jump_flags (insn, JUMP_LABEL (insn));
  3256.  
  3257.   /* If our thread is the end of subroutine, we can't get any delay
  3258.      insns from that.  */
  3259.   if (thread == 0)
  3260.     return 0;
  3261.  
  3262.   /* If this is an unconditional branch, nothing is needed at the
  3263.      opposite thread.  Otherwise, compute what is needed there.  */
  3264.   if (condition == const_true_rtx)
  3265.     CLEAR_RESOURCE (&opposite_needed);
  3266.   else
  3267.     mark_target_live_regs (opposite_thread, &opposite_needed);
  3268.  
  3269.   /* If the insn at THREAD can be split, do it here to avoid having to
  3270.      update THREAD and NEW_THREAD if it is done in the loop below.  Also
  3271.      initialize NEW_THREAD.  */
  3272.  
  3273.   new_thread = thread = try_split (PATTERN (thread), thread, 0);
  3274.  
  3275.   /* Scan insns at THREAD.  We are looking for an insn that can be removed
  3276.      from THREAD (it neither sets nor references resources that were set
  3277.      ahead of it and it doesn't set anything needs by the insns ahead of
  3278.      it) and that either can be placed in an annulling insn or aren't
  3279.      needed at OPPOSITE_THREAD.  */
  3280.  
  3281.   CLEAR_RESOURCE (&needed);
  3282.   CLEAR_RESOURCE (&set);
  3283.  
  3284.   /* If we do not own this thread, we must stop as soon as we find
  3285.      something that we can't put in a delay slot, since all we can do
  3286.      is branch into THREAD at a later point.  Therefore, labels stop
  3287.      the search if this is not the `true' thread.  */
  3288.  
  3289.   for (trial = thread;
  3290.        ! stop_search_p (trial, ! thread_if_true) && (! lose || own_thread);
  3291.        trial = next_nonnote_insn (trial))
  3292.     {
  3293.       rtx pat, old_trial;
  3294.  
  3295.       /* If we have passed a label, we no longer own this thread.  */
  3296.       if (GET_CODE (trial) == CODE_LABEL)
  3297.     {
  3298.       own_thread = 0;
  3299.       continue;
  3300.     }
  3301.  
  3302.       pat = PATTERN (trial);
  3303.       if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
  3304.     continue;
  3305.  
  3306.       /* If TRIAL conflicts with the insns ahead of it, we lose.  Also,
  3307.      don't separate or copy insns that set and use CC0.  */
  3308.       if (! insn_references_resource_p (trial, &set, 1)
  3309.       && ! insn_sets_resource_p (trial, &set, 1)
  3310.       && ! insn_sets_resource_p (trial, &needed, 1)
  3311. #ifdef HAVE_cc0
  3312.       && ! (reg_mentioned_p (cc0_rtx, pat)
  3313.         && (! own_thread || ! sets_cc0_p (pat)))
  3314. #endif
  3315.       )
  3316.     {
  3317.       rtx prior_insn;
  3318.  
  3319.       /* If TRIAL is redundant with some insn before INSN, we don't
  3320.          actually need to add it to the delay list; we can merely pretend
  3321.          we did.  */
  3322.       if (prior_insn = redundant_insn_p (trial, insn, delay_list))
  3323.         {
  3324.           if (own_thread)
  3325.         {
  3326.           update_block (trial, thread);
  3327.           if (trial == thread)
  3328.             {
  3329.               thread = next_active_insn (thread);
  3330.               if (new_thread == trial)
  3331.             new_thread = thread;
  3332.             }
  3333.  
  3334.           delete_insn (trial);
  3335.         }
  3336.           else
  3337.         {
  3338.           update_reg_unused_notes (prior_insn, trial);
  3339.           new_thread = next_active_insn (trial);
  3340.         }
  3341.  
  3342.           continue;
  3343.         }
  3344.  
  3345.       /* There are two ways we can win:  If TRIAL doesn't set anything
  3346.          needed at the opposite thread and can't trap, or if it can
  3347.          go into an annulled delay slot.  */
  3348.       if (condition == const_true_rtx
  3349.           || (! insn_sets_resource_p (trial, &opposite_needed, 1)
  3350.           && ! may_trap_p (pat)))
  3351.         {
  3352.           old_trial = trial;
  3353.           trial = try_split (pat, trial, 0);
  3354.           if (new_thread == old_trial)
  3355.         new_thread = trial;
  3356.           if (thread == old_trial)
  3357.         thread = trial;
  3358.           pat = PATTERN (trial);
  3359.           if (eligible_for_delay (insn, *pslots_filled, trial, flags))
  3360.         goto winner;
  3361.         }
  3362.       else if (0
  3363. #ifdef ANNUL_IFTRUE_SLOTS
  3364.            || ! thread_if_true
  3365. #endif
  3366. #ifdef ANNUL_IFFALSE_SLOTS
  3367.            || thread_if_true
  3368. #endif
  3369.            )
  3370.         {
  3371.           old_trial = trial;
  3372.           trial = try_split (pat, trial, 0);
  3373.           if (new_thread == old_trial)
  3374.         new_thread = trial;
  3375.           pat = PATTERN (trial);
  3376.           if ((thread_if_true
  3377.            ? eligible_for_annul_false (insn, *pslots_filled, trial, flags)
  3378.            : eligible_for_annul_true (insn, *pslots_filled, trial, flags)))
  3379.         {
  3380.           rtx temp;
  3381.  
  3382.           must_annul = 1;
  3383.         winner:
  3384.  
  3385. #ifdef HAVE_cc0
  3386.           if (reg_mentioned_p (cc0_rtx, pat))
  3387.             link_cc0_insns (trial);
  3388. #endif
  3389.  
  3390.           /* If we own this thread, delete the insn.  If this is the
  3391.              destination of a branch, show that a basic block status
  3392.              may have been updated.  In any case, mark the new
  3393.              starting point of this thread.  */
  3394.           if (own_thread)
  3395.             {
  3396.               update_block (trial, thread);
  3397.               delete_insn (trial);
  3398.             }
  3399.           else
  3400.             new_thread = next_active_insn (trial);
  3401.  
  3402.           temp = own_thread ? trial : copy_rtx (trial);
  3403.           if (thread_if_true)
  3404.             INSN_FROM_TARGET_P (temp) = 1;
  3405.  
  3406.           delay_list = add_to_delay_list (temp, delay_list);
  3407.  
  3408.           if (slots_to_fill == ++(*pslots_filled))
  3409.             {
  3410.               /* Even though we have filled all the slots, we
  3411.              may be branching to a location that has a
  3412.              redundant insn.  Skip any if so.  */
  3413.               while (new_thread && ! own_thread
  3414.                  && ! insn_sets_resource_p (new_thread, &set, 1)
  3415.                  && ! insn_sets_resource_p (new_thread, &needed, 1)
  3416.                  && ! insn_references_resource_p (new_thread,
  3417.                                   &set, 1)
  3418.                  && redundant_insn_p (new_thread, insn,
  3419.                           delay_list))
  3420.             new_thread = next_active_insn (new_thread);
  3421.               break;
  3422.             }
  3423.  
  3424.           continue;
  3425.         }
  3426.         }
  3427.     }
  3428.  
  3429.       /* This insn can't go into a delay slot.  */
  3430.       lose = 1;
  3431.       mark_set_resources (trial, &set, 0, 1);
  3432.       mark_referenced_resources (trial, &needed, 1);
  3433.  
  3434.       /* Ensure we don't put insns between the setting of cc and the comparison
  3435.      by moving a setting of cc into an earlier delay slot since these insns
  3436.      could clobber the condition code.  */
  3437.       set.cc = 1;
  3438.  
  3439.       /* If this insn is a register-register copy and the next insn has
  3440.      a use of our destination, change it to use our source.  That way,
  3441.      it will become a candidate for our delay slot the next time
  3442.      through this loop.  This case occurs commonly in loops that
  3443.      scan a list.
  3444.  
  3445.      We could check for more complex cases than those tested below,
  3446.      but it doesn't seem worth it.  It might also be a good idea to try
  3447.      to swap the two insns.  That might do better.
  3448.  
  3449.      We can't do this if the next insn modifies our destination, because
  3450.      that would make the replacement into the insn invalid.  We also can't
  3451.      do this if it modifies our source, because it might be an earlyclobber
  3452.      operand.  This latter test also prevents updating the contents of
  3453.      a PRE_INC.  */
  3454.  
  3455.       if (GET_CODE (trial) == INSN && GET_CODE (pat) == SET
  3456.       && GET_CODE (SET_SRC (pat)) == REG
  3457.       && GET_CODE (SET_DEST (pat)) == REG)
  3458.     {
  3459.       rtx next = next_nonnote_insn (trial);
  3460.  
  3461.       if (next && GET_CODE (next) == INSN
  3462.           && GET_CODE (PATTERN (next)) != USE
  3463.           && ! reg_set_p (SET_DEST (pat), next)
  3464.           && ! reg_set_p (SET_SRC (pat), next)
  3465.           && reg_referenced_p (SET_DEST (pat), PATTERN (next)))
  3466.         validate_replace_rtx (SET_DEST (pat), SET_SRC (pat), next);
  3467.     }
  3468.     }
  3469.  
  3470.   /* If we stopped on a branch insn that has delay slots, see if we can
  3471.      steal some of the insns in those slots.  */
  3472.   if (trial && GET_CODE (trial) == INSN
  3473.       && GET_CODE (PATTERN (trial)) == SEQUENCE
  3474.       && GET_CODE (XVECEXP (PATTERN (trial), 0, 0)) == JUMP_INSN)
  3475.     {
  3476.       /* If this is the `true' thread, we will want to follow the jump,
  3477.      so we can only do this if we have taken everything up to here.  */
  3478.       if (thread_if_true && trial == new_thread)
  3479.     delay_list
  3480.       = steal_delay_list_from_target (insn, condition, PATTERN (trial),
  3481.                       delay_list, &set, &needed,
  3482.                       &opposite_needed, slots_to_fill,
  3483.                       pslots_filled, &must_annul,
  3484.                       &new_thread);
  3485.       else if (! thread_if_true)
  3486.     delay_list
  3487.       = steal_delay_list_from_fallthrough (insn, condition,
  3488.                            PATTERN (trial),
  3489.                            delay_list, &set, &needed,
  3490.                            &opposite_needed, slots_to_fill,
  3491.                            pslots_filled, &must_annul);
  3492.     }
  3493.  
  3494.   /* If we haven't found anything for this delay slot and it is very
  3495.      likely that the branch will be taken, see if the insn at our target
  3496.      increments or decrements a register with an increment that does not
  3497.      depend on the destination register.  If so, try to place the opposite
  3498.      arithmetic insn after the jump insn and put the arithmetic insn in the
  3499.      delay slot.  If we can't do this, return.  */
  3500.   if (delay_list == 0 && likely && new_thread && GET_CODE (new_thread) == INSN)
  3501.     {
  3502.       rtx pat = PATTERN (new_thread);
  3503.       rtx dest;
  3504.       rtx src;
  3505.  
  3506.       trial = new_thread;
  3507.       pat = PATTERN (trial);
  3508.  
  3509.       if (GET_CODE (trial) != INSN || GET_CODE (pat) != SET
  3510.       || ! eligible_for_delay (insn, 0, trial, flags))
  3511.     return 0;
  3512.  
  3513.       dest = SET_DEST (pat), src = SET_SRC (pat);
  3514.       if ((GET_CODE (src) == PLUS || GET_CODE (src) == MINUS)
  3515.       && rtx_equal_p (XEXP (src, 0), dest)
  3516.       && ! reg_overlap_mentioned_p (dest, XEXP (src, 1)))
  3517.     {
  3518.       rtx other = XEXP (src, 1);
  3519.       rtx new_arith;
  3520.       rtx ninsn;
  3521.  
  3522.       /* If this is a constant adjustment, use the same code with
  3523.          the negated constant.  Otherwise, reverse the sense of the
  3524.          arithmetic.  */
  3525.       if (GET_CODE (other) == CONST_INT)
  3526.         new_arith = gen_rtx (GET_CODE (src), GET_MODE (src), dest,
  3527.                  negate_rtx (GET_MODE (src), other));
  3528.       else
  3529.         new_arith = gen_rtx (GET_CODE (src) == PLUS ? MINUS : PLUS,
  3530.                  GET_MODE (src), dest, other);
  3531.  
  3532.       ninsn = emit_insn_after (gen_rtx (SET, VOIDmode, dest, new_arith),
  3533.                    insn);
  3534.  
  3535.       if (recog_memoized (ninsn) < 0
  3536.           || (insn_extract (ninsn),
  3537.           ! constrain_operands (INSN_CODE (ninsn), 1)))
  3538.         {
  3539.           delete_insn (ninsn);
  3540.           return 0;
  3541.         }
  3542.  
  3543.       if (own_thread)
  3544.         {
  3545.           update_block (trial, thread);
  3546.           delete_insn (trial);
  3547.         }
  3548.       else
  3549.         new_thread = next_active_insn (trial);
  3550.  
  3551.       ninsn = own_thread ? trial : copy_rtx (trial);
  3552.       if (thread_if_true)
  3553.         INSN_FROM_TARGET_P (ninsn) = 1;
  3554.  
  3555.       delay_list = add_to_delay_list (ninsn, NULL_RTX);
  3556.       (*pslots_filled)++;
  3557.     }
  3558.     }
  3559.  
  3560.   if (delay_list && must_annul)
  3561.     INSN_ANNULLED_BRANCH_P (insn) = 1;
  3562.  
  3563.   /* If we are to branch into the middle of this thread, find an appropriate
  3564.      label or make a new one if none, and redirect INSN to it.  If we hit the
  3565.      end of the function, use the end-of-function label.  */
  3566.   if (new_thread != thread)
  3567.     {
  3568.       rtx label;
  3569.  
  3570.       if (! thread_if_true)
  3571.     abort ();
  3572.  
  3573.       if (new_thread && GET_CODE (new_thread) == JUMP_INSN
  3574.       && (simplejump_p (new_thread)
  3575.           || GET_CODE (PATTERN (new_thread)) == RETURN)
  3576.       && redirect_with_delay_list_safe_p (insn,
  3577.                           JUMP_LABEL (new_thread),
  3578.                           delay_list))
  3579.     new_thread = follow_jumps (JUMP_LABEL (new_thread));
  3580.  
  3581.       if (new_thread == 0)
  3582.     label = find_end_label ();
  3583.       else if (GET_CODE (new_thread) == CODE_LABEL)
  3584.     label = new_thread;
  3585.       else
  3586.     label = get_label_before (new_thread);
  3587.  
  3588.       reorg_redirect_jump (insn, label);
  3589.     }
  3590.  
  3591.   return delay_list;
  3592. }
  3593.  
  3594. /* Make another attempt to find insns to place in delay slots.
  3595.  
  3596.    We previously looked for insns located in front of the delay insn
  3597.    and, for non-jump delay insns, located behind the delay insn.
  3598.  
  3599.    Here only try to schedule jump insns and try to move insns from either
  3600.    the target or the following insns into the delay slot.  If annulling is
  3601.    supported, we will be likely to do this.  Otherwise, we can do this only
  3602.    if safe.  */
  3603.  
  3604. static void
  3605. fill_eager_delay_slots (first)
  3606.      rtx first;
  3607. {
  3608.   register rtx insn;
  3609.   register int i;
  3610.   int num_unfilled_slots = unfilled_slots_next - unfilled_slots_base;
  3611.  
  3612.   for (i = 0; i < num_unfilled_slots; i++)
  3613.     {
  3614.       rtx condition;
  3615.       rtx target_label, insn_at_target, fallthrough_insn;
  3616.       rtx delay_list = 0;
  3617.       int own_target;
  3618.       int own_fallthrough;
  3619.       int prediction, slots_to_fill, slots_filled;
  3620.  
  3621.       insn = unfilled_slots_base[i];
  3622.       if (insn == 0
  3623.       || INSN_DELETED_P (insn)
  3624.       || GET_CODE (insn) != JUMP_INSN
  3625.       || ! (condjump_p (insn) || condjump_in_parallel_p (insn)))
  3626.     continue;
  3627.  
  3628.       slots_to_fill = num_delay_slots (insn);
  3629.       if (slots_to_fill == 0)
  3630.     abort ();
  3631.  
  3632.       slots_filled = 0;
  3633.       target_label = JUMP_LABEL (insn);
  3634.       condition = get_branch_condition (insn, target_label);
  3635.  
  3636.       if (condition == 0)
  3637.     continue;
  3638.  
  3639.       /* Get the next active fallthough and target insns and see if we own
  3640.      them.  Then see whether the branch is likely true.  We don't need
  3641.      to do a lot of this for unconditional branches.  */
  3642.  
  3643.       insn_at_target = next_active_insn (target_label);
  3644.       own_target = own_thread_p (target_label, target_label, 0);
  3645.  
  3646.       if (condition == const_true_rtx)
  3647.     {
  3648.       own_fallthrough = 0;
  3649.       fallthrough_insn = 0;
  3650.       prediction = 2;
  3651.     }
  3652.       else
  3653.     {
  3654.       fallthrough_insn = next_active_insn (insn);
  3655.       own_fallthrough = own_thread_p (NEXT_INSN (insn), NULL_RTX, 1);
  3656.       prediction = mostly_true_jump (insn, condition);
  3657.     }
  3658.  
  3659.       /* If this insn is expected to branch, first try to get insns from our
  3660.      target, then our fallthrough insns.  If it is not, expected to branch,
  3661.      try the other order.  */
  3662.  
  3663.       if (prediction > 0)
  3664.     {
  3665.       delay_list
  3666.         = fill_slots_from_thread (insn, condition, insn_at_target,
  3667.                       fallthrough_insn, prediction == 2, 1,
  3668.                       own_target, own_fallthrough,
  3669.                       slots_to_fill, &slots_filled);
  3670.  
  3671.       if (delay_list == 0 && own_fallthrough)
  3672.         {
  3673.           /* Even though we didn't find anything for delay slots,
  3674.          we might have found a redundant insn which we deleted
  3675.          from the thread that was filled.  So we have to recompute
  3676.          the next insn at the target.  */
  3677.           target_label = JUMP_LABEL (insn);
  3678.           insn_at_target = next_active_insn (target_label);
  3679.  
  3680.           delay_list
  3681.         = fill_slots_from_thread (insn, condition, fallthrough_insn,
  3682.                       insn_at_target, 0, 0,
  3683.                       own_fallthrough, own_target,
  3684.                       slots_to_fill, &slots_filled);
  3685.         }
  3686.     }
  3687.       else
  3688.     {
  3689.       if (own_fallthrough)
  3690.         delay_list
  3691.           = fill_slots_from_thread (insn, condition, fallthrough_insn,
  3692.                     insn_at_target, 0, 0,
  3693.                     own_fallthrough, own_target,
  3694.                     slots_to_fill, &slots_filled);
  3695.  
  3696.       if (delay_list == 0)
  3697.         delay_list
  3698.           = fill_slots_from_thread (insn, condition, insn_at_target,
  3699.                     next_active_insn (insn), 0, 1,
  3700.                     own_target, own_fallthrough,
  3701.                     slots_to_fill, &slots_filled);
  3702.     }
  3703.  
  3704.       if (delay_list)
  3705.     unfilled_slots_base[i]
  3706.       = emit_delay_sequence (insn, delay_list,
  3707.                  slots_filled, slots_to_fill);
  3708.  
  3709.       if (slots_to_fill == slots_filled)
  3710.     unfilled_slots_base[i] = 0;
  3711.  
  3712.       note_delay_statistics (slots_filled, 1);
  3713.     }
  3714. }
  3715.  
  3716. /* Once we have tried two ways to fill a delay slot, make a pass over the
  3717.    code to try to improve the results and to do such things as more jump
  3718.    threading.  */
  3719.  
  3720. static void
  3721. relax_delay_slots (first)
  3722.      rtx first;
  3723. {
  3724.   register rtx insn, next, pat;
  3725.   register rtx trial, delay_insn, target_label;
  3726.  
  3727.   /* Look at every JUMP_INSN and see if we can improve it.  */
  3728.   for (insn = first; insn; insn = next)
  3729.     {
  3730.       rtx other;
  3731.  
  3732.       next = next_active_insn (insn);
  3733.  
  3734.       /* If this is a jump insn, see if it now jumps to a jump, jumps to
  3735.      the next insn, or jumps to a label that is not the last of a
  3736.      group of consecutive labels.  */
  3737.       if (GET_CODE (insn) == JUMP_INSN
  3738.       && (condjump_p (insn) || condjump_in_parallel_p (insn))
  3739.       && (target_label = JUMP_LABEL (insn)) != 0)
  3740.     {
  3741.       target_label = follow_jumps (target_label);
  3742.       target_label = prev_label (next_active_insn (target_label));
  3743.  
  3744.       if (target_label == 0)
  3745.         target_label = find_end_label ();
  3746.  
  3747.       if (next_active_insn (target_label) == next
  3748.           && ! condjump_in_parallel_p (insn))
  3749.         {
  3750.           delete_jump (insn);
  3751.           continue;
  3752.         }
  3753.  
  3754.       if (target_label != JUMP_LABEL (insn))
  3755.         reorg_redirect_jump (insn, target_label);
  3756.  
  3757.       /* See if this jump branches around a unconditional jump.
  3758.          If so, invert this jump and point it to the target of the
  3759.          second jump.  */
  3760.       if (next && GET_CODE (next) == JUMP_INSN
  3761.           && (simplejump_p (next) || GET_CODE (PATTERN (next)) == RETURN)
  3762.           && next_active_insn (target_label) == next_active_insn (next)
  3763.           && no_labels_between_p (insn, next))
  3764.         {
  3765.           rtx label = JUMP_LABEL (next);
  3766.  
  3767.           /* Be careful how we do this to avoid deleting code or
  3768.          labels that are momentarily dead.  See similar optimization
  3769.          in jump.c.
  3770.  
  3771.          We also need to ensure we properly handle the case when
  3772.          invert_jump fails.  */
  3773.  
  3774.           ++LABEL_NUSES (target_label);
  3775.           if (label)
  3776.         ++LABEL_NUSES (label);
  3777.  
  3778.           if (invert_jump (insn, label))
  3779.         {
  3780.           delete_insn (next);
  3781.           next = insn;
  3782.         }
  3783.  
  3784.           if (label)
  3785.         --LABEL_NUSES (label);
  3786.  
  3787.           if (--LABEL_NUSES (target_label) == 0)
  3788.         delete_insn (target_label);
  3789.  
  3790.           continue;
  3791.         }
  3792.     }
  3793.       
  3794.       /* If this is an unconditional jump and the previous insn is a
  3795.      conditional jump, try reversing the condition of the previous
  3796.      insn and swapping our targets.  The next pass might be able to
  3797.      fill the slots.
  3798.  
  3799.      Don't do this if we expect the conditional branch to be true, because
  3800.      we would then be making the more common case longer.  */
  3801.  
  3802.       if (GET_CODE (insn) == JUMP_INSN
  3803.       && (simplejump_p (insn) || GET_CODE (PATTERN (insn)) == RETURN)
  3804.       && (other = prev_active_insn (insn)) != 0
  3805.       && (condjump_p (other) || condjump_in_parallel_p (other))
  3806.       && no_labels_between_p (other, insn)
  3807.       && 0 < mostly_true_jump (other,
  3808.                    get_branch_condition (other,
  3809.                              JUMP_LABEL (other))))
  3810.     {
  3811.       rtx other_target = JUMP_LABEL (other);
  3812.       target_label = JUMP_LABEL (insn);
  3813.  
  3814.       /* Increment the count of OTHER_TARGET, so it doesn't get deleted
  3815.          as we move the label.  */
  3816.       if (other_target)
  3817.         ++LABEL_NUSES (other_target);
  3818.  
  3819.       if (invert_jump (other, target_label))
  3820.         reorg_redirect_jump (insn, other_target);
  3821.  
  3822.       if (other_target)
  3823.         --LABEL_NUSES (other_target);
  3824.     }
  3825.  
  3826.       /* Now look only at cases where we have filled a delay slot.  */
  3827.       if (GET_CODE (insn) != INSN
  3828.       || GET_CODE (PATTERN (insn)) != SEQUENCE)
  3829.     continue;
  3830.  
  3831.       pat = PATTERN (insn);
  3832.       delay_insn = XVECEXP (pat, 0, 0);
  3833.  
  3834.       /* See if the first insn in the delay slot is redundant with some
  3835.      previous insn.  Remove it from the delay slot if so; then set up
  3836.      to reprocess this insn.  */
  3837.       if (redundant_insn_p (XVECEXP (pat, 0, 1), delay_insn, 0))
  3838.     {
  3839.       delete_from_delay_slot (XVECEXP (pat, 0, 1));
  3840.       next = prev_active_insn (next);
  3841.       continue;
  3842.     }
  3843.  
  3844.       /* Now look only at the cases where we have a filled JUMP_INSN.  */
  3845.       if (GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) != JUMP_INSN
  3846.       || ! (condjump_p (XVECEXP (PATTERN (insn), 0, 0))
  3847.         || condjump_in_parallel_p (XVECEXP (PATTERN (insn), 0, 0))))
  3848.     continue;
  3849.  
  3850.       target_label = JUMP_LABEL (delay_insn);
  3851.  
  3852.       if (target_label)
  3853.     {
  3854.       /* If this jump goes to another unconditional jump, thread it, but
  3855.          don't convert a jump into a RETURN here.  */
  3856.       trial = follow_jumps (target_label);
  3857.       trial = prev_label (next_active_insn (trial));
  3858.       if (trial == 0 && target_label != 0)
  3859.         trial = find_end_label ();
  3860.  
  3861.       if (trial != target_label 
  3862.           && redirect_with_delay_slots_safe_p (delay_insn, trial, insn))
  3863.         {
  3864.           reorg_redirect_jump (delay_insn, trial);
  3865.           target_label = trial;
  3866.         }
  3867.  
  3868.       /* If the first insn at TARGET_LABEL is redundant with a previous
  3869.          insn, redirect the jump to the following insn process again.  */
  3870.       trial = next_active_insn (target_label);
  3871.       if (trial && GET_CODE (PATTERN (trial)) != SEQUENCE
  3872.           && redundant_insn_p (trial, insn, 0))
  3873.         {
  3874.           trial = next_active_insn (trial);
  3875.           if (trial == 0)
  3876.         target_label = find_end_label ();
  3877.           else
  3878.         target_label = get_label_before (trial);
  3879.           reorg_redirect_jump (delay_insn, target_label);
  3880.           next = insn;
  3881.           continue;
  3882.         }
  3883.  
  3884.       /* Similarly, if it is an unconditional jump with one insn in its
  3885.          delay list and that insn is redundant, thread the jump.  */
  3886.       if (trial && GET_CODE (PATTERN (trial)) == SEQUENCE
  3887.           && XVECLEN (PATTERN (trial), 0) == 2
  3888.           && GET_CODE (XVECEXP (PATTERN (trial), 0, 0)) == JUMP_INSN
  3889.           && (simplejump_p (XVECEXP (PATTERN (trial), 0, 0))
  3890.           || GET_CODE (PATTERN (XVECEXP (PATTERN (trial), 0, 0))) == RETURN)
  3891.           && redundant_insn_p (XVECEXP (PATTERN (trial), 0, 1), insn, 0))
  3892.         {
  3893.           target_label = JUMP_LABEL (XVECEXP (PATTERN (trial), 0, 0));
  3894.           if (target_label == 0)
  3895.         target_label = find_end_label ();
  3896.  
  3897.           if (redirect_with_delay_slots_safe_p (delay_insn, target_label, 
  3898.                             insn))
  3899.         {
  3900.           reorg_redirect_jump (delay_insn, target_label);
  3901.           next = insn;
  3902.           continue;
  3903.         }
  3904.         }
  3905.     }
  3906.  
  3907.       if (! INSN_ANNULLED_BRANCH_P (delay_insn)
  3908.       && prev_active_insn (target_label) == insn
  3909.       && ! condjump_in_parallel_p (delay_insn)
  3910. #ifdef HAVE_cc0
  3911.       /* If the last insn in the delay slot sets CC0 for some insn,
  3912.          various code assumes that it is in a delay slot.  We could
  3913.          put it back where it belonged and delete the register notes,
  3914.          but it doesn't seem worthwhile in this uncommon case.  */
  3915.       && ! find_reg_note (XVECEXP (pat, 0, XVECLEN (pat, 0) - 1),
  3916.                   REG_CC_USER, NULL_RTX)
  3917. #endif
  3918.       )
  3919.     {
  3920.       int i;
  3921.  
  3922.       /* All this insn does is execute its delay list and jump to the
  3923.          following insn.  So delete the jump and just execute the delay
  3924.          list insns.
  3925.  
  3926.          We do this by deleting the INSN containing the SEQUENCE, then
  3927.          re-emitting the insns separately, and then deleting the jump.
  3928.          This allows the count of the jump target to be properly
  3929.          decremented.  */
  3930.  
  3931.       /* Clear the from target bit, since these insns are no longer
  3932.          in delay slots.  */
  3933.       for (i = 0; i < XVECLEN (pat, 0); i++)
  3934.         INSN_FROM_TARGET_P (XVECEXP (pat, 0, i)) = 0;
  3935.  
  3936.       trial = PREV_INSN (insn);
  3937.       delete_insn (insn);
  3938.       emit_insn_after (pat, trial);
  3939.       delete_scheduled_jump (delay_insn);
  3940.       continue;
  3941.     }
  3942.  
  3943.       /* See if this is an unconditional jump around a single insn which is
  3944.      identical to the one in its delay slot.  In this case, we can just
  3945.      delete the branch and the insn in its delay slot.  */
  3946.       if (next && GET_CODE (next) == INSN
  3947.       && prev_label (next_active_insn (next)) == target_label
  3948.       && simplejump_p (insn)
  3949.       && XVECLEN (pat, 0) == 2
  3950.       && rtx_equal_p (PATTERN (next), PATTERN (XVECEXP (pat, 0, 1))))
  3951.     {
  3952.       delete_insn (insn);
  3953.       continue;
  3954.     }
  3955.  
  3956.       /* See if this jump (with its delay slots) branches around another
  3957.      jump (without delay slots).  If so, invert this jump and point
  3958.      it to the target of the second jump.  We cannot do this for
  3959.      annulled jumps, though.  Again, don't convert a jump to a RETURN
  3960.      here.  */
  3961.       if (! INSN_ANNULLED_BRANCH_P (delay_insn)
  3962.       && next && GET_CODE (next) == JUMP_INSN
  3963.       && (simplejump_p (next) || GET_CODE (PATTERN (next)) == RETURN)
  3964.       && next_active_insn (target_label) == next_active_insn (next)
  3965.       && no_labels_between_p (insn, next))
  3966.     {
  3967.       rtx label = JUMP_LABEL (next);
  3968.       rtx old_label = JUMP_LABEL (delay_insn);
  3969.  
  3970.       if (label == 0)
  3971.         label = find_end_label ();
  3972.  
  3973.       if (redirect_with_delay_slots_safe_p (delay_insn, label, insn))
  3974.         {
  3975.           /* Be careful how we do this to avoid deleting code or labels
  3976.          that are momentarily dead.  See similar optimization in
  3977.          jump.c  */
  3978.           if (old_label)
  3979.         ++LABEL_NUSES (old_label);
  3980.  
  3981.           if (invert_jump (delay_insn, label))
  3982.         {
  3983.           int i;
  3984.  
  3985.           /* Must update the INSN_FROM_TARGET_P bits now that
  3986.              the branch is reversed, so that mark_target_live_regs
  3987.              will handle the delay slot insn correctly.  */
  3988.           for (i = 1; i < XVECLEN (PATTERN (insn), 0); i++)
  3989.             {
  3990.               rtx slot = XVECEXP (PATTERN (insn), 0, i);
  3991.               INSN_FROM_TARGET_P (slot) = ! INSN_FROM_TARGET_P (slot);
  3992.             }
  3993.  
  3994.           delete_insn (next);
  3995.           next = insn;
  3996.         }
  3997.  
  3998.           if (old_label && --LABEL_NUSES (old_label) == 0)
  3999.         delete_insn (old_label);
  4000.           continue;
  4001.         }
  4002.     }
  4003.  
  4004.       /* If we own the thread opposite the way this insn branches, see if we
  4005.      can merge its delay slots with following insns.  */
  4006.       if (INSN_FROM_TARGET_P (XVECEXP (pat, 0, 1))
  4007.       && own_thread_p (NEXT_INSN (insn), 0, 1))
  4008.     try_merge_delay_insns (insn, next);
  4009.       else if (! INSN_FROM_TARGET_P (XVECEXP (pat, 0, 1))
  4010.            && own_thread_p (target_label, target_label, 0))
  4011.     try_merge_delay_insns (insn, next_active_insn (target_label));
  4012.  
  4013.       /* If we get here, we haven't deleted INSN.  But we may have deleted
  4014.      NEXT, so recompute it.  */
  4015.       next = next_active_insn (insn);
  4016.     }
  4017. }
  4018.  
  4019. #ifdef HAVE_return
  4020.  
  4021. /* Look for filled jumps to the end of function label.  We can try to convert
  4022.    them into RETURN insns if the insns in the delay slot are valid for the
  4023.    RETURN as well.  */
  4024.  
  4025. static void
  4026. make_return_insns (first)
  4027.      rtx first;
  4028. {
  4029.   rtx insn, jump_insn, pat;
  4030.   rtx real_return_label = end_of_function_label;
  4031.   int slots, i;
  4032.  
  4033.   /* See if there is a RETURN insn in the function other than the one we
  4034.      made for END_OF_FUNCTION_LABEL.  If so, set up anything we can't change
  4035.      into a RETURN to jump to it.  */
  4036.   for (insn = first; insn; insn = NEXT_INSN (insn))
  4037.     if (GET_CODE (insn) == JUMP_INSN && GET_CODE (PATTERN (insn)) == RETURN)
  4038.       {
  4039.     real_return_label = get_label_before (insn);
  4040.     break;
  4041.       }
  4042.   
  4043.   /* Show an extra usage of REAL_RETURN_LABEL so it won't go away if it
  4044.      was equal to END_OF_FUNCTION_LABEL.  */
  4045.   LABEL_NUSES (real_return_label)++;
  4046.  
  4047.   /* Clear the list of insns to fill so we can use it.  */
  4048.   obstack_free (&unfilled_slots_obstack, unfilled_firstobj);
  4049.  
  4050.   for (insn = first; insn; insn = NEXT_INSN (insn))
  4051.     {
  4052.       int flags;
  4053.  
  4054.       /* Only look at filled JUMP_INSNs that go to the end of function
  4055.      label.  */
  4056.       if (GET_CODE (insn) != INSN
  4057.       || GET_CODE (PATTERN (insn)) != SEQUENCE
  4058.       || GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) != JUMP_INSN
  4059.       || JUMP_LABEL (XVECEXP (PATTERN (insn), 0, 0)) != end_of_function_label)
  4060.     continue;
  4061.  
  4062.       pat = PATTERN (insn);
  4063.       jump_insn = XVECEXP (pat, 0, 0);
  4064.  
  4065.       /* If we can't make the jump into a RETURN, try to redirect it to the best
  4066.      RETURN and go on to the next insn.  */
  4067.       if (! reorg_redirect_jump (jump_insn, NULL_RTX))
  4068.     {
  4069.       /* Make sure redirecting the jump will not invalidate the delay
  4070.          slot insns.  */
  4071.       if (redirect_with_delay_slots_safe_p (jump_insn,
  4072.                         real_return_label,
  4073.                         insn))
  4074.         reorg_redirect_jump (jump_insn, real_return_label);
  4075.       continue;
  4076.     }
  4077.  
  4078.       /* See if this RETURN can accept the insns current in its delay slot.
  4079.      It can if it has more or an equal number of slots and the contents
  4080.      of each is valid.  */
  4081.  
  4082.       flags = get_jump_flags (jump_insn, JUMP_LABEL (jump_insn));
  4083.       slots = num_delay_slots (jump_insn);
  4084.       if (slots >= XVECLEN (pat, 0) - 1)
  4085.     {
  4086.       for (i = 1; i < XVECLEN (pat, 0); i++)
  4087.         if (! (
  4088. #ifdef ANNUL_IFFALSE_SLOTS
  4089.            (INSN_ANNULLED_BRANCH_P (jump_insn)
  4090.             && INSN_FROM_TARGET_P (XVECEXP (pat, 0, i)))
  4091.            ? eligible_for_annul_false (jump_insn, i - 1,
  4092.                            XVECEXP (pat, 0, i), flags) :
  4093. #endif
  4094. #ifdef ANNUL_IFTRUE_SLOTS
  4095.            (INSN_ANNULLED_BRANCH_P (jump_insn)
  4096.             && ! INSN_FROM_TARGET_P (XVECEXP (pat, 0, i)))
  4097.            ? eligible_for_annul_true (jump_insn, i - 1,
  4098.                           XVECEXP (pat, 0, i), flags) :
  4099. #endif
  4100.            eligible_for_delay (jump_insn, i -1, XVECEXP (pat, 0, i), flags)))
  4101.           break;
  4102.     }
  4103.       else
  4104.     i = 0;
  4105.  
  4106.       if (i == XVECLEN (pat, 0))
  4107.     continue;
  4108.  
  4109.       /* We have to do something with this insn.  If it is an unconditional
  4110.      RETURN, delete the SEQUENCE and output the individual insns,
  4111.      followed by the RETURN.  Then set things up so we try to find
  4112.      insns for its delay slots, if it needs some.  */
  4113.       if (GET_CODE (PATTERN (jump_insn)) == RETURN)
  4114.     {
  4115.       rtx prev = PREV_INSN (insn);
  4116.  
  4117.       delete_insn (insn);
  4118.       for (i = 1; i < XVECLEN (pat, 0); i++)
  4119.         prev = emit_insn_after (PATTERN (XVECEXP (pat, 0, i)), prev);
  4120.  
  4121.       insn = emit_jump_insn_after (PATTERN (jump_insn), prev);
  4122.       emit_barrier_after (insn);
  4123.  
  4124.       if (slots)
  4125.         obstack_ptr_grow (&unfilled_slots_obstack, insn);
  4126.     }
  4127.       else
  4128.     /* It is probably more efficient to keep this with its current
  4129.        delay slot as a branch to a RETURN.  */
  4130.     reorg_redirect_jump (jump_insn, real_return_label);
  4131.     }
  4132.  
  4133.   /* Now delete REAL_RETURN_LABEL if we never used it.  Then try to fill any
  4134.      new delay slots we have created.  */
  4135.   if (--LABEL_NUSES (real_return_label) == 0)
  4136.     delete_insn (real_return_label);
  4137.  
  4138.   fill_simple_delay_slots (first, 1);
  4139.   fill_simple_delay_slots (first, 0);
  4140. }
  4141. #endif
  4142.  
  4143. /* Try to find insns to place in delay slots.  */
  4144.  
  4145. void
  4146. dbr_schedule (first, file)
  4147.      rtx first;
  4148.      FILE *file;
  4149. {
  4150.   rtx insn, next, epilogue_insn = 0;
  4151.   int i;
  4152. #if 0
  4153.   int old_flag_no_peephole = flag_no_peephole;
  4154.  
  4155.   /* Execute `final' once in prescan mode to delete any insns that won't be
  4156.      used.  Don't let final try to do any peephole optimization--it will
  4157.      ruin dataflow information for this pass.  */
  4158.  
  4159.   flag_no_peephole = 1;
  4160.   final (first, 0, NO_DEBUG, 1, 1);
  4161.   flag_no_peephole = old_flag_no_peephole;
  4162. #endif
  4163.  
  4164.   /* If the current function has no insns other than the prologue and 
  4165.      epilogue, then do not try to fill any delay slots.  */
  4166.   if (n_basic_blocks == 0)
  4167.     return;
  4168.  
  4169.   /* Find the highest INSN_UID and allocate and initialize our map from
  4170.      INSN_UID's to position in code.  */
  4171.   for (max_uid = 0, insn = first; insn; insn = NEXT_INSN (insn))
  4172.     {
  4173.       if (INSN_UID (insn) > max_uid)
  4174.     max_uid = INSN_UID (insn);
  4175.       if (GET_CODE (insn) == NOTE
  4176.       && NOTE_LINE_NUMBER (insn) == NOTE_INSN_EPILOGUE_BEG)
  4177.     epilogue_insn = insn;
  4178.     }
  4179.  
  4180.   uid_to_ruid = (int *) alloca ((max_uid + 1) * sizeof (int *));
  4181.   for (i = 0, insn = first; insn; i++, insn = NEXT_INSN (insn))
  4182.     uid_to_ruid[INSN_UID (insn)] = i;
  4183.   
  4184.   /* Initialize the list of insns that need filling.  */
  4185.   if (unfilled_firstobj == 0)
  4186.     {
  4187.       gcc_obstack_init (&unfilled_slots_obstack);
  4188.       unfilled_firstobj = (rtx *) obstack_alloc (&unfilled_slots_obstack, 0);
  4189.     }
  4190.  
  4191.   for (insn = next_active_insn (first); insn; insn = next_active_insn (insn))
  4192.     {
  4193.       rtx target;
  4194.  
  4195.       INSN_ANNULLED_BRANCH_P (insn) = 0;
  4196.       INSN_FROM_TARGET_P (insn) = 0;
  4197.  
  4198.       /* Skip vector tables.  We can't get attributes for them.  */
  4199.       if (GET_CODE (insn) == JUMP_INSN
  4200.       && (GET_CODE (PATTERN (insn)) == ADDR_VEC
  4201.           || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC))
  4202.     continue;
  4203.     
  4204.       if (num_delay_slots (insn) > 0)
  4205.     obstack_ptr_grow (&unfilled_slots_obstack, insn);
  4206.  
  4207.       /* Ensure all jumps go to the last of a set of consecutive labels.  */
  4208.       if (GET_CODE (insn) == JUMP_INSN 
  4209.       && (condjump_p (insn) || condjump_in_parallel_p (insn))
  4210.       && JUMP_LABEL (insn) != 0
  4211.       && ((target = prev_label (next_active_insn (JUMP_LABEL (insn))))
  4212.           != JUMP_LABEL (insn)))
  4213.     redirect_jump (insn, target);
  4214.     }
  4215.  
  4216.   /* Indicate what resources are required to be valid at the end of the current
  4217.      function.  The condition code never is and memory always is.  If the
  4218.      frame pointer is needed, it is and so is the stack pointer unless
  4219.      EXIT_IGNORE_STACK is non-zero.  If the frame pointer is not needed, the
  4220.      stack pointer is.  Registers used to return the function value are
  4221.      needed.  Registers holding global variables are needed.  */
  4222.  
  4223.   end_of_function_needs.cc = 0;
  4224.   end_of_function_needs.memory = 1;
  4225.   end_of_function_needs.unch_memory = 0;
  4226.   CLEAR_HARD_REG_SET (end_of_function_needs.regs);
  4227.  
  4228.   if (frame_pointer_needed)
  4229.     {
  4230.       SET_HARD_REG_BIT (end_of_function_needs.regs, FRAME_POINTER_REGNUM);
  4231. #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
  4232.       SET_HARD_REG_BIT (end_of_function_needs.regs, HARD_FRAME_POINTER_REGNUM);
  4233. #endif
  4234. #ifdef EXIT_IGNORE_STACK
  4235.       if (! EXIT_IGNORE_STACK)
  4236. #endif
  4237.     SET_HARD_REG_BIT (end_of_function_needs.regs, STACK_POINTER_REGNUM);
  4238.     }
  4239.   else
  4240.     SET_HARD_REG_BIT (end_of_function_needs.regs, STACK_POINTER_REGNUM);
  4241.  
  4242.   if (current_function_return_rtx != 0
  4243.       && GET_CODE (current_function_return_rtx) == REG)
  4244.     mark_referenced_resources (current_function_return_rtx,
  4245.                    &end_of_function_needs, 1);
  4246.  
  4247.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  4248.     if (global_regs[i])
  4249.       SET_HARD_REG_BIT (end_of_function_needs.regs, i);
  4250.  
  4251.   /* The registers required to be live at the end of the function are
  4252.      represented in the flow information as being dead just prior to
  4253.      reaching the end of the function.  For example, the return of a value
  4254.      might be represented by a USE of the return register immediately
  4255.      followed by an unconditional jump to the return label where the
  4256.      return label is the end of the RTL chain.  The end of the RTL chain
  4257.      is then taken to mean that the return register is live.
  4258.  
  4259.      This sequence is no longer maintained when epilogue instructions are
  4260.      added to the RTL chain.  To reconstruct the original meaning, the
  4261.      start of the epilogue (NOTE_INSN_EPILOGUE_BEG) is regarded as the
  4262.      point where these registers become live (start_of_epilogue_needs).
  4263.      If epilogue instructions are present, the registers set by those
  4264.      instructions won't have been processed by flow.  Thus, those
  4265.      registers are additionally required at the end of the RTL chain
  4266.      (end_of_function_needs).  */
  4267.  
  4268.   start_of_epilogue_needs = end_of_function_needs;
  4269.  
  4270.   while (epilogue_insn = next_nonnote_insn (epilogue_insn))
  4271.     mark_set_resources (epilogue_insn, &end_of_function_needs, 0, 1);
  4272.  
  4273.   /* Show we haven't computed an end-of-function label yet.  */
  4274.   end_of_function_label = 0;
  4275.  
  4276.   /* Allocate and initialize the tables used by mark_target_live_regs.  */
  4277.   target_hash_table
  4278.     = (struct target_info **) alloca ((TARGET_HASH_PRIME
  4279.                        * sizeof (struct target_info *)));
  4280.   bzero (target_hash_table, TARGET_HASH_PRIME * sizeof (struct target_info *));
  4281.  
  4282.   bb_ticks = (int *) alloca (n_basic_blocks * sizeof (int));
  4283.   bzero (bb_ticks, n_basic_blocks * sizeof (int));
  4284.  
  4285.   /* Initialize the statistics for this function.  */
  4286.   bzero (num_insns_needing_delays, sizeof num_insns_needing_delays);
  4287.   bzero (num_filled_delays, sizeof num_filled_delays);
  4288.  
  4289.   /* Now do the delay slot filling.  Try everything twice in case earlier
  4290.      changes make more slots fillable.  */
  4291.  
  4292.   for (reorg_pass_number = 0;
  4293.        reorg_pass_number < MAX_REORG_PASSES;
  4294.        reorg_pass_number++)
  4295.     {
  4296.       fill_simple_delay_slots (first, 1);
  4297.       fill_simple_delay_slots (first, 0);
  4298.       fill_eager_delay_slots (first);
  4299.       relax_delay_slots (first);
  4300.     }
  4301.  
  4302.   /* Delete any USE insns made by update_block; subsequent passes don't need
  4303.      them or know how to deal with them.  */
  4304.   for (insn = first; insn; insn = next)
  4305.     {
  4306.       next = NEXT_INSN (insn);
  4307.  
  4308.       if (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == USE
  4309.       && GET_RTX_CLASS (GET_CODE (XEXP (PATTERN (insn), 0))) == 'i')
  4310.     next = delete_insn (insn);
  4311.     }
  4312.  
  4313.   /* If we made an end of function label, indicate that it is now
  4314.      safe to delete it by undoing our prior adjustment to LABEL_NUSES.
  4315.      If it is now unused, delete it.  */
  4316.   if (end_of_function_label && --LABEL_NUSES (end_of_function_label) == 0)
  4317.     delete_insn (end_of_function_label);
  4318.  
  4319. #ifdef HAVE_return
  4320.   if (HAVE_return && end_of_function_label != 0)
  4321.     make_return_insns (first);
  4322. #endif
  4323.  
  4324.   obstack_free (&unfilled_slots_obstack, unfilled_firstobj);
  4325.  
  4326.   /* It is not clear why the line below is needed, but it does seem to be.  */
  4327.   unfilled_firstobj = (rtx *) obstack_alloc (&unfilled_slots_obstack, 0);
  4328.  
  4329.   /* Reposition the prologue and epilogue notes in case we moved the
  4330.      prologue/epilogue insns.  */
  4331.   reposition_prologue_and_epilogue_notes (first);
  4332.  
  4333.   if (file)
  4334.     {
  4335.       register int i, j, need_comma;
  4336.  
  4337.       for (reorg_pass_number = 0;
  4338.        reorg_pass_number < MAX_REORG_PASSES;
  4339.        reorg_pass_number++)
  4340.     {
  4341.       fprintf (file, ";; Reorg pass #%d:\n", reorg_pass_number + 1);
  4342.       for (i = 0; i < NUM_REORG_FUNCTIONS; i++)
  4343.         {
  4344.           need_comma = 0;
  4345.           fprintf (file, ";; Reorg function #%d\n", i);
  4346.  
  4347.           fprintf (file, ";; %d insns needing delay slots\n;; ",
  4348.                num_insns_needing_delays[i][reorg_pass_number]);
  4349.  
  4350.           for (j = 0; j < MAX_DELAY_HISTOGRAM; j++)
  4351.         if (num_filled_delays[i][j][reorg_pass_number])
  4352.           {
  4353.             if (need_comma)
  4354.               fprintf (file, ", ");
  4355.             need_comma = 1;
  4356.             fprintf (file, "%d got %d delays",
  4357.                  num_filled_delays[i][j][reorg_pass_number], j);
  4358.           }
  4359.           fprintf (file, "\n");
  4360.         }
  4361.     }
  4362.     }
  4363. }
  4364. #endif /* DELAY_SLOTS */
  4365.