public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
To: 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]
Date: Wed, 14 Jun 2023 12:43:25 +0530	[thread overview]
Message-ID: <CAAgBjMka-bOjHVN3RH8E98V6CMy8rBsE2kvMZcuuO3psOeefmA@mail.gmail.com> (raw)
In-Reply-To: <AS8PR08MB7079FFB4A9F0BD31E6184B63EA55A@AS8PR08MB7079.eurprd08.prod.outlook.com>

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

Thanks,
Prathamesh
>
> Tejas.
>
>
> Richard

  reply	other threads:[~2023-06-14  7:14 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 [this message]
2023-06-14 16:40       ` Kyrylo Tkachov
2023-06-15  4:29         ` Tejas Belagod

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=CAAgBjMka-bOjHVN3RH8E98V6CMy8rBsE2kvMZcuuO3psOeefmA@mail.gmail.com \
    --to=prathamesh.kulkarni@linaro.org \
    --cc=Richard.Sandiford@arm.com \
    --cc=Tejas.Belagod@arm.com \
    --cc=gcc-patches@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).