public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Michael Meissner <meissner@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc(refs/users/meissner/heads/work119)] Update ChangeLog.meissner.
Date: Fri, 21 Apr 2023 19:01:33 +0000 (GMT)	[thread overview]
Message-ID: <20230421190133.56B713858C83@sourceware.org> (raw)

https://gcc.gnu.org/g:9c4f9bcb321c704b7a24ec1f101f3e2df2a5a0ce

commit 9c4f9bcb321c704b7a24ec1f101f3e2df2a5a0ce
Author: Michael Meissner <meissner@linux.ibm.com>
Date:   Fri Apr 21 15:00:58 2023 -0400

    Update ChangeLog.meissner.
    
    2023-04-21   Michael Meissner  <meissner@linux.ibm.com>
    
    gcc/
    
            * ChangeLog.meissner: Update.

Diff:
---
 gcc/ChangeLog.meissner | 144 +++++++++----------------------------------------
 1 file changed, 25 insertions(+), 119 deletions(-)

diff --git a/gcc/ChangeLog.meissner b/gcc/ChangeLog.meissner
index b16a81f8d58..82745912b34 100644
--- a/gcc/ChangeLog.meissner
+++ b/gcc/ChangeLog.meissner
@@ -1,151 +1,57 @@
-==================== Branch work119, patch #49 ====================
+==================== Branch work119, patch #51 ====================
 
-Fold sign or zero extension into vsx_extract from memory with variable element.
-
-This patch folds conversion to floating point of vsx_extract from memory of V4SI
-elements where the element number is constant.  This code optimizes things so it
-will load the integer with LFIWAX or LFIWZX directly into a vector register
-rather than loading it into a GPR and doing a direct move operation.
-
-2023-04-21   Michael Meissner  <meissner@linux.ibm.com>
-
-gcc/
-
-	* config/rs6000/vsx.md (vsx_extract_v4si_var_load_to_<uns><mode>): New
-	insn.
-
-gcc/testsuite/
-
-	* gcc.target/powerpc/vec-extract-mem-int-4.c: New file.
-
-==================== Branch work119, patch #48 ====================
+Combine vec_extract of V4SF with DF convert.
 
-Fold sign or zero convert into variable vsx_extract from memory.
+This patch adds a combine insn that merges loading up a vec_extract of V4SFmode
+where the element number is constant combined with a conversion to DFmode.
 
-This patch folds sign or zero convert operations into vsx_extract from memory
-where the element number is constant.
+In addition, I changed the vec_extract of V4SFmode where the element number is
+constant without conversion to do the split before register allocation.
 
 2023-04-21   Michael Meissner  <meissner@linux.ibm.com>
 
 gcc/
 
-	* config/rs6000/vsx.md (vsx_extract_<mode>_var_load_to_udi): New insn.
-	(vsx_extract_<mode>_var_load_to_sdi): New insn.
-	(vsx_extract_v8hi_var_load_to_<su>si): New insn.
+	* config/rs6000/vsx.md (vsx_extract_v4sf_load): Allow split before
+	register allocation.
+	(vsx_extract_v4sf_to_df_load): New insn.
 
 gcc/testsuite/
 
-	* gcc.target/powerpc/vec-extract-mem-char-2.c: New file.
-	* gcc.target/powerpc/vec-extract-mem-int-3.c: New file.
-	* gcc.target/powerpc/vec-extract-mem-short-2.c: New file.
-
-==================== Branch work119, patch #47 ====================
-
-Allow vec_extract with variable element number to load vector registers.
-
-2023-04-21   Michael Meissner  <meissner@linux.ibm.com>
-
-gcc/
-
-	* config/rs6000/vsx.md (vsx_extract_<mode>_var_load): Allow vec_extract
-	of integer types with a variable element number to load into vector
-	registers.  Allow splitting before register allocation.
-
-==================== Branch work119, patch #46 ====================
+	* gcc.target/powerpc/vec-extract-mem-float-1.c: New test.
 
-Combine variable element vec_extract of V4SF with DF convert.
+==================== Branch work119, patch #50 ====================
 
-This patch adds a combine insn that merges loading up a vec_extract of V4SFmode
-where the element number is variable combined with a conversion to DFmode.
+Allow vec_extract support functions to be called before reload.
 
 2023-04-21   Michael Meissner  <meissner@linux.ibm.com>
 
 gcc/
 
-	* config/rs6000/vsx.md (vsx_extract_v4sf_var_load_to_df): New insn.
-
-==================== Branch work119, patch #45 ====================
-
-Fold conversion to float into V4SI vsx_extract from memory.
+	* config/rs6000/rs6000.cc (get_vector_offset): Allow being called before
+	register allocation.
+	(adjust_vec_address_pcrel): Likewise.
+	(rs6000_adjust_vec_address): Likewise.
 
