public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
To: libc-alpha@sourceware.org, Paul Zimmermann <Paul.Zimmermann@inria.fr>
Subject: Re: [PATCH 1/9] Auxiliary function for reduction modulo 2*pi.
Date: Tue, 30 Mar 2021 09:51:30 -0300	[thread overview]
Message-ID: <ee107c15-4dd1-26d7-ee07-8c5c68f065d5@linaro.org> (raw)
In-Reply-To: <20210319150626.1206905-1-Paul.Zimmermann@inria.fr>



On 19/03/2021 12:06, Paul Zimmermann wrote:
> ---
>  sysdeps/ieee754/flt-32/reduce_aux.c | 55 +++++++++++++++++++++++++++++

I think it is better to move it to a header with proper include guards,
since it is usual way of defining internal static inline functions (just
rename to reduce_aux.h and add #ifndef guards).

I also tried to move it to its own TU to see what kind of code size gain
it would yield. For aarch64 I am seeing a reduction of 488 bytes, so if
you might consider it if this is not a performance-wise routine.

LGTM with the header change.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>

>  1 file changed, 55 insertions(+)
>  create mode 100644 sysdeps/ieee754/flt-32/reduce_aux.c
> 
> diff --git a/sysdeps/ieee754/flt-32/reduce_aux.c b/sysdeps/ieee754/flt-32/reduce_aux.c
> new file mode 100644
> index 0000000000..412b4d22cb
> --- /dev/null
> +++ b/sysdeps/ieee754/flt-32/reduce_aux.c
> @@ -0,0 +1,55 @@
> +/* Auxiliary routine for the Bessel functions (j0f, y0f, j1f, y1f).
> +   Copyright (C) 2021 Free Software Foundation, Inc.
> +   This file is part of the GNU C Library.
> +
> +   The GNU C Library is free software; you can redistribute it and/or
> +   modify it under the terms of the GNU Lesser General Public
> +   License as published by the Free Software Foundation; either
> +   version 2.1 of the License, or (at your option) any later version.
> +
> +   The GNU C Library is distributed in the hope that it will be useful,
> +   but WITHOUT ANY WARRANTY; without even the implied warranty of
> +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> +   Lesser General Public License for more details.
> +
> +   You should have received a copy of the GNU Lesser General Public
> +   License along with the GNU C Library; if not, see
> +   <https://www.gnu.org/licenses/>.  */
> +
> +/* Return h and update n such that:
> +   Now x - pi/4 - alpha = h + n*pi/2 mod (2*pi).  */
> +static inline double
> +reduce_aux (float x, int *n, double alpha)
> +{
> +  double h;
> +  h = reduce_large (asuint (x), n);
> +  /* Now |x| = h+n*pi/2 mod 2*pi.  */
> +  /* Recover sign.  */
> +  if (x < 0)
> +    {
> +      h = -h;
> +      *n = -*n;
> +    }
> +  /* Subtract pi/4.  */
> +  double piover2 = 0xc.90fdaa22168cp-3;
> +  if (h >= 0)
> +    h -= piover2 / 2;
> +  else
> +    {
> +      h += piover2 / 2;
> +      (*n) --;
> +    }
> +  /* Subtract alpha and reduce if needed mod pi/2.  */
> +  h -= alpha;
> +  if (h > piover2)
> +    {
> +      h -= piover2;
> +      (*n) ++;
> +    }
> +  else if (h < -piover2)
> +    {
> +      h += piover2;
> +      (*n) --;
> +    }
> +  return h;
> +}
> 

  parent reply	other threads:[~2021-03-30 12:51 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-19 15:06 Paul Zimmermann
2021-03-19 15:06 ` [PATCH 2/9] Fix the inaccuracy of j0f and of y0f [BZ #14469 and #14471] Paul Zimmermann
2021-03-30 16:59   ` Adhemerval Zanella
2021-03-19 15:06 ` [PATCH 3/9] Fix the inaccuracy of j1f (BZ 14470) and y1f (BZ 14472) Paul Zimmermann
2021-03-30 17:27   ` Adhemerval Zanella
2021-03-30 17:46     ` Paul Zimmermann
2021-03-30 18:09       ` Adhemerval Zanella
2021-03-19 15:06 ` [PATCH 4/9] Added new entries for j0/j1/y0/y1 and regenerate ulps Paul Zimmermann
2021-03-30 16:13   ` Adhemerval Zanella
2021-03-19 15:06 ` [PATCH 5/9] ulps update for sparc (from Adhemerval Zanella) Paul Zimmermann
2021-03-19 15:06 ` [PATCH 6/9] ulps update for s390 " Paul Zimmermann
2021-03-19 15:06 ` [PATCH 7/9] ulps update for aarch64 " Paul Zimmermann
2021-03-19 15:06 ` [PATCH 8/9] ulps update for powerpc " Paul Zimmermann
2021-03-19 15:06 ` [PATCH 9/9] ulps update for x86_64 Paul Zimmermann
2021-03-30 12:51 ` Adhemerval Zanella [this message]
2021-03-30 17:24   ` [PATCH 1/9] Auxiliary function for reduction modulo 2*pi Paul Zimmermann
2021-03-30 17:28     ` Adhemerval Zanella

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=ee107c15-4dd1-26d7-ee07-8c5c68f065d5@linaro.org \
    --to=adhemerval.zanella@linaro.org \
    --cc=Paul.Zimmermann@inria.fr \
    --cc=libc-alpha@sourceware.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).