+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>
| (((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" } } */
--- /dev/null
+/* { 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" } } */