2007-03-15 01:44:14 +08:00
|
|
|
/* Copyright (C) 1998, 2000, 2007 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
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
1998-08-23 12:09:49 +08:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
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
|
|
|
float
|
|
|
|
__ceilf (float x)
|
|
|
|
{
|
2007-03-15 01:44:14 +08:00
|
|
|
float two23 = copysignf (0x1.0p23, x);
|
|
|
|
float r, tmp;
|
|
|
|
|
|
|
|
__asm (
|
1998-08-23 12:09:49 +08:00
|
|
|
#ifdef _IEEE_FP_INEXACT
|
2007-03-15 01:44:14 +08:00
|
|
|
"adds/suim %2, %3, %1\n\tsubs/suim %1, %3, %0"
|
1998-08-23 12:09:49 +08:00
|
|
|
#else
|
2007-03-15 01:44:14 +08:00
|
|
|
"adds/sum %2, %3, %1\n\tsubs/sum %1, %3, %0"
|
1998-08-23 12:09:49 +08:00
|
|
|
#endif
|
2007-03-15 01:44:14 +08:00
|
|
|
: "=&f"(r), "=&f"(tmp)
|
|
|
|
: "f"(-x), "f"(-two23));
|
|
|
|
|
|
|
|
/* Fix up the negation we did above, as well as handling -0 properly. */
|
|
|
|
return copysignf (r, x);
|
1998-08-23 12:09:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
weak_alias (__ceilf, ceilf)
|