public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/89229] Incorrect xmm16-xmm31/ymm16-ymm31 in vector move
       [not found] <bug-89229-4@http.gcc.gnu.org/bugzilla/>
@ 2020-03-11 12:07 ` marxin at gcc dot gnu.org
  2020-03-12 12:38 ` marxin at gcc dot gnu.org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 7+ messages in thread
From: marxin at gcc dot gnu.org @ 2020-03-11 12:07 UTC (permalink / raw)
  To: gcc-bugs

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

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |marxin at gcc dot gnu.org

--- Comment #29 from Martin Liška <marxin at gcc dot gnu.org> ---
commit r10-7078-g6733ecaf3fe77871d86bfb36bcda5497ae2aaba7
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Sun Mar 8 05:01:03 2020 -0700

    gcc.target/i386/pr89229-3c.c: Include "pr89229-3a.c"

            PR target/89229
            PR target/89346
            * gcc.target/i386/pr89229-3c.c: Include "pr89229-3a.c", instead
            of "pr89229-5a.c".

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug target/89229] Incorrect xmm16-xmm31/ymm16-ymm31 in vector move
       [not found] <bug-89229-4@http.gcc.gnu.org/bugzilla/>
  2020-03-11 12:07 ` [Bug target/89229] Incorrect xmm16-xmm31/ymm16-ymm31 in vector move marxin at gcc dot gnu.org
@ 2020-03-12 12:38 ` marxin at gcc dot gnu.org
  2020-03-13 10:28 ` marxin at gcc dot gnu.org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 7+ messages in thread
From: marxin at gcc dot gnu.org @ 2020-03-12 12:38 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #30 from Martin Liška <marxin at gcc dot gnu.org> ---
commit r10-7143-g54f46d82f54ba7a4110cef102b7c18eaf8b4b6bd
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Thu Mar 12 03:47:45 2020 -0700

    i386: Use ix86_output_ssemov for MMX TYPE_SSEMOV

    There is no need to set mode attribute to XImode since ix86_output_ssemov
    can properly encode xmm16-xmm31 registers with and without AVX512VL.

            PR target/89229
            * config/i386/i386.c (ix86_output_ssemov): Handle MODE_DI,
            MODE_V1DF and MODE_V2SF.
            * config/i386/mmx.md (MMXMODE:*mov<mode>_internal): Call
            ix86_output_ssemov for TYPE_SSEMOV.  Remove ext_sse_reg_operand
            check.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug target/89229] Incorrect xmm16-xmm31/ymm16-ymm31 in vector move
       [not found] <bug-89229-4@http.gcc.gnu.org/bugzilla/>
  2020-03-11 12:07 ` [Bug target/89229] Incorrect xmm16-xmm31/ymm16-ymm31 in vector move marxin at gcc dot gnu.org
  2020-03-12 12:38 ` marxin at gcc dot gnu.org
@ 2020-03-13 10:28 ` marxin at gcc dot gnu.org
  2020-03-14 23:12 ` cvs-commit at gcc dot gnu.org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 7+ messages in thread
From: marxin at gcc dot gnu.org @ 2020-03-13 10:28 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #31 from Martin Liška <marxin at gcc dot gnu.org> ---
commit r10-7154-gfd8679974b2ded884ffd7d912efef7fe13e4ff4f
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Fri Mar 13 02:48:59 2020 -0700

    i386: Use ix86_output_ssemov for DFmode TYPE_SSEMOV

    There is no need to set mode attribute to XImode nor V8DFmode since
    ix86_output_ssemov can properly encode xmm16-xmm31 registers with and
    without AVX512VL.

    gcc/

            PR target/89229
            * config/i386/i386.c (ix86_output_ssemov): Handle MODE_DF.
            * config/i386/i386.md (*movdf_internal): Call ix86_output_ssemov
            for TYPE_SSEMOV.  Remove TARGET_AVX512F, TARGET_PREFER_AVX256,
            TARGET_AVX512VL and ext_sse_reg_operand check.

    gcc/testsuite/

            PR target/89229
            * gcc.target/i386/pr89229-4a.c: New test.
            * gcc.target/i386/pr89229-4b.c: Likewise.
            * gcc.target/i386/pr89229-4c.c: Likewise.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug target/89229] Incorrect xmm16-xmm31/ymm16-ymm31 in vector move
       [not found] <bug-89229-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2020-03-13 10:28 ` marxin at gcc dot gnu.org
