re PR tree-optimization/63641 (Invalid shift leads to incorrect code on 32-bit system)
authorJakub Jelinek <jakub@redhat.com>
Sat, 25 Oct 2014 20:21:47 +0000 (22:21 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Sat, 25 Oct 2014 20:21:47 +0000 (22:21 +0200)
PR tree-optimization/63641
* tree-ssa-reassoc.c (optimize_range_tests_to_bit_test): Set high
to low + prec - 1 - clz (mask) instead of low + prec - clz (mask).

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

From-SVN: r216693

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/pr63641.c [new file with mode: 0644]
gcc/tree-ssa-reassoc.c

index a7bcfbfac66cc2a0ed4e6abd2170b26df3c565f4..1cb0cdc55693db1c5f410eafa65271a34edfdcfc 100644 (file)
@@ -1,3 +1,9 @@
+2014-10-25  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/63641
+       * tree-ssa-reassoc.c (optimize_range_tests_to_bit_test): Set high
+       to low + prec - 1 - clz (mask) instead of low + prec - clz (mask).
+
 2014-10-25  Alan Modra  <amodra@gmail.com>
 
        PR rtl-optimization/63615
index 00a78cc11182eecb70023f397d4b0b11a2012621..788786c068eed6fcc7f0b0e2f2b3fef4f359751a 100644 (file)
@@ -1,3 +1,8 @@
+2014-10-25  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/63641
+       * gcc.c-torture/execute/pr63641.c: New test.
+
 2014-10-24  Tobias Burnus  <burnus@net-b.de>
 
        * gfortran.dg/coarray_collectives_9.f90: Remove dg-error.
diff --git a/gcc/testsuite/gcc.c-torture/execute/pr63641.c b/gcc/testsuite/gcc.c-torture/execute/pr63641.c
new file mode 100644 (file)
index 0000000..d08c50b
--- /dev/null
@@ -0,0 +1,54 @@
+/* PR tree-optimization/63641 */
+
+__attribute__ ((noinline, noclone)) int
+foo (unsigned char b)
+{
+  if (0x0 <= b && b <= 0x8)
+    goto lab;
+  if (b == 0x0b)
+    goto lab;
+  if (0x0e <= b && b <= 0x1a)
+    goto lab;
+  if (0x1c <= b && b <= 0x1f)
+    goto lab;
+  return 0;
+lab:
+  return 1;
+}
+
+__attribute__ ((noinline, noclone)) int
+bar (unsigned char b)
+{
+  if (0x0 <= b && b <= 0x8)
+    goto lab;
+  if (b == 0x0b)
+    goto lab;
+  if (0x0e <= b && b <= 0x1a)
+    goto lab;
+  if (0x3c <= b && b <= 0x3f)
+    goto lab;
+  return 0;
+lab:
+  return 1;
+}
+
+char tab1[] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1,
+               1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1 };
+char tab2[] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1,
+               1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0,
+               0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+               0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1 };
+
+int
+main ()
+{
+  int i;
+  asm volatile ("" : : : "memory");
+  for (i = 0; i < 256; i++)
+    if (foo (i) != (i < 32 ? tab1[i] : 0))
+      __builtin_abort ();
+  for (i = 0; i < 256; i++)
+    if (bar (i) != (i < 64 ? tab2[i] : 0))
+      __builtin_abort ();
+  return 0;
+}
index 159f217bbe410fc281da8eb3dbdec88c9b5428c1..a760595a1fdf5496fe351189c390b81bcb397519 100644 (file)
@@ -2513,7 +2513,7 @@ optimize_range_tests_to_bit_test (enum tree_code opcode, int first, int length,
        {
          tree high = wide_int_to_tree (TREE_TYPE (lowi),
                                        wi::to_widest (lowi)
-                                       + prec - wi::clz (mask));
+                                       + prec - 1 - wi::clz (mask));
          operand_entry_t oe = (*ops)[ranges[i].idx];
          tree op = oe->op;
          gimple stmt = op ? SSA_NAME_DEF_STMT (op)