public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Tejas Belagod <Tejas.Belagod@arm.com>
To: Kyrylo Tkachov <Kyrylo.Tkachov@arm.com>,
	Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
Cc: Richard Sandiford <Richard.Sandiford@arm.com>,
	"gcc-patches@gcc.gnu.org" <gcc-patches@gcc.gnu.org>
Subject: Re: [PATCH v2] [PR96339] Optimise svlast[ab]
Date: Thu, 15 Jun 2023 04:29:29 +0000	[thread overview]
Message-ID: <AS8PR08MB70797AE68022D3B44E2030D5EA5BA@AS8PR08MB7079.eurprd08.prod.outlook.com> (raw)
In-Reply-To: <PAXPR08MB6926318302DA6CD38A56B5F0935AA@PAXPR08MB6926.eurprd08.prod.outlook.com>

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



From: Kyrylo Tkachov <Kyrylo.Tkachov@arm.com>
Date: Wednesday, June 14, 2023 at 10:11 PM
To: Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>, Tejas Belagod <Tejas.Belagod@arm.com>
Cc: Richard Sandiford <Richard.Sandiford@arm.com>, gcc-patches@gcc.gnu.org <gcc-patches@gcc.gnu.org>
Subject: RE: [PATCH v2] [PR96339] Optimise svlast[ab]


