re PR rtl-optimization/87817 (gcc.target/i386/bmi2-bzhi-2.c execution test)
authorJakub Jelinek <jakub@redhat.com>
Wed, 14 Nov 2018 12:36:59 +0000 (13:36 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 14 Nov 2018 12:36:59 +0000 (13:36 +0100)
PR rtl-optimization/87817
* config/i386/i386.c (ix86_fold_builtin): For _bzhi_u{32,64} if
last argument has low 8 bits clear, fold to 0.

* gcc.target/i386/bmi2-bzhi-3.c (main): Add a couple of new tests.

From-SVN: r266140

gcc/ChangeLog
gcc/config/i386/i386.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/bmi2-bzhi-3.c

index d77ae3666dbefbe499ca1d0afd9f0349a79a9dd3..6f9b26e465c5c0a05b334c5f9834def5b99722d2 100644 (file)
@@ -1,3 +1,9 @@
+2018-11-14  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/87817
+       * config/i386/i386.c (ix86_fold_builtin): For _bzhi_u{32,64} if
+       last argument has low 8 bits clear, fold to 0.
+
 2018-11-14  Iain Sandoe  <iain@sandoe.co.uk>
 
        * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Cast
index b3e0807b894a52a1c8dc641b3da0f5e8801c63c0..76a92b167f55ae77ff22037d9f94d8aa68f0e515 100644 (file)
@@ -32671,6 +32671,8 @@ ix86_fold_builtin (tree fndecl, int n_args,
              unsigned int idx = tree_to_uhwi (args[1]) & 0xff;
              if (idx >= TYPE_PRECISION (TREE_TYPE (args[0])))
                return args[0];
+             if (idx == 0)
+               return build_int_cst (TREE_TYPE (TREE_TYPE (fndecl)), 0);
              if (!tree_fits_uhwi_p (args[0]))
                break;
              unsigned HOST_WIDE_INT res = tree_to_uhwi (args[0]);
index 303bca4bd534bc81855455a82309de7e76a3f60d..d8897fa5dbe5530cc2890fdf6dc70389fc76f62c 100644 (file)
@@ -1,3 +1,8 @@
+2018-11-14  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/87817
+       * gcc.target/i386/bmi2-bzhi-3.c (main): Add a couple of new tests.
+
 2018-11-14  Wilco Dijkstra  <wdijkstr@arm.com>  
 
        * gcc.target/aarch64/pr62178.c: Relax scan-assembler checks.
index cc334eba1ba3df14ea3bc9802a7236e23d05d4f0..79905eba9b583419673291cd9ef70644f7d1dc95 100644 (file)
@@ -58,7 +58,11 @@ main ()
     link_error ();
   if (_bzhi_u32 (c, 32) != c
       || _bzhi_u32 (c, 64) != c
-      || _bzhi_u32 (c, 255) != c)
+      || _bzhi_u32 (c, 255) != c
+      || _bzhi_u32 (c, 544) != c
+      || _bzhi_u32 (c, 0) != 0
+      || _bzhi_u32 (c, 256) != 0
+      || _bzhi_u32 (c, 1024) != 0)
     link_error ();
 #ifdef __x86_64__
   if (f21 () != 0 || f22 (-1ULL) != 0
@@ -70,7 +74,11 @@ main ()
       || f33 () != -1ULL || f34 (-1ULL) != -1ULL)
     link_error ();
   if (_bzhi_u64 (d, 64) != d
-      || _bzhi_u64 (d, 255) != d)
+      || _bzhi_u64 (d, 255) != d
+      || _bzhi_u64 (d, 576) != d
+      || _bzhi_u64 (d, 0) != 0
+      || _bzhi_u64 (d, 256) != 0
+      || _bzhi_u64 (d, 512) != 0)
     link_error ();
 #endif
   return 0;