]> gcc.gnu.org Git - gcc.git/commitdiff
[PR87874] avoid const-wide-int subreg in LRA
authorAlexandre Oliva <aoliva@redhat.com>
Wed, 7 Nov 2018 06:25:30 +0000 (06:25 +0000)
committerAlexandre Oliva <aoliva@gcc.gnu.org>
Wed, 7 Nov 2018 06:25:30 +0000 (06:25 +0000)
Just like CONST_INT, CONST_WIDE_INT is VOIDmode, so LRA might be
tempted to build a SUBREG to "convert" it to the wanted mode.  That's
no use.  Test for CONST_SCALAR_INT_P instead of CONST_INT_P so that we
skip the subreg creation for both.

for  gcc/ChangeLog

PR rtl-optimization/87874
* lra.c (lra_substitute_pseudo): Do not create a subreg for
const wide ints.

for  gcc/testsuite/ChangeLog

PR rtl-optimization/87874
* gcc.dg/pr87874.c: New.

From-SVN: r265860

gcc/ChangeLog
gcc/lra.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr87874.c [new file with mode: 0644]

index 0c33c678a70c97f3eedbe56efac11036181510ee..d1fde63c79c1fe4843e10eaed8c0bbd573168938 100644 (file)
@@ -1,3 +1,9 @@
+2018-11-07  Alexandre Oliva <aoliva@redhat.com>
+
+       PR rtl-optimization/87874
+       * lra.c (lra_substitute_pseudo): Do not create a subreg for
+       const wide ints.
+
 2018-11-06  Aaron Sawdey  <acsawdey@linux.ibm.com>
 
        * config/rs6000/rs6000.md (bswap<mode>2): Force address into register
index aa768fb2a23196625d5b284560902a345a7595ea..5d58d90f3a6b1fbcee9c78a60339db9da066beac 100644 (file)
--- a/gcc/lra.c
+++ b/gcc/lra.c
@@ -1961,7 +1961,7 @@ lra_substitute_pseudo (rtx *loc, int old_regno, rtx new_reg, bool subreg_p,
       machine_mode inner_mode = GET_MODE (new_reg);
 
       if (mode != inner_mode
-         && ! (CONST_INT_P (new_reg) && SCALAR_INT_MODE_P (mode)))
+         && ! (CONST_SCALAR_INT_P (new_reg) && SCALAR_INT_MODE_P (mode)))
        {
          poly_uint64 offset = 0;
          if (partial_subreg_p (mode, inner_mode)
index 4c1610dd169787d067a243bd8069c59dc9d0d13d..66a09d6895e27e429798e6986ab668e0dcaf4c13 100644 (file)
@@ -1,3 +1,8 @@
+2018-11-07  Alexandre Oliva <aoliva@redhat.com>
+
+       PR rtl-optimization/87874
+       * gcc.dg/pr87874.c: New.
+
 2018-11-06  Ilya Leoshkevich  <iii@linux.ibm.com>
 
        * gcc.target/s390/load-and-test-fp-1.c: Accept cdb.
diff --git a/gcc/testsuite/gcc.dg/pr87874.c b/gcc/testsuite/gcc.dg/pr87874.c
new file mode 100644 (file)
index 0000000..3ab5dcf
--- /dev/null
@@ -0,0 +1,35 @@
+/* { dg-do compile } */
+/* { dg-options "-g -O1 -fgcse -fno-dce -fno-tree-ccp -fno-tree-coalesce-vars -fno-tree-copy-prop -fno-tree-dce -fno-tree-dominator-opts -fno-tree-fre -fno-tree-loop-optimize -fno-tree-sink" } */
+
+int *vk;
+int m2;
+#if __SIZEOF_INT128__
+__int128 nb;
+
+void
+em (int u5, int fo, int s7)
+{
+  for (;;)
+    {
+      long int es;
+
+      es = !!u5 ? (!!fo && !!m2) : fo;
+      if (es == 0)
+        if (nb == *vk)
+          {
+            const unsigned long int uint64_max = 18446744073709551615ul;
+            __int128 ks = uint64_max / 2 + 1;
+
+            while (s7 < 1)
+              while (nb < 2)
+                {
+                  for (ks = 0; ks < 3; ++ks)
+                    {
+                    }
+
+                  ++nb;
+                }
+          }
+    }
+}
+#endif
This page took 0.103535 seconds and 5 git commands to generate.