]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR rtl-optimization/87761 ([MIPS] New FAIL: gcc.target/mips/fix-r4000-10.c ...
authorJeff Law <law@redhat.com>
Fri, 22 Mar 2019 18:14:56 +0000 (12:14 -0600)
committerJeff Law <law@gcc.gnu.org>
Fri, 22 Mar 2019 18:14:56 +0000 (12:14 -0600)
PR rtl-optimization/87761
* config/mips/mips-protos.h (mips_split_move): Add new argument.
(mips_emit_move_or_split): Pass NULL for INSN into mips_split_move.
(mips_split_move): Accept new INSN argument.  Try to forward SRC
into the next instruction.
(mips_split_move_insn): Pass INSN through to mips_split_move.

From-SVN: r269880

gcc/ChangeLog
gcc/config/mips/mips-protos.h
gcc/config/mips/mips.c

index c10c4c745a5c7519671b445d5b62e20558d2e1b6..7e31779f7c4d19c035846420f096f65c4f6c9e50 100644 (file)
@@ -1,3 +1,12 @@
+2019-02-26  Jeff Law  <law@redhat.com>
+
+       PR rtl-optimization/87761
+       * config/mips/mips-protos.h (mips_split_move): Add new argument.
+       (mips_emit_move_or_split): Pass NULL for INSN into mips_split_move.
+       (mips_split_move): Accept new INSN argument.  Try to forward SRC
+       into the next instruction.
+       (mips_split_move_insn): Pass INSN through to mips_split_move.
+
 2019-03-22  Vladimir Makarov  <vmakarov@redhat.com>
 
        PR rtl-optimization/89676
index 64afb350fb7e13ce03f5bd450d6e727dcaf901b5..32070fdb8c9cb9efc961da2fa8f6f3e931848c85 100644 (file)
@@ -214,7 +214,7 @@ extern bool mips_legitimize_move (machine_mode, rtx, rtx);
 
 extern rtx mips_subword (rtx, bool);
 extern bool mips_split_move_p (rtx, rtx, enum mips_split_type);
-extern void mips_split_move (rtx, rtx, enum mips_split_type);
+extern void mips_split_move (rtx, rtx, enum mips_split_type, rtx);
 extern bool mips_split_move_insn_p (rtx, rtx, rtx);
 extern void mips_split_move_insn (rtx, rtx, rtx);
 extern void mips_split_128bit_move (rtx, rtx);
index 48f324410b91c91626b900db6df00481ee4548d9..1de33b28c385d32263a687d2b8ae66b7993a861a 100644 (file)
@@ -3031,7 +3031,7 @@ static void
 mips_emit_move_or_split (rtx dest, rtx src, enum mips_split_type split_type)
 {
   if (mips_split_move_p (dest, src, split_type))
-    mips_split_move (dest, src, split_type);
+    mips_split_move (dest, src, split_type, NULL);
   else
     mips_emit_move (dest, src);
 }
@@ -4780,10 +4780,11 @@ mips_split_move_p (rtx dest, rtx src, enum mips_split_type split_type)
 }
 
 /* Split a move from SRC to DEST, given that mips_split_move_p holds.
-   SPLIT_TYPE describes the split condition.  */
+   SPLIT_TYPE describes the split condition.  INSN is the insn being
+   split, if we know it, NULL otherwise.  */
 
 void
-mips_split_move (rtx dest, rtx src, enum mips_split_type split_type)
+mips_split_move (rtx dest, rtx src, enum mips_split_type split_type, rtx insn_)
 {
   rtx low_dest;
 
@@ -4843,6 +4844,21 @@ mips_split_move (rtx dest, rtx src, enum mips_split_type split_type)
          mips_emit_move (mips_subword (dest, true), mips_subword (src, true));
        }
     }
+
+  /* This is a hack.  See if the next insn uses DEST and if so, see if we
+     can forward SRC for DEST.  This is most useful if the next insn is a
+     simple store.   */
+  rtx_insn *insn = (rtx_insn *)insn_;
+  if (insn)
+    {
+      rtx_insn *next = next_nonnote_nondebug_insn_bb (insn);
+      if (next)
+       {
+         rtx set = single_set (next);
+         if (set && SET_SRC (set) == dest)
+           validate_change (next, &SET_SRC (set), src, false);
+       }
+    }
 }
 
 /* Return the split type for instruction INSN.  */
@@ -5070,7 +5086,7 @@ mips_split_move_insn_p (rtx dest, rtx src, rtx insn)
 void
 mips_split_move_insn (rtx dest, rtx src, rtx insn)
 {
-  mips_split_move (dest, src, mips_insn_split_type (insn));
+  mips_split_move (dest, src, mips_insn_split_type (insn), insn);
 }
 \f
 /* Return the appropriate instructions to move SRC into DEST.  Assume