public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: "Roger Sayle" <roger@nextmovesoftware.com>
To: <gcc-patches@gcc.gnu.org>
Cc: "'Uros Bizjak'" <ubizjak@gmail.com>
Subject: [x86 PATCH] Standardize shift amount constants as QImode.
Date: Sun, 18 Jun 2023 10:05:48 +0100	[thread overview]
Message-ID: <005501d9a1c4$1443cd30$3ccb6790$@nextmovesoftware.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 728 bytes --]


This clean-up improves consistency within i386.md by using QImode for
the constant shift count in patterns that specify a mode.

This patch has been tested on x86_64-pc-linux-gnu with make bootstrap
and make -k check, both with and without --target_board=unix{-m32}
with no new failures.  Ok for mainline?


2023-06-18  Roger Sayle  <roger@nextmovesoftware.com>

gcc/ChangeLog
        * config/i386/i386.md (*concat<mode><dwi>3_1): Use QImode
        for the immediate constant shift count.
        (*concat<mode><dwi>3_2): Likewise.
        (*concat<mode><dwi>3_3): Likewise.
        (*concat<mode><dwi>3_4): Likewise.
        (*concat<mode><dwi>3_5): Likewise.
        (*concat<mode><dwi>3_6): Likewise.


Thanks,
Roger
--



[-- Attachment #2: patchqi.txt --]
[-- Type: text/plain, Size: 2502 bytes --]

diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md
index 93794c1..b8d2e3a 100644
--- a/gcc/config/i386/i386.md
+++ b/gcc/config/i386/i386.md
@@ -12211,7 +12211,7 @@
   [(set (match_operand:<DWI> 0 "nonimmediate_operand" "=ro,r")
 	(any_or_plus:<DWI>
 	  (ashift:<DWI> (match_operand:<DWI> 1 "register_operand" "r,r")
-			(match_operand:<DWI> 2 "const_int_operand"))
+			(match_operand:QI 2 "const_int_operand"))
 	  (zero_extend:<DWI>
 	    (match_operand:DWIH 3 "nonimmediate_operand" "r,m"))))]
   "INTVAL (operands[2]) == <MODE_SIZE> * BITS_PER_UNIT"
@@ -12230,7 +12230,7 @@
 	  (zero_extend:<DWI>
 	    (match_operand:DWIH 1 "nonimmediate_operand" "r,m"))
 	  (ashift:<DWI> (match_operand:<DWI> 2 "register_operand" "r,r")
-			(match_operand:<DWI> 3 "const_int_operand"))))]
+			(match_operand:QI 3 "const_int_operand"))))]
   "INTVAL (operands[3]) == <MODE_SIZE> * BITS_PER_UNIT"
   "#"
   "&& reload_completed"
@@ -12247,7 +12247,7 @@
 	  (ashift:<DWI>
 	    (zero_extend:<DWI>
 	      (match_operand:DWIH 1 "nonimmediate_operand" "r,m,r,m"))
-	    (match_operand:<DWI> 2 "const_int_operand"))
+	    (match_operand:QI 2 "const_int_operand"))
 	  (zero_extend:<DWI>
 	    (match_operand:DWIH 3 "nonimmediate_operand" "r,r,m,m"))))]
   "INTVAL (operands[2]) == <MODE_SIZE> * BITS_PER_UNIT"
@@ -12267,7 +12267,7 @@
 	  (ashift:<DWI>
 	    (zero_extend:<DWI>
 	      (match_operand:DWIH 2 "nonimmediate_operand" "r,r,m,m"))
-	    (match_operand:<DWI> 3 "const_int_operand"))))]
+	    (match_operand:QI 3 "const_int_operand"))))]
   "INTVAL (operands[3]) == <MODE_SIZE> * BITS_PER_UNIT"
   "#"
   "&& reload_completed"
@@ -12281,7 +12281,7 @@
   [(set (match_operand:DWI 0 "nonimmediate_operand" "=r,o,o")
 	(any_or_plus:DWI
 	  (ashift:DWI (match_operand:DWI 1 "register_operand" "r,r,r")
-		      (match_operand:DWI 2 "const_int_operand"))
+		      (match_operand:QI 2 "const_int_operand"))
 	  (match_operand:DWI 3 "const_scalar_int_operand" "n,n,Wd")))]
   "INTVAL (operands[2]) == <MODE_SIZE> * BITS_PER_UNIT / 2
    && (<MODE>mode == DImode
@@ -12313,7 +12313,7 @@
 	  (ashift:<DWI>
 	    (zero_extend:<DWI>
 	      (match_operand:DWIH 1 "nonimmediate_operand" "r,r,r,m"))
-	    (match_operand:<DWI> 2 "const_int_operand"))
+	    (match_operand:QI 2 "const_int_operand"))
 	  (match_operand:<DWI> 3 "const_scalar_int_operand" "n,n,Wd,n")))]
   "INTVAL (operands[2]) == <MODE_SIZE> * BITS_PER_UNIT
    && (<DWI>mode == DImode

             reply	other threads:[~2023-06-18  9:05 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-18  9:05 Roger Sayle [this message]
2023-06-18 11:18 ` Uros Bizjak

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='005501d9a1c4$1443cd30$3ccb6790$@nextmovesoftware.com' \
    --to=roger@nextmovesoftware.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=ubizjak@gmail.com \
    /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).