riscv: Fix up riscv_rtx_costs for RTL checking (PR target/93333)
authorJakub Jelinek <jakub@redhat.com>
Tue, 21 Jan 2020 20:43:03 +0000 (21:43 +0100)
committerJakub Jelinek <jakub@redhat.com>
Tue, 21 Jan 2020 20:43:03 +0000 (21:43 +0100)
As mentioned in the PR, during combine rtx_costs can be called sometimes
even on RTL that has not been validated yet and so can contain even operands
that aren't valid in any instruction.

2020-01-21  Jakub Jelinek  <jakub@redhat.com>

PR target/93333
* config/riscv/riscv.c (riscv_rtx_costs) <case ZERO_EXTRACT>: Verify
the last two operands are CONST_INT_P before using them as such.

* gcc.c-torture/compile/pr93333.c: New test.

gcc/ChangeLog
gcc/config/riscv/riscv.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/pr93333.c [new file with mode: 0644]

index e2f3d0db2cda9163b3db508b71b05bb5ccb0fc84..e7ae5bbefa157b718a12d58b884dedc8c82b7a4a 100644 (file)
@@ -1,3 +1,9 @@
+2020-01-21  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/93333
+       * config/riscv/riscv.c (riscv_rtx_costs) <case ZERO_EXTRACT>: Verify
+       the last two operands are CONST_INT_P before using them as such.
+
 2020-01-21  Richard Sandiford  <richard.sandiford@arm.com>
 
        * config/aarch64/aarch64-sve-builtins.def: Use get_typenode_from_name
index 573024074e3f8d606cb1162505d4cc072950d00b..e0205c66f2687594aac5884569c13cc4484c4027 100644 (file)
@@ -1642,7 +1642,10 @@ riscv_rtx_costs (rtx x, machine_mode mode, int outer_code, int opno ATTRIBUTE_UN
 
     case ZERO_EXTRACT:
       /* This is an SImode shift.  */
-      if (outer_code == SET && (INTVAL (XEXP (x, 2)) > 0)
+      if (outer_code == SET
+         && CONST_INT_P (XEXP (x, 1))
+         && CONST_INT_P (XEXP (x, 2))
+         && (INTVAL (XEXP (x, 2)) > 0)
          && (INTVAL (XEXP (x, 1)) + INTVAL (XEXP (x, 2)) == 32))
        {
          *total = COSTS_N_INSNS (SINGLE_SHIFT_COST);
index b164f3156c7bab15d77eaf27d835530b53aa81fb..e8561cca4122b7a254f1f6dbb9ee927e8e244f2d 100644 (file)
@@ -1,3 +1,8 @@
+2020-01-21  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/93333
+       * gcc.c-torture/compile/pr93333.c: New test.
+
 2020-01-21  Sandra Loosemore  <sandra@codesourcery.com>
 
        * g++.dg/coroutines/torture/mid-suspend-destruction-0.C: Generalize
diff --git a/gcc/testsuite/gcc.c-torture/compile/pr93333.c b/gcc/testsuite/gcc.c-torture/compile/pr93333.c
new file mode 100644 (file)
index 0000000..801959b
--- /dev/null
@@ -0,0 +1,10 @@
+/* PR target/93333 */
+
+unsigned
+foo (int b, int c, int d, unsigned long e, int x, int y, int g, int h,
+     unsigned i)
+{
+  e >>= b;
+  i >>= e & 31;
+  return i & 1;
+}