-This patch folds conversion to floating point of vsx_extract from memory of V4SI
-elements where the element number is constant.  This code optimizes things so it
-will load the integer with LFIWAX or LFIWZX directly into a vector register
-rather than loading it into a GPR and doing a direct move operation.
+==================== Branch work119, patch #49 was reverted ====================
 
-2023-04-18   Michael Meissner  <meissner@linux.ibm.com>
+==================== Branch work119, patch #48 was reverted ====================
 
-gcc/
-
-	* config/rs6000/vsx.md (SIGN_ZERO_EXTEND): New mode attribute.
-	(vsx_extract_v4si_load_to_<uns><mode>): New insn.
+==================== Branch work119, patch #47 was reverted ====================
 
-gcc/testsuite/
+==================== Branch work119, patch #46 was reverted ====================
 
-	* gcc.target/powerpc/vec-extract-mem-int-2.c: New file.
+==================== Branch work119, patch #45 was reverted ====================
 
 ==================== Branch work119, patch #44 was reverted ====================
 
-==================== Branch work119, patch #43 ====================
+==================== Branch work119, patch #43 was reverted ====================
 
-Fold sign or zero convert into vsx_extract from memory.
+==================== Branch work119, patch #42 was reverted ====================
 
-This patch folds sign or zero convert operations into vsx_extract from memory
-where the element number is constant.
+==================== Branch work119, patch #41 was reverted ====================
 
-2023-04-21   Michael Meissner  <meissner@linux.ibm.com>
-
-gcc/
-
-	* config/rs6000/vsx.md (VSX_EXTRACT_ISIGN): New mode attribute.
-	(vsx_extract_<mode>_load_to_udi): New insn.
-	(vsx_extract_<mode>_load_to_sdi): New insn.
-	(vsx_extract_v8hi_load_to_<su>si): New insn.
-
-gcc/testsuite/
-
-	* gcc.target/powerpc/vec-extract-mem-char-1.c: New file.
-	* gcc.target/powerpc/vec-extract-mem-int-1.c: New file.
-	* gcc.target/powerpc/vec-extract-mem-short-1.c: New file.
-
-==================== Branch work119, patch #42 ====================
-
-Allow vec_extract to load vector registers.
-
-2023-04-18   Michael Meissner  <meissner@linux.ibm.com>
-
-gcc/
-
-	* config/rs6000/vsx.md (VSX_EX_ISA): New mode attribute
-	(vsx_extract_<mode>_load): Allow vec_extract of integer types with a
-	constant element number to load into vector registers.  Allow splitting
-	before register allocation.
-
-==================== Branch work119, patch #41 ====================
-
-Combine vec_extract of V4SF with DF convert.
-
-This patch adds a combine insn that merges loading up a vec_extract of V4SFmode
-where the element number is constant combined with a conversion to DFmode.
-
-2023-04-18   Michael Meissner  <meissner@linux.ibm.com>
-
-gcc/
-
-	* config/rs6000/vsx.md (vsx_extract_v4sf_to_df_load): New insn.
-
-==================== Branch work119, patch #40 ====================
-
-Allow vec_extract support functions to be called before reload.
-
-2023-04-19   Michael Meissner  <meissner@linux.ibm.com>
-
-gcc/
-
-	* config/rs6000/rs6000.cc (get_vector_offset): Allow being called before
-	register allocation.
-	(adjust_vec_address_pcrel): Likewise.
-	(rs6000_adjust_vec_address): Likewise.
+==================== Branch work119, patch #40 was reverted ====================
 
 ==================== Branch work119, patch #33 was reverted ====================

             reply	other threads:[~2023-04-21 19:01 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-21 19:01 Michael Meissner [this message]
2023-04-25  2:03 Michael Meissner
2023-04-25  2:04 Michael Meissner
2023-04-25  2:55 Michael Meissner
2023-04-25 15:56 Michael Meissner
2023-04-26  5:14 Michael Meissner
2023-04-26 15:47 Michael Meissner
2023-04-26 16:21 Michael Meissner
2023-04-26 23:44 Michael Meissner
2023-04-26 23:55 Michael Meissner
2023-04-28  3:37 Michael Meissner
2023-04-28  3:44 Michael Meissner
2023-04-28  6:37 Michael Meissner
2023-04-28 19:48 Michael Meissner
2023-04-29  4:10 Michael Meissner
2023-05-01 17:24 Michael Meissner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230421190133.56B713858C83@sourceware.org \
    --to=meissner@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).