public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "hjl.tools at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/94467] [10 Regression] wrong code with -mavx and ssse3 builtins
Date: Fri, 03 Apr 2020 16:27:19 +0000	[thread overview]
Message-ID: <bug-94467-4-C3p1jiGLqq@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-94467-4@http.gcc.gnu.org/bugzilla/>

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94467

--- Comment #6 from H.J. Lu <hjl.tools at gmail dot com> ---
The bug was introduced by r10-393:

commit 16ed2601ad0a4aa82f11e9df86ea92183f94f979
Author: H.J. Lu <hongjiu.lu@intel.com>
Date:   Wed May 15 15:26:19 2019 +0000

    i386: Emulate MMX pshufb with SSE version

    Emulate MMX version of pshufb with SSE version by masking out the bit 3
    of the shuffle control byte.  Only SSE register source operand is allowed.

            PR target/89021
            * config/i386/sse.md (ssse3_pshufbv8qi3): Changed to
            define_insn_and_split.  Also allow TARGET_MMX_WITH_SSE.  Add
            SSE emulation.

+(define_insn_and_split "ssse3_pshufbv8qi3"
+  [(set (match_operand:V8QI 0 "register_operand" "=y,x,Yv")
+  (unspec:V8QI [(match_operand:V8QI 1 "register_operand" "0,0,Yv")
+           (match_operand:V8QI 2 "register_mmxmem_operand" "ym,x,Yv")]
+          UNSPEC_PSHUFB))
+   (clobber (match_scratch:V4SI 3 "=X,x,Yv"))]  <<< This is an earlyclobber
operand.
+  "(TARGET_MMX || TARGET_MMX_WITH_SSE) && TARGET_SSSE3"
+  "@
+   pshufb\t{%2, %0|%0, %2}
+   #
+   #"
+  "TARGET_MMX_WITH_SSE && reload_completed"
+  [(set (match_dup 3) (match_dup 5))
+   (set (match_dup 3)
+  (and:V4SI (match_dup 3) (match_dup 2)))
+   (set (match_dup 0)
+  (unspec:V16QI [(match_dup 1) (match_dup 4)] UNSPEC_PSHUFB))]

  parent reply	other threads:[~2020-04-03 16:27 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-03 10:55 [Bug target/94467] New: " zsojka at seznam dot cz
2020-04-03 11:18 ` [Bug target/94467] " rguenth at gcc dot gnu.org
2020-04-03 11:19 ` rguenth at gcc dot gnu.org
2020-04-03 11:35 ` jakub at gcc dot gnu.org
2020-04-03 11:38 ` zsojka at seznam dot cz
2020-04-03 11:42 ` jakub at gcc dot gnu.org
2020-04-03 12:07 ` rguenth at gcc dot gnu.org
2020-04-03 16:27 ` hjl.tools at gmail dot com [this message]
2020-04-03 18:57 ` cvs-commit at gcc dot gnu.org
2020-04-03 18:58 ` hjl.tools at gmail dot com

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=bug-94467-4-C3p1jiGLqq@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@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).