public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [committed] i386: Fix shifts with high register input operand [PR113044]
@ 2023-12-21 15:02 Uros Bizjak
  0 siblings, 0 replies; only message in thread
From: Uros Bizjak @ 2023-12-21 15:02 UTC (permalink / raw)
  To: gcc-patches

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

The move to the output operand should use high register input operand.

           PR target/113044

   gcc/ChangeLog:

           * config/i386/i386.md (*ashlqi_ext<mode>_1): Move from the
           high register of the input operand.
           (*<insn>qi_ext<mode>_1): Ditto.

   gcc/testsuite/ChangeLog:

           * gcc.target/i386/pr113044.c: New test.

Bootstrapped and regression tested on x86_64-linux-gnu {,-m32}.

Uros,

[-- Attachment #2: p.diff.txt --]
[-- Type: text/plain, Size: 1530 bytes --]

diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md
index 710068e9093..4c6368bf3b7 100644
--- a/gcc/config/i386/i386.md
+++ b/gcc/config/i386/i386.md
@@ -15527,7 +15527,8 @@ (define_insn_and_split "*ashlqi_ext<mode>_1"
    && !(rtx_equal_p (operands[0], operands[1]))"
   [(set (zero_extract:SWI248
 	  (match_dup 0) (const_int 8) (const_int 8))
-	(match_dup 1))
+	(zero_extract:SWI248
+	  (match_dup 1) (const_int 8) (const_int 8)))
    (parallel
      [(set (zero_extract:SWI248
 	     (match_dup 0) (const_int 8) (const_int 8))
@@ -16689,7 +16690,8 @@ (define_insn_and_split "*<insn>qi_ext<mode>_1"
    && !(rtx_equal_p (operands[0], operands[1]))"
   [(set (zero_extract:SWI248
 	  (match_dup 0) (const_int 8) (const_int 8))
-	(match_dup 1))
+	(zero_extract:SWI248
+	  (match_dup 1) (const_int 8) (const_int 8)))
    (parallel
      [(set (zero_extract:SWI248
 	     (match_dup 0) (const_int 8) (const_int 8))
diff --git a/gcc/testsuite/gcc.target/i386/pr113044.c b/gcc/testsuite/gcc.target/i386/pr113044.c
new file mode 100644
index 00000000000..923e7f48299
--- /dev/null
+++ b/gcc/testsuite/gcc.target/i386/pr113044.c
@@ -0,0 +1,24 @@
+/* PR target/113044 */
+/* { dg-do run } */
+/* { dg-options "-O" } */
+
+typedef unsigned char __attribute__((__vector_size__ (2))) V;
+
+V
+foo (char c, V v)
+{
+  V x = v >> (v & 8);
+  volatile char d = c;
+  if (!d)
+    __builtin_abort();
+  return x;
+}
+
+int
+main (void)
+{
+  V x = foo (10, (V){3});
+  if (x[0] != 3 || x[1])
+    __builtin_abort();
+  return 0;
+}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-12-21 15:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-21 15:02 [committed] i386: Fix shifts with high register input operand [PR113044] Uros Bizjak

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).