2016-01-05 00:05:18 +08:00
|
|
|
/* Copyright (C) 1998-2016 Free Software Foundation, Inc.
|
1998-08-23 12:09:49 +08:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Richard Henderson.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 12:56:23 +08:00
|
|
|
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.
|
1998-08-23 12:09:49 +08:00
|
|
|
|
|
|
|
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
|
2001-07-06 12:56:23 +08:00
|
|
|
Lesser General Public License for more details.
|
1998-08-23 12:09:49 +08:00
|
|
|
|
2001-07-06 12:56:23 +08:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-10 07:56:38 +08:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1998-08-23 12:09:49 +08:00
|
|
|
|
|
|
|
#include <math.h>
|
2006-02-01 11:13:45 +08:00
|
|
|
#include <math_ldbl_opt.h>
|
1998-08-23 12:09:49 +08:00
|
|
|
|
2000-03-21 04:32:11 +08:00
|
|
|
/* Use the -inf rounding mode conversion instructions to implement
|
|
|
|
ceil, via something akin to -floor(-x). This is much faster than
|
|
|
|
playing with the fpcr to achieve +inf rounding mode. */
|
|
|
|
|
1998-08-23 12:09:49 +08:00
|
|
|
double
|
|
|
|
__ceil (double x)
|
|
|
|
{
|
2016-08-02 15:18:59 +08:00
|
|
|
if (isnan (x))
|
|
|
|
return x + x;
|
|
|
|
|
2010-05-04 11:25:05 +08:00
|
|
|
if (isless (fabs (x), 9007199254740992.0)) /* 1 << DBL_MANT_DIG */
|
|
|
|
{
|
|
|
|
double tmp1, new_x;
|
|
|
|
|
|
|
|
new_x = -x;
|
|
|
|
__asm (
|
|
|
|
"cvttq/svm %2,%1\n\t"
|
|
|
|
"cvtqt/m %1,%0\n\t"
|
|
|
|
: "=f"(new_x), "=&f"(tmp1)
|
|
|
|
: "f"(new_x));
|
|
|
|
|
|
|
|
/* Fix up the negation we did above, as well as handling -0 properly. */
|
|
|
|
x = copysign(new_x, x);
|
|
|
|
}
|
|
|
|
return x;
|
1998-08-23 12:09:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
weak_alias (__ceil, ceil)
|
|
|
|
#ifdef NO_LONG_DOUBLE
|
|
|
|
strong_alias (__ceil, __ceill)
|
|
|
|
weak_alias (__ceil, ceill)
|
|
|
|
#endif
|
2006-02-01 11:13:45 +08:00
|
|
|
#if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
|
|
|
|
compat_symbol (libm, __ceil, ceill, GLIBC_2_0);
|
|
|
|
#endif
|