public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Richard Sandiford <richard.sandiford@arm.com>
To: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
Cc: GCC Patches <gcc-patches@gcc.gnu.org>,
	Kyrylo Tkachov <Kyrylo.Tkachov@arm.com>
Subject: Re: [PATCH] AArch64: Add support for __builtin_roundeven[f] [PR100966]
Date: Fri, 18 Jun 2021 17:44:11 +0100	[thread overview]
Message-ID: <mptr1gzdsx0.fsf@arm.com> (raw)
In-Reply-To: <VE1PR08MB55998952B7F12166AD647A62830D9@VE1PR08MB5599.eurprd08.prod.outlook.com> (Wilco Dijkstra's message of "Fri, 18 Jun 2021 17:27:23 +0100")

Wilco Dijkstra <Wilco.Dijkstra@arm.com> writes:
> Enable __builtin_roundeven[f] by adding roundeven as an alias to the
> existing frintn support.

Although frint_pattern maps UNSPEC_FRINTN to "frintn", "frintn"
doesn't mean anything to the target-independent part of the compiler.
I assume it was just picked as a placeholder since the roundeven
optabs didn't exist at the time.

So rather than have two patterns that generate frintn, I think
it would be better to change the existing frint_pattern entry to
"roundeven" instead, and fix whatever the fallout is.  Hopefully it
shouldn't be too bad, since we already use the optab names for the
other UNSPEC_FRINT* codes.

Thanks,
Richard

> Bootstrap OK and passes regress.
>
> ChangeLog:
> 2021-06-18  Wilco Dijkstra  <wdijkstr@arm.com>
>
>         PR target/100966
>         * config/aarch64/aarch64.md (UNSPEC_FRINTR): Add.
>         * config/aarch64/aarch64.c (aarch64_frint_unspec_p): Add UNSPEC_FRINTR.
>         (aarch64_rtx_cost): Likewise.
>         * config/aarch64/iterators.md (FRINT): Add UNSPEC_FRINTR.
>         (frint_pattern): Likewise.
>         (frint_suffix): Likewise.
>
> gcc/testsuite
>         PR target/100966
>         * gcc.target/aarch64/frint.x: Add roundeven tests.
>         * gcc.target/aarch64/frint_double.c: Likewise.
>         * gcc.target/aarch64/frint_float.c: Likewise.
>
> ---
>
> diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c
> index f4d264bbc817153b330bac9ab423bf561689ebf2..63bd49d475433c04faa89bb380a9d17e4ad4bc6c 100644
> --- a/gcc/config/aarch64/aarch64.c
> +++ b/gcc/config/aarch64/aarch64.c
> @@ -12253,6 +12253,7 @@ aarch64_frint_unspec_p (unsigned int u)
>        case UNSPEC_FRINTM:
>        case UNSPEC_FRINTA:
>        case UNSPEC_FRINTN:
> +      case UNSPEC_FRINTR:
>        case UNSPEC_FRINTX:
>        case UNSPEC_FRINTI:
>          return true;
> @@ -13648,6 +13649,7 @@ cost_plus:
>                || uns_code == UNSPEC_FRINTM
>                || uns_code == UNSPEC_FRINTN
>                || uns_code == UNSPEC_FRINTP
> +             || uns_code == UNSPEC_FRINTR
>                || uns_code == UNSPEC_FRINTZ)
>              x = XVECEXP (x, 0, 0);
>          }
> diff --git a/gcc/config/aarch64/aarch64.md b/gcc/config/aarch64/aarch64.md
> index 30effca6f3562f6870a6cc8097750e63bb0d424d..70e46f28259640a273d444a2b963246ed9a91109 100644
> --- a/gcc/config/aarch64/aarch64.md
> +++ b/gcc/config/aarch64/aarch64.md
> @@ -167,6 +167,7 @@ (define_c_enum "unspec" [
>      UNSPEC_FRINTM
>      UNSPEC_FRINTN
>      UNSPEC_FRINTP
> +    UNSPEC_FRINTR
>      UNSPEC_FRINTX
>      UNSPEC_FRINTZ
>      UNSPEC_GOTSMALLPIC
> diff --git a/gcc/config/aarch64/iterators.md b/gcc/config/aarch64/iterators.md
> index cac33ae812b382cd55611b0da8a6e9eac3a513c4..1542661c6d101ed53c6e1c8683cbca32baefebbd 100644
> --- a/gcc/config/aarch64/iterators.md
> +++ b/gcc/config/aarch64/iterators.md
> @@ -2291,7 +2291,7 @@ (define_int_iterator REVERSE [UNSPEC_REV64 UNSPEC_REV32 UNSPEC_REV16])
>
>  (define_int_iterator FRINT [UNSPEC_FRINTZ UNSPEC_FRINTP UNSPEC_FRINTM
>                              UNSPEC_FRINTN UNSPEC_FRINTI UNSPEC_FRINTX
> -                            UNSPEC_FRINTA])
> +                            UNSPEC_FRINTA UNSPEC_FRINTR ])
>
>  (define_int_iterator FCVT [UNSPEC_FRINTZ UNSPEC_FRINTP UNSPEC_FRINTM
>                             UNSPEC_FRINTA UNSPEC_FRINTN])
> @@ -3079,13 +3079,14 @@ (define_int_attr frint_pattern [(UNSPEC_FRINTZ "btrunc")
>                                 (UNSPEC_FRINTI "nearbyint")
>                                 (UNSPEC_FRINTX "rint")
>                                 (UNSPEC_FRINTA "round")
> -                               (UNSPEC_FRINTN "frintn")])
> +                               (UNSPEC_FRINTN "frintn")
> +                               (UNSPEC_FRINTR "roundeven")])
>
>  ;; frint suffix for floating-point rounding instructions.
>  (define_int_attr frint_suffix [(UNSPEC_FRINTZ "z") (UNSPEC_FRINTP "p")
>                                (UNSPEC_FRINTM "m") (UNSPEC_FRINTI "i")
>                                (UNSPEC_FRINTX "x") (UNSPEC_FRINTA "a")
> -                              (UNSPEC_FRINTN "n")])
> +                              (UNSPEC_FRINTN "n") (UNSPEC_FRINTR "n")])
>
>  (define_int_attr fcvt_pattern [(UNSPEC_FRINTZ "btrunc") (UNSPEC_FRINTA "round")
>                                (UNSPEC_FRINTP "ceil") (UNSPEC_FRINTM "floor")
> diff --git a/gcc/testsuite/gcc.target/aarch64/frint.x b/gcc/testsuite/gcc.target/aarch64/frint.x
> index 1403740686ea3927d2c39eb2466ef8cc67e223b2..d598a25ff21b8feeca6a96de79848b2fbde7f31e 100644
> --- a/gcc/testsuite/gcc.target/aarch64/frint.x
> +++ b/gcc/testsuite/gcc.target/aarch64/frint.x
> @@ -4,6 +4,7 @@ extern GPF SUFFIX(floor) (GPF);
>  extern GPF SUFFIX(nearbyint) (GPF);
>  extern GPF SUFFIX(rint) (GPF);
>  extern GPF SUFFIX(round) (GPF);
> +extern GPF SUFFIX(roundeven) (GPF);
>
>  GPF test1a (GPF x)
>  {
> @@ -64,3 +65,14 @@ GPF test6b (GPF x)
>  {
>    return SUFFIX(round)(x);
>  }
> +
> +GPF test7a (GPF x)
> +{
> +  return SUFFIX(__builtin_roundeven)(x);
> +}
> +
> +GPF test7b (GPF x)
> +{
> +  return SUFFIX(roundeven)(x);
> +}
> +
> diff --git a/gcc/testsuite/gcc.target/aarch64/frint_double.c b/gcc/testsuite/gcc.target/aarch64/frint_double.c
> index 96139496ca454cebd41d31e8b018dab7ffa33a3f..1d28eb09e11842802ab632a7696de4407263f8ce 100644
> --- a/gcc/testsuite/gcc.target/aarch64/frint_double.c
> +++ b/gcc/testsuite/gcc.target/aarch64/frint_double.c
> @@ -12,3 +12,4 @@
>  /* { dg-final { scan-assembler-times "frinti\td\[0-9\]" 2 } } */
>  /* { dg-final { scan-assembler-times "frintx\td\[0-9\]" 2 } } */
>  /* { dg-final { scan-assembler-times "frinta\td\[0-9\]" 2 } } */
> +/* { dg-final { scan-assembler-times "frintn\td\[0-9\]" 2 } } */
> diff --git a/gcc/testsuite/gcc.target/aarch64/frint_float.c b/gcc/testsuite/gcc.target/aarch64/frint_float.c
> index 493ec37f940a6e8cb01ea7e324073fa22099636c..530cf975db3d52c30bce43d0c40229b2b375cdea 100644
> --- a/gcc/testsuite/gcc.target/aarch64/frint_float.c
> +++ b/gcc/testsuite/gcc.target/aarch64/frint_float.c
> @@ -12,3 +12,4 @@
>  /* { dg-final { scan-assembler-times "frinti\ts\[0-9\]" 2 } } */
>  /* { dg-final { scan-assembler-times "frintx\ts\[0-9\]" 2 } } */
>  /* { dg-final { scan-assembler-times "frinta\ts\[0-9\]" 2 } } */
> +/* { dg-final { scan-assembler-times "frintn\ts\[0-9\]" 2 } } */

  reply	other threads:[~2021-06-18 16:44 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-18 16:27 Wilco Dijkstra
2021-06-18 16:44 ` Richard Sandiford [this message]
2021-06-22 12:33   ` Wilco Dijkstra
2021-06-23 14:41     ` Richard Sandiford

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=mptr1gzdsx0.fsf@arm.com \
    --to=richard.sandiford@arm.com \
    --cc=Kyrylo.Tkachov@arm.com \
    --cc=Wilco.Dijkstra@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).