> -----Original Message-----
> From: Gcc-patches <gcc-patches-
> bounces+kyrylo.tkachov=arm.com@gcc.gnu.org> On Behalf Of Prathamesh
> Kulkarni via Gcc-patches
> Sent: Wednesday, June 14, 2023 8:13 AM
> To: Tejas Belagod <Tejas.Belagod@arm.com>
> Cc: Richard Sandiford <Richard.Sandiford@arm.com>; gcc-
> patches@gcc.gnu.org
> Subject: Re: [PATCH v2] [PR96339] Optimise svlast[ab]
>
> On Tue, 13 Jun 2023 at 12:38, Tejas Belagod via Gcc-patches
> <gcc-patches@gcc.gnu.org> wrote:
> >
> >
> >
> > From: Richard Sandiford <richard.sandiford@arm.com>
> > Date: Monday, June 12, 2023 at 2:15 PM
> > To: Tejas Belagod <Tejas.Belagod@arm.com>
> > Cc: gcc-patches@gcc.gnu.org <gcc-patches@gcc.gnu.org>, Tejas Belagod
> <Tejas.Belagod@arm.com>
> > Subject: Re: [PATCH v2] [PR96339] Optimise svlast[ab]
> > Tejas Belagod <tejas.belagod@arm.com> writes:
> > > From: Tejas Belagod <tbelagod@arm.com>
> > >
> > >   This PR optimizes an SVE intrinsics sequence where
> > >     svlasta (svptrue_pat_b8 (SV_VL1), x)
> > >   a scalar is selected based on a constant predicate and a variable vector.
> > >   This sequence is optimized to return the correspoding element of a
> NEON
> > >   vector. For eg.
> > >     svlasta (svptrue_pat_b8 (SV_VL1), x)
> > >   returns
> > >     umov    w0, v0.b[1]
> > >   Likewise,
> > >     svlastb (svptrue_pat_b8 (SV_VL1), x)
> > >   returns
> > >      umov    w0, v0.b[0]
> > >   This optimization only works provided the constant predicate maps to a
> range
> > >   that is within the bounds of a 128-bit NEON register.
> > >
> > > gcc/ChangeLog:
> > >
> > >        PR target/96339
> > >        * config/aarch64/aarch64-sve-builtins-base.cc (svlast_impl::fold): Fold
> sve
> > >        calls that have a constant input predicate vector.
> > >        (svlast_impl::is_lasta): Query to check if intrinsic is svlasta.
> > >        (svlast_impl::is_lastb): Query to check if intrinsic is svlastb.
> > >        (svlast_impl::vect_all_same): Check if all vector elements are equal.
> > >
> > > gcc/testsuite/ChangeLog:
> > >
> > >        PR target/96339
> > >        * gcc.target/aarch64/sve/acle/general-c/svlast.c: New.
> > >        * gcc.target/aarch64/sve/acle/general-c/svlast128_run.c: New.
> > >        * gcc.target/aarch64/sve/acle/general-c/svlast256_run.c: New.
> > >        * gcc.target/aarch64/sve/pcs/return_4.c (caller_bf16): Fix asm
> > >        to expect optimized code for function body.
> > >        * gcc.target/aarch64/sve/pcs/return_4_128.c (caller_bf16): Likewise.
> > >        * gcc.target/aarch64/sve/pcs/return_4_256.c (caller_bf16): Likewise.
> > >        * gcc.target/aarch64/sve/pcs/return_4_512.c (caller_bf16): Likewise.
> > >        * gcc.target/aarch64/sve/pcs/return_4_1024.c (caller_bf16): Likewise.
> > >        * gcc.target/aarch64/sve/pcs/return_4_2048.c (caller_bf16): Likewise.
> > >        * gcc.target/aarch64/sve/pcs/return_5.c (caller_bf16): Likewise.
> > >        * gcc.target/aarch64/sve/pcs/return_5_128.c (caller_bf16): Likewise.
> > >        * gcc.target/aarch64/sve/pcs/return_5_256.c (caller_bf16): Likewise.
> > >        * gcc.target/aarch64/sve/pcs/return_5_512.c (caller_bf16): Likewise.
> > >        * gcc.target/aarch64/sve/pcs/return_5_1024.c (caller_bf16): Likewise.
> > >        * gcc.target/aarch64/sve/pcs/return_5_2048.c (caller_bf16): Likewise.
> >
> > OK, thanks.
> >
> > Applied on master, thanks.
> Hi Tejas,
> This seems to break aarch64 bootstrap build with following error due
> to -Wsign-compare diagnostic:
> 00:18:19 /home/tcwg-
> buildslave/workspace/tcwg_gnu_6/abe/snapshots/gcc.git~master/gcc/config/
> aarch64/aarch64-sve-builtins-base.cc:1133:35:
> error: comparison of integer expressions of different signedness:
> ‘int’ and ‘long unsigned int’ [-Werror=sign-compare]
> 00:18:19  1133 |                 for (i = npats; i < enelts; i += step_1)
> 00:18:19          |                                 ~~^~~~~~~~
> 00:30:46 abe-debug-build: cc1plus: all warnings being treated as errors
> 00:30:46 abe-debug-build: make[3]: ***
> [/home/tcwg-
> buildslave/workspace/tcwg_gnu_6/abe/snapshots/gcc.git~master/gcc/config/
> aarch64/t-aarch64:96:
> aarch64-sve-builtins-base.o] Error 1

Fixed thusly in trunk.
Thanks,
Kyrill

gcc/ChangeLog:

        * config/aarch64/aarch64-sve-builtins-base.cc (svlast_impl::fold):
        Fix signed comparison warning in loop from npats to enelts.


Ah, sorry for breaking BS and thanks Kyrill for the fix.

Tejas.

>
> Thanks,
> Prathamesh
> >
> > Tejas.
> >
> >
> > Richard

      reply	other threads:[~2023-06-15  4:29 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-12  8:27 Tejas Belagod
2023-06-12  8:45 ` Richard Sandiford
2023-06-13  7:08   ` Tejas Belagod
2023-06-14  7:13     ` Prathamesh Kulkarni
2023-06-14 16:40       ` Kyrylo Tkachov
2023-06-15  4:29         ` Tejas Belagod [this message]

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=AS8PR08MB70797AE68022D3B44E2030D5EA5BA@AS8PR08MB7079.eurprd08.prod.outlook.com \
    --to=tejas.belagod@arm.com \
    --cc=Kyrylo.Tkachov@arm.com \
    --cc=Richard.Sandiford@arm.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=prathamesh.kulkarni@linaro.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).