public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/116371] New: The SME2 svpext intrinsics are missing a _lane suffix
@ 2024-08-14 10:27 rsandifo at gcc dot gnu.org
  2024-08-14 10:30 ` [Bug target/116371] " rsandifo at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: rsandifo at gcc dot gnu.org @ 2024-08-14 10:27 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 116371
           Summary: The SME2 svpext intrinsics are missing a _lane suffix
           Product: gcc
           Version: 14.1.0
            Status: UNCONFIRMED
          Keywords: rejects-valid
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rsandifo at gcc dot gnu.org
  Target Milestone: ---
            Target: aarch64*-*-*

The intrinsics for PEXT are supposed to be called svpext_lane_cN and
svpext_lane_cN_x2, but GCC is missing the _lane suffix.

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

* [Bug target/116371] The SME2 svpext intrinsics are missing a _lane suffix
  2024-08-14 10:27 [Bug target/116371] New: The SME2 svpext intrinsics are missing a _lane suffix rsandifo at gcc dot gnu.org
@ 2024-08-14 10:30 ` rsandifo at gcc dot gnu.org
  2024-08-15  9:10 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: rsandifo at gcc dot gnu.org @ 2024-08-14 10:30 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Sandiford <rsandifo at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|unassigned at gcc dot gnu.org      |rsandifo at gcc dot gnu.org
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2024-08-14
             Status|UNCONFIRMED                 |ASSIGNED

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

* [Bug target/116371] The SME2 svpext intrinsics are missing a _lane suffix
  2024-08-14 10:27 [Bug target/116371] New: The SME2 svpext intrinsics are missing a _lane suffix rsandifo at gcc dot gnu.org
  2024-08-14 10:30 ` [Bug target/116371] " rsandifo at gcc dot gnu.org
@ 2024-08-15  9:10 ` cvs-commit at gcc dot gnu.org
  2024-08-15  9:13 ` rsandifo at gcc dot gnu.org
  2024-09-22  3:41 ` tnfchris at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-08-15  9:10 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from GCC Commits <cvs-commit at gcc dot gnu.org> ---
The trunk branch has been updated by Richard Sandiford <rsandifo@gcc.gnu.org>:

https://gcc.gnu.org/g:cc2d29e5f4434a3fd4e0dd93ea4f9857a0309201

commit r15-2929-gcc2d29e5f4434a3fd4e0dd93ea4f9857a0309201
Author: Richard Sandiford <richard.sandiford@arm.com>
Date:   Thu Aug 15 10:10:12 2024 +0100

    aarch64: Rename svpext to svpext_lane [PR116371]

    When implementing the SME2 ACLE, I somehow missed off the _lane
    suffix on svpext.

    gcc/
            PR target/116371
            * config/aarch64/aarch64-sve-builtins-sve2.h (svpext): Rename to...
            (svpext_lane): ...this.
            * config/aarch64/aarch64-sve-builtins-sve2.cc (svpext_impl): Rename
            to...
            (svpext_lane_impl): ...this and update instantiation accordingly.
            * config/aarch64/aarch64-sve-builtins-sve2.def (svpext): Rename
to...
            (svpext_lane): ...this.

    gcc/testsuite/
            PR target/116371
            * gcc.target/aarch64/sme2/acle-asm/pext_c16.c,
            gcc.target/aarch64/sme2/acle-asm/pext_c16_x2.c,
            gcc.target/aarch64/sme2/acle-asm/pext_c32.c,
            gcc.target/aarch64/sme2/acle-asm/pext_c32_x2.c,
            gcc.target/aarch64/sme2/acle-asm/pext_c64.c,
            gcc.target/aarch64/sme2/acle-asm/pext_c64_x2.c,
            gcc.target/aarch64/sme2/acle-asm/pext_c8.c,
            gcc.target/aarch64/sme2/acle-asm/pext_c8_x2.c: Replace with...
            * gcc.target/aarch64/sme2/acle-asm/pext_lane_c16.c,
            gcc.target/aarch64/sme2/acle-asm/pext_lane_c16_x2.c,
            gcc.target/aarch64/sme2/acle-asm/pext_lane_c32.c,
            gcc.target/aarch64/sme2/acle-asm/pext_lane_c32_x2.c,
            gcc.target/aarch64/sme2/acle-asm/pext_lane_c64.c,
            gcc.target/aarch64/sme2/acle-asm/pext_lane_c64_x2.c,
            gcc.target/aarch64/sme2/acle-asm/pext_lane_c8.c,
            gcc.target/aarch64/sme2/acle-asm/pext_lane_c8_x2.c: ...these new
tests,
            testing for svpext_lane instead of svpext.

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

* [Bug target/116371] The SME2 svpext intrinsics are missing a _lane suffix
  2024-08-14 10:27 [Bug target/116371] New: The SME2 svpext intrinsics are missing a _lane suffix rsandifo at gcc dot gnu.org
  2024-08-14 10:30 ` [Bug target/116371] " rsandifo at gcc dot gnu.org
  2024-08-15  9:10 ` cvs-commit at gcc dot gnu.org
@ 2024-08-15  9:13 ` rsandifo at gcc dot gnu.org
  2024-09-22  3:41 ` tnfchris at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: rsandifo at gcc dot gnu.org @ 2024-08-15  9:13 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Richard Sandiford <rsandifo at gcc dot gnu.org> ---
Fixed on trunk.  I'll wait a bit before backporting.

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

* [Bug target/116371] The SME2 svpext intrinsics are missing a _lane suffix
  2024-08-14 10:27 [Bug target/116371] New: The SME2 svpext intrinsics are missing a _lane suffix rsandifo at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2024-08-15  9:13 ` rsandifo at gcc dot gnu.org
@ 2024-09-22  3:41 ` tnfchris at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: tnfchris at gcc dot gnu.org @ 2024-09-22  3:41 UTC (permalink / raw)
  To: gcc-bugs

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

Tamar Christina <tnfchris at gcc dot gnu.org> changed:

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

--- Comment #3 from Tamar Christina <tnfchris at gcc dot gnu.org> ---
svpsel_lane is also misnamed.

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

end of thread, other threads:[~2024-09-22  3:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-14 10:27 [Bug target/116371] New: The SME2 svpext intrinsics are missing a _lane suffix rsandifo at gcc dot gnu.org
2024-08-14 10:30 ` [Bug target/116371] " rsandifo at gcc dot gnu.org
2024-08-15  9:10 ` cvs-commit at gcc dot gnu.org
2024-08-15  9:13 ` rsandifo at gcc dot gnu.org
2024-09-22  3:41 ` tnfchris at gcc dot gnu.org

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