From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1005) id CD6623858C52; Fri, 29 Sep 2023 04:40:08 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CD6623858C52 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1695962408; bh=sURPK//p/tO8jC5BrAblaCsdQAMMKy7V9YTdN8AqoXk=; h=From:To:Subject:Date:From; b=c44ru+5CVlSEZRQdoRKep4rUBcySwLbQ/BgiNXd3NwXf4Xp7Rx5A2EM8F+YhVs1cm iTD8sthnSxuZTPPVMkls2orX3pBEgHgoQ+XpW0aagjAuTAtX2LNGZOf3geQJgQoOJ3 /0yQVn3nVKs18dv22SJP/yXxPYk59gLHuSM/V620= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Michael Meissner To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/meissner/heads/work137)] Update ChangeLog.meissner X-Act-Checkin: gcc X-Git-Author: Michael Meissner X-Git-Refname: refs/users/meissner/heads/work137 X-Git-Oldrev: 92669293016dfcec0b681ff8c6f0c903d5390c18 X-Git-Newrev: b2c0322955f1ceb1d1f867149927d14831884039 Message-Id: <20230929044008.CD6623858C52@sourceware.org> Date: Fri, 29 Sep 2023 04:40:08 +0000 (GMT) List-Id: https://gcc.gnu.org/g:b2c0322955f1ceb1d1f867149927d14831884039 commit b2c0322955f1ceb1d1f867149927d14831884039 Author: Michael Meissner Date: Fri Sep 29 00:40:05 2023 -0400 Update ChangeLog.meissner Diff: --- gcc/ChangeLog.meissner | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) diff --git a/gcc/ChangeLog.meissner b/gcc/ChangeLog.meissner index 354dadc1caa..43dde47df61 100644 --- a/gcc/ChangeLog.meissner +++ b/gcc/ChangeLog.meissner @@ -1,5 +1,91 @@ +==================== Branch work137, patch #2 ==================== + +Add options to disable load and store vector pair. + +2023-09-29 Michael Meissner + +gcc/ + + * config/rs6000/mma.md (movoo): Add support for + -menable-load-vector-pair and -menable-store-vector-pair. + * config/rs6000/rs6000-cpus.def (OTHER_POWER10_MASKS): Likewise. + (POWERPC_MASKS): Likewise. + * config/rs6000/rs6000.md (rs6000_setup_reg_addr_masks): If load vector + pair or store vector pair instructions are not being generated, don't + allow lxvpx or stxvpx to be generated. + (rs6000_option_override_internal): Add warnings if either + -menable-load-vector-pair or -menable-store-vector-pair is used without + having MMA instructions. + (rs6000_opt_masks): Allow user to override -menable-load-vector-pair or + -menable-store-vector-pair. + * config/rs6000/rs6000.opt (-menable-load-vector-pair): New option. + (-menable-store-vector-pair): Likewise. + +gcc/testsuite/ + + * gcc.target/powerpc/vector-pair-switch1.c: New test. + * gcc.target/powerpc/vector-pair-switch2.c: New test. + * gcc.target/powerpc/vector-pair-switch3.c: New test. + * gcc.target/powerpc/vector-pair-switch4.c: New test. + * gcc.target/powerpc/vector-pair-switch5.c: New test. + +==================== Branch work137, patch #1 ==================== + +Replace UNSPEC_COPYSIGN with copysign RTL + +When I first implemented COPYSIGN support in the power7 days, we did not have a +copysign RTL insn, so I had to use UNSPEC to represent the copysign +instruction. This patch removes those UNSPECs, and it uses the native RTL +copysign insn. + +2023-09-29 Michael Meissner + +gcc/ + + * config/rs6000/rs6000.md (UNSPEC_COPYSIGN): Delete. + (copysign3_fcpsg): Use copysign RTL instead of UNSPEC. + (copysign3_hard): Likewise. + (copysign3_soft): Likewise. + * config/rs6000/vector.md (vector_copysign3): Use copysign RTL + instead of UNSPEC. + * config/rs6000/vsx.md (vsx_copysign3): Use copysign RTL instead + of UNSPEC. + ==================== Branch work137, baseline ==================== +Add ChangeLog.meissner and REVISION. + +2023-09-29 Michael Meissner + +gcc/ + + * REVISION: New file for branch. + * ChangeLog.meissner: New file. + +gcc/c-family/ + + * ChangeLog.meissner: New file. + +gcc/c/ + + * ChangeLog.meissner: New file. + +gcc/cp/ + + * ChangeLog.meissner: New file. + +gcc/fortran/ + + * ChangeLog.meissner: New file. + +gcc/testsuite/ + + * ChangeLog.meissner: New file. + +libgcc/ + + * ChangeLog.meissner: New file. + 2023-09-29 Michael Meissner Clone branch