From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1005) id E8E19386D60B; Fri, 12 May 2023 16:51:34 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E8E19386D60B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1683910294; bh=Tq0bY5ur+3p5CsunuhHb24eXHVeeKg/drYZkgco+7aI=; h=From:To:Subject:Date:From; b=Mav7A+wpcDo29Q6e0ju6jfL0FvxM/NzQMKdyw9rvEc7jmlZA36nxeVV+iWmNcLJiB FEz3yCD5du2iG7v0+3A7xbGcU8SoEV6fVl57wk0PrcsGrD/Z3jhbKoFKn+guDlRlcQ DQBzUX7//EdQwMtZkeRShN0NyerQo/JUkCRZ45Uk= 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/work121)] Update ChangeLog.meissner X-Act-Checkin: gcc X-Git-Author: Michael Meissner X-Git-Refname: refs/users/meissner/heads/work121 X-Git-Oldrev: e7172421680ef9c2d85a6b496ef8e303bda79e70 X-Git-Newrev: bf53f84838cd9b6b6dacec0c48b6ed0b3151f462 Message-Id: <20230512165134.E8E19386D60B@sourceware.org> Date: Fri, 12 May 2023 16:51:34 +0000 (GMT) List-Id: https://gcc.gnu.org/g:bf53f84838cd9b6b6dacec0c48b6ed0b3151f462 commit bf53f84838cd9b6b6dacec0c48b6ed0b3151f462 Author: Michael Meissner Date: Tue May 9 16:45:43 2023 -0400 Update ChangeLog.meissner Diff: --- gcc/ChangeLog.meissner | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/gcc/ChangeLog.meissner b/gcc/ChangeLog.meissner index 0a3f9b83ff1..b8ffd73b0c4 100644 --- a/gcc/ChangeLog.meissner +++ b/gcc/ChangeLog.meissner @@ -1,6 +1,6 @@ -==================== Branch work121, patch #2 ==================== +==================== Branch work121, patch #5 ==================== -PR target/105325: Fix power10_fusion +PR target/105325: Fix memory constraints for power10 fusion This patch applies stricter predicates and constraints for LD and LWA instructions with power10 fusion. These instructions are DS-form instructions, @@ -9,7 +9,7 @@ did not use the stricter predicates and constraints, and if the user used the -fstack-protector option, it would generate a non-prefixed load instruction whose offset was too big if the stack is large. -2023-05-08 Michael Meissner +2023-05-09 Michael Meissner gcc/ @@ -26,23 +26,30 @@ gcc/testsuite/ * gcc.target/powerpc/fusion-p10-ldcmpi.c: Adjust insn counts. -==================== Branch work121, patch #1 ==================== +==================== Branch work121, patch #4 ==================== -Rewrite genfusion.pl's gen_ld_cmpi_p10 function. +PR target/105325, Rewrite genfusion.pl's gen_ld_cmpi_p10 function. This patch rewrites the gen_ld_cmpi_p10 function to be clearer. The resulting -fusion.md file is exactly the same in this patch. The next patch in this series -will fix PR target/105325. +fusion.md file that this patch generates is exactly the same as the previous +version of genfusion.pl. The next patch in this series will fix PR +target/105325. -2023-05-08 Michael Meissner +2023-05-09 Michael Meissner gcc/ PR target/105325 - * config/rs6000/genfusion.pl (print_ld_cmpi_p10): New function, split - off from gen_ld_cmpi_p10. + * config/rs6000/genfusion.pl (mode_to_ldst_char): Delete. + (print_ld_cmpi_p10): New function, split off from gen_ld_cmpi_p10. (gen_ld_cmpi_p10): Rewrite completely. +==================== Branch work121, patch #3 was reverted ==================== + +==================== Branch work121, patch #2 was reverted ==================== + +==================== Branch work121, patch #1 was reverted ==================== + ==================== Branch work121, baseline ==================== 2023-05-08 Michael Meissner