]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Sat, 29 Jun 2024 00:20:32 +0000 (00:20 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Sat, 29 Jun 2024 00:20:32 +0000 (00:20 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/testsuite/ChangeLog

index ca82b09f87c729e134d185d2cc5cbad6217e2a1b..26851373a78734e0a9d2d33052e85c5e1bdf918d 100644 (file)
@@ -1,3 +1,46 @@
+2024-06-28  Kewen Lin  <linkw@linux.ibm.com>
+
+       Backported from master:
+       2024-06-21  Kewen Lin  <linkw@linux.ibm.com>
+                   Xionghu Luo  <xionghuluo@tencent.com>
+
+       PR target/106069
+       PR target/115355
+       * config/rs6000/altivec.md (altivec_vmrghw_direct_<VSX_W:mode>): Rename
+       to ...
+       (altivec_vmrghw_direct_<VSX_W:mode>_be): ... this.  Add the condition
+       BYTES_BIG_ENDIAN.
+       (altivec_vmrghw_direct_<VSX_W:mode>_le): New define_insn.
+       (altivec_vmrglw_direct_<VSX_W:mode>): Rename to ...
+       (altivec_vmrglw_direct_<VSX_W:mode>_be): ... this.  Add the condition
+       BYTES_BIG_ENDIAN.
+       (altivec_vmrglw_direct_<VSX_W:mode>_le): New define_insn.
+       (altivec_vmrghw): Adjust by calling gen_altivec_vmrghw_direct_v4si_be
+       for BE and gen_altivec_vmrglw_direct_v4si_le for LE.
+       (altivec_vmrglw): Adjust by calling gen_altivec_vmrglw_direct_v4si_be
+       for BE and gen_altivec_vmrghw_direct_v4si_le for LE.
+       (vec_widen_umult_hi_v8hi): Adjust the call to
+       gen_altivec_vmrghw_direct_v4si by gen_altivec_vmrghw for BE
+       and by gen_altivec_vmrglw for LE.
+       (vec_widen_smult_hi_v8hi): Likewise.
+       (vec_widen_umult_lo_v8hi): Adjust the call to
+       gen_altivec_vmrglw_direct_v4si by gen_altivec_vmrglw for BE
+       and by gen_altivec_vmrghw for LE
+       (vec_widen_smult_lo_v8hi): Likewise.
+       * config/rs6000/rs6000.cc (altivec_expand_vec_perm_const): Replace
+       CODE_FOR_altivec_vmrghw_direct_v4si by
+       CODE_FOR_altivec_vmrghw_direct_v4si_be for BE and
+       CODE_FOR_altivec_vmrghw_direct_v4si_le for LE.  And replace
+       CODE_FOR_altivec_vmrglw_direct_v4si by
+       CODE_FOR_altivec_vmrglw_direct_v4si_be for BE and
+       CODE_FOR_altivec_vmrglw_direct_v4si_le for LE.
+       * config/rs6000/vsx.md (vsx_xxmrghw_<VSX_W:mode>): Adjust by calling
+       gen_altivec_vmrghw_direct_v4si_be for BE and
+       gen_altivec_vmrglw_direct_v4si_le for LE.
+       (vsx_xxmrglw_<VSX_W:mode>): Adjust by calling
+       gen_altivec_vmrglw_direct_v4si_be for BE and
+       gen_altivec_vmrghw_direct_v4si_le for LE.
+
 2024-06-27  Kyrylo Tkachov  <ktkachov@nvidia.com>
 
        * config/aarch64/aarch64-cores.def (grace): New entry.
index b08c5cee3e279a2bd135f8904c2295ac971e57e4..674b36c5c7cf5901c5fb5646d739b145297eba4f 100644 (file)
@@ -1 +1 @@
-20240628
+20240629
index def1a220cd2e8a37d45a4a4d298a0b9fa5b5caf5..5c60df32f88ee05debfcdf7deeb90ab43efdf7c6 100644 (file)
@@ -1,3 +1,14 @@
+2024-06-28  Kewen Lin  <linkw@linux.ibm.com>
+
+       Backported from master:
+       2024-06-21  Kewen Lin  <linkw@linux.ibm.com>
+                   Xionghu Luo  <xionghuluo@tencent.com>
+
+       PR target/106069
+       PR target/115355
+       * g++.target/powerpc/pr106069.C: New test.
+       * gcc.target/powerpc/pr115355.c: New test.
+
 2024-06-24  Kewen Lin  <linkw@linux.ibm.com>
 
        Backported from master: