re PR rtl-optimization/70429 (Wrong code with -O1.)
authorJakub Jelinek <jakub@redhat.com>
Tue, 29 Mar 2016 18:49:00 +0000 (20:49 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 29 Mar 2016 18:49:00 +0000 (20:49 +0200)
PR rtl-optimization/70429
* combine.c (simplify_shift_const_1): For ASHIFTRT don't optimize
(cst1 >> count) >> cst2 into (cst1 >> cst2) >> count if
mode != result_mode.

* gcc.c-torture/execute/pr70429.c: New test.

From-SVN: r234531

gcc/ChangeLog
gcc/combine.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/pr70429.c [new file with mode: 0644]

index cb6297710d54072dc002f83d167231828ef94af1..042757895d66db6cc888d97b16184372536566c1 100644 (file)
@@ -1,5 +1,10 @@
 2016-03-29  Jakub Jelinek  <jakub@redhat.com>
 
+       PR rtl-optimization/70429
+       * combine.c (simplify_shift_const_1): For ASHIFTRT don't optimize
+       (cst1 >> count) >> cst2 into (cst1 >> cst2) >> count if
+       mode != result_mode.
+
        PR c++/70353
        * tree-inline.c (remap_decls): Don't add_local_decl if
        cfun is null.
index f701f289f3fd62773fd14a6bbb2a34daa150d7d7..1d0e8beeb2c07b50443b6a22103802cba075b088 100644 (file)
@@ -10533,6 +10533,11 @@ simplify_shift_const_1 (enum rtx_code code, machine_mode result_mode,
                                       >> orig_count, result_mode,
                                       &complement_p))
                break;
+             /* For ((int) (cstLL >> count)) >> cst2 just give up.  Queuing
+                up outer sign extension (often left and right shift) is
+                hardly more efficient than the original.  See PR70429.  */
+             if (code == ASHIFTRT && mode != result_mode)
+               break;
 
              rtx new_rtx = simplify_const_binary_operation (code, mode,
                                                             XEXP (varop, 0),
index 912a830e75dd956c661e5b7e5de65cadf8429926..2459a2aa489a2f7de901c62e3f66c86849b70801 100644 (file)
@@ -1,5 +1,8 @@
 2016-03-29  Jakub Jelinek  <jakub@redhat.com>
 
+       PR rtl-optimization/70429
+       * gcc.c-torture/execute/pr70429.c: New test.
+
        PR tree-optimization/70405
        * gcc.dg/pr70405.c: New test.
 
diff --git a/gcc/testsuite/gcc.c-torture/execute/pr70429.c b/gcc/testsuite/gcc.c-torture/execute/pr70429.c
new file mode 100644 (file)
index 0000000..6b08c8e
--- /dev/null
@@ -0,0 +1,17 @@
+/* PR rtl-optimization/70429 */
+
+__attribute__((noinline, noclone)) int
+foo (int a)
+{
+  return (int) (0x14ff6e2207db5d1fLL >> a) >> 4;
+}
+
+int
+main ()
+{
+  if (sizeof (int) != 4 || sizeof (long long) != 8 || __CHAR_BIT__ != 8)
+    return 0;
+  if (foo (1) != 0x3edae8 || foo (2) != -132158092)
+    __builtin_abort ();
+  return 0;
+}