Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Aug 2016 15:52:56 -0500
From:      Kyle Evans <kevans91@ksu.edu>
To:        Warner Losh <imp@bsdimp.com>
Cc:        "freebsd-arm@freebsd.org" <freebsd-arm@freebsd.org>, Ngie Cooper <ngie@freebsd.org>
Subject:   Re: libm long double functions on ARMv6.
Message-ID:  <CACNAnaHzLUVMaSRdazA8Ku3a1k%2BZeuVt41vEan5naY9tx4h26g@mail.gmail.com>
In-Reply-To: <CANCZdfqoH7uzLNPFNCC3enX_NnJ19SCTVVw6zMkh5CkHoR28AA@mail.gmail.com>
References:  <CACNAnaEKPytPoHdDbfgyneqyMcLhtE96J%2BnOO9ARQRkJxh9pjA@mail.gmail.com> <CANCZdfqoH7uzLNPFNCC3enX_NnJ19SCTVVw6zMkh5CkHoR28AA@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, Aug 18, 2016 at 10:36 PM, Warner Losh <imp@bsdimp.com> wrote:

> On Wed, Aug 17, 2016 at 10:41 PM, Kyle Evans <kevans91@ksu.edu> wrote:
> > Alright, apologies for the noise. I answered my own question- went
> > through the `long double` functions from msun/Makefile:101, and found
> > that `fmodl` seems to be the only one that is not properly aliased.
> >
> > The issue at [1] (r199422) seems to be relevant, so I'm CC'ing both
> > emaste@ and ngie@ as interested parties, also hoping for some
> > $0.02USD.
> >
> > I'm inlining a proposed patch at the end of this e-mail to match what
> > is currently done for all of the other `long double` functions on
> > these platforms where long double == double.
> >
> > [1] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199422
> >
> > diff --git a/lib/msun/src/e_fmod.c b/lib/msun/src/e_fmod.c
> > index 720aa03..a3578a1 100644
> > --- a/lib/msun/src/e_fmod.c
> > +++ b/lib/msun/src/e_fmod.c
> > @@ -130,3 +130,8 @@ __ieee754_fmod(double x, double y)
> >         }
> >         return x;               /* exact output */
> >  }
> > +
> > +#if LDBL_MANT_DIG == 53
> > +__weak_reference(fmod, fmodl);
> > +#endif
>
> This change looks good. Are there other functions that need this
> same treatment?
>
> And shouldn't this be
>
> #if LDBL_MANT_DIG == DBL_MANT_DIG
>
> instead?
>
> Warner
>

Hello!

If you're interested, I've amended the patch on my PR to address
consistency issues in all of these similar alias blocks. They're now all
standardized on no-parentheses and using LDBL_MANT_DIG == DBL_MANT_DIG
instead of the hard-coded 53 to convey the same meaning. You can find this
PR here: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211965

Thanks,

Kyle Evans



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CACNAnaHzLUVMaSRdazA8Ku3a1k%2BZeuVt41vEan5naY9tx4h26g>