@ 2020-03-14 23:12 ` cvs-commit at gcc dot gnu.org
  2020-03-15 17:23 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 7+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-03-14 23:12 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #32 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by H.J. Lu <hjl@gcc.gnu.org>:

https://gcc.gnu.org/g:824722e45f80b22e2f035a61300f494b2a10d6f4

commit r10-7177-g824722e45f80b22e2f035a61300f494b2a10d6f4
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Sat Mar 14 16:06:55 2020 -0700

    i386: Use ix86_output_ssemov for DImode TYPE_SSEMOV

    There is no need to set mode attribute to XImode since ix86_output_ssemov
    can properly encode xmm16-xmm31 registers with and without AVX512VL.

    gcc/

            PR target/89229
            * config/i386/i386.md (*movdi_internal): Call ix86_output_ssemov
            for TYPE_SSEMOV.  Remove ext_sse_reg_operand and TARGET_AVX512VL
            check.

    gcc/testsuite/

            PR target/89229
            * gcc.target/i386/pr89229-5a.c: New test.
            * gcc.target/i386/pr89229-5b.c: Likewise.
            * gcc.target/i386/pr89229-5c.c: Likewise.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug target/89229] Incorrect xmm16-xmm31/ymm16-ymm31 in vector move
       [not found] <bug-89229-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2020-03-14 23:12 ` cvs-commit at gcc dot gnu.org
@ 2020-03-15 17:23 ` cvs-commit at gcc dot gnu.org
  2020-03-16 10:52 ` cvs-commit at gcc dot gnu.org
  2020-03-16 10:54 ` hjl.tools at gmail dot com
  6 siblings, 0 replies; 7+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-03-15 17:23 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #33 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by H.J. Lu <hjl@gcc.gnu.org>:

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

commit r10-7182-g9d74caf21be7025db8fef997e87ebf3b85acaf4a
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Sun Mar 15 10:21:08 2020 -0700

    i386: Use ix86_output_ssemov for SFmode TYPE_SSEMOV

    There is no need to set mode attribute to V16SFmode since
ix86_output_ssemov
    can properly encode xmm16-xmm31 registers with and without AVX512VL.

    gcc/

            PR target/89229
            * config/i386/i386.c (ix86_output_ssemov): Handle MODE_SI and
            MODE_SF.
            * config/i386/i386.md (*movsf_internal): Call ix86_output_ssemov
            for TYPE_SSEMOV.  Remove TARGET_PREFER_AVX256, TARGET_AVX512VL
            and ext_sse_reg_operand check.

    gcc/testsuite/

            PR target/89229
            * gcc.target/i386/pr89229-6a.c: New test.
            * gcc.target/i386/pr89229-6b.c: Likewise.
            * gcc.target/i386/pr89229-6c.c: Likewise.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug target/89229] Incorrect xmm16-xmm31/ymm16-ymm31 in vector move
       [not found] <bug-89229-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2020-03-15 17:23 ` cvs-commit at gcc dot gnu.org
@ 2020-03-16 10:52 ` cvs-commit at gcc dot gnu.org
  2020-03-16 10:54 ` hjl.tools at gmail dot com
  6 siblings, 0 replies; 7+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-03-16 10:52 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #34 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by H.J. Lu <hjl@gcc.gnu.org>:

https://gcc.gnu.org/g:5a3c42b227bbe9e7acb5335088d2255262311bd8

commit r10-7189-g5a3c42b227bbe9e7acb5335088d2255262311bd8
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Mon Mar 16 03:48:55 2020 -0700

    i386: Use ix86_output_ssemov for SImode TYPE_SSEMOV

    There is no need to set mode attribute to XImode since ix86_output_ssemov
    can properly encode xmm16-xmm31 registers with and without AVX512VL.

    Remove ext_sse_reg_operand since it is no longer needed.

    gcc/

            PR target/89229
            * config/i386/i386.md (*movsi_internal): Call ix86_output_ssemov
            for TYPE_SSEMOV.  Remove ext_sse_reg_operand and TARGET_AVX512VL
            check.
            * config/i386/predicates.md (ext_sse_reg_operand): Removed.

    gcc/testsuite/

            PR target/89229
            * gcc.target/i386/pr89229-7a.c: New test.
            * gcc.target/i386/pr89229-7b.c: Likewise.
            * gcc.target/i386/pr89229-7c.c: Likewise.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug target/89229] Incorrect xmm16-xmm31/ymm16-ymm31 in vector move
       [not found] <bug-89229-4@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2020-03-16 10:52 ` cvs-commit at gcc dot gnu.org
@ 2020-03-16 10:54 ` hjl.tools at gmail dot com
  6 siblings, 0 replies; 7+ messages in thread
From: hjl.tools at gmail dot com @ 2020-03-16 10:54 UTC (permalink / raw)
  To: gcc-bugs

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

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

--- Comment #35 from H.J. Lu <hjl.tools at gmail dot com> ---
Fixed for GCC 10.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-03-16 10:54 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-89229-4@http.gcc.gnu.org/bugzilla/>
2020-03-11 12:07 ` [Bug target/89229] Incorrect xmm16-xmm31/ymm16-ymm31 in vector move marxin at gcc dot gnu.org
2020-03-12 12:38 ` marxin at gcc dot gnu.org
2020-03-13 10:28 ` marxin at gcc dot gnu.org
2020-03-14 23:12 ` cvs-commit at gcc dot gnu.org
2020-03-15 17:23 ` cvs-commit at gcc dot gnu.org
2020-03-16 10:52 ` cvs-commit at gcc dot gnu.org
2020-03-16 10:54 ` hjl.tools at gmail dot com

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