mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-17 03:49:46 +08:00
3cc8a378d1
Jeff Johnston <jjohnstn@redhhat.com> * libc/include/_ansi.h: Add _LONG_LONG definition. * libc/include/math.h (llrint, llrintf, rintl, lrintl, llrintl): Add prototypes. * libc/machine/i386/machine/fastmath.h: Add support for new i386 fast math versions of rint, lrint, and llrint family functions. * libm/machine/i386/Makefile.am: Add new files. * libm/machine/i386/Makefile.in: Regenerated. * libm/machine/i386/f_llrint.c, libm/machine/i386/f_lrint.c, libm/machine/i386/f_rint.c, libm/machine/i386/f_llrintf.c, libm/machine/i386/f_lrintf.c, libm/machine/i386/f_rintf.c, libm/machine/i386/f_llrintl.c, libm/machine/i386/f_lrintl.c, libm/machine/i386/f_rintl.c: New files with fast math implementations.
39 lines
908 B
C
39 lines
908 B
C
/*
|
|
* ====================================================
|
|
* x87 FP implementation contributed to Newlib by
|
|
* Dave Korn, November 2007. This file is placed in the
|
|
* public domain. Permission to use, copy, modify, and
|
|
* distribute this software is freely granted.
|
|
* ====================================================
|
|
*/
|
|
|
|
#ifdef __GNUC__
|
|
#if !defined(_SOFT_FLOAT)
|
|
|
|
#include <math.h>
|
|
|
|
/*
|
|
* Fast math version of llrintl(x)
|
|
* Return x rounded to integral value according to the prevailing
|
|
* rounding mode.
|
|
* Method:
|
|
* Using inline x87 asms.
|
|
* Exception:
|
|
* Governed by x87 FPCR.
|
|
*/
|
|
|
|
long long int _f_llrintl (long double x)
|
|
{
|
|
long long int _result;
|
|
asm ("fistpll %0" : "=m" (_result) : "t" (x) : "st");
|
|
return _result;
|
|
}
|
|
|
|
/* For now, we only have the fast math version. */
|
|
long long int llrintl (long double x) {
|
|
return _f_llrintl(x);
|
|
}
|
|
|
|
#endif /* !_SOFT_FLOAT */
|
|
#endif /* __GNUC__ */
|