optimize-bswapsi-1.c (swap32_e): New bswap test.
authorThomas Preud'homme <thomas.preudhomme@arm.com>
Wed, 29 Oct 2014 10:33:46 +0000 (10:33 +0000)
committerThomas Preud'homme <thopre01@gcc.gnu.org>
Wed, 29 Oct 2014 10:33:46 +0000 (10:33 +0000)
2014-10-29  Thomas Preud'homme  <thomas.preudhomme@arm.com>

    gcc/testsuite/
    * gcc.dg/optimize-bswapsi-1.c (swap32_e): New bswap test.
    * gcc.dg/optimize-bswapsi-3.c: New test.

From-SVN: r216830

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/optimize-bswapsi-1.c
gcc/testsuite/gcc.dg/optimize-bswapsi-3.c [new file with mode: 0644]

index e8ec94a97d7b0a9b992f08ed10963477de1e204d..52a9e5490751365a8d2dc8cbe893bd354ff6d912 100644 (file)
@@ -1,3 +1,8 @@
+2014-10-29  Thomas Preud'homme  <thomas.preudhomme@arm.com>
+
+       * gcc.dg/optimize-bswapsi-1.c (swap32_e): New bswap test.
+       * gcc.dg/optimize-bswapsi-3.c: New test.
+
 2014-10-20  Alexander Ivchenko  <alexander.ivchenko@intel.com>
            Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
            Anna Tikhonova  <anna.tikhonova@intel.com>
index 580e6e0fee2cc5ffbe14f5e688bb86bd66abcbc5..cfde2182e4cb0bc8de607744b5e95b9e0fdb8171 100644 (file)
@@ -64,5 +64,19 @@ swap32_d (SItype in)
         | (((in >> 24) & 0xFF) << 0);
 }
 
-/* { dg-final { scan-tree-dump-times "32 bit bswap implementation found at" 4 "bswap" } } */
+/* This variant is adapted from swap32_d above.  It detects missing cast of
+   MARKER_BYTE_UNKNOWN to uint64_t for the CASE_CONVERT case for host
+   architecture where a left shift with too big an operand mask its high
+   bits.  */
+
+SItype
+swap32_e (SItype in)
+{
+  return (((in >> 0) & 0xFF) << 24)
+        | (((in >> 8) & 0xFF) << 16)
+        | (((((int64_t) in) & 0xFF0000FF0000) >> 16) << 8)
+        | (((in >> 24) & 0xFF) << 0);
+}
+
+/* { dg-final { scan-tree-dump-times "32 bit bswap implementation found at" 5 "bswap" } } */
 /* { dg-final { cleanup-tree-dump "bswap" } } */
diff --git a/gcc/testsuite/gcc.dg/optimize-bswapsi-3.c b/gcc/testsuite/gcc.dg/optimize-bswapsi-3.c
new file mode 100644 (file)
index 0000000..79f2147
--- /dev/null
@@ -0,0 +1,24 @@
+/* { dg-do compile } */
+/* { dg-require-effective-target bswap32 } */
+/* { dg-require-effective-target stdint_types } */
+/* { dg-options "-O2 -fdump-tree-bswap" } */
+/* { dg-additional-options "-march=z900" { target s390-*-* } } */
+
+typedef int SItype __attribute__ ((mode (SI)));
+typedef int DItype __attribute__ ((mode (DI)));
+
+/* This variant comes from optimize-bswapsi-1.c swap32_d.  It detects a missing
+   cast of MARKER_BYTE_UNKNOWN to uint64_t for the CASE_CONVERT case for host
+   architecture where a left shift with too big an operand gives zero.  */
+
+SItype
+swap32 (SItype in)
+{
+  return (((in >> 0) & 0xFF) << 24)
+        | (((in >> 8) & 0xFF) << 16)
+        | (((((DItype) in) & 0xFF00FF0000llu) >> 16) << 8)
+        | (((in >> 24) & 0xFF) << 0);
+}
+
+/* { dg-final { scan-tree-dump-not "32 bit bswap implementation found at" "bswap" } } */
+/* { dg-final { cleanup-tree-dump "bswap" } } */