1996-03-05 21:41:30 +00:00
|
|
|
/* s_logbf.c -- float version of s_logb.c.
|
|
|
|
* Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ====================================================
|
|
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
|
|
* Permission to use, copy, modify, and distribute this
|
2013-06-05 20:44:03 +00:00
|
|
|
* software is freely granted, provided that this notice
|
1996-03-05 21:41:30 +00:00
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
|
2012-03-09 19:29:16 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include <math_private.h>
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2012-05-10 20:11:55 +00:00
|
|
|
float
|
|
|
|
__logbf (float x)
|
1996-03-05 21:41:30 +00:00
|
|
|
{
|
2012-05-10 20:11:55 +00:00
|
|
|
int32_t ix, rix;
|
|
|
|
|
|
|
|
GET_FLOAT_WORD (ix, x);
|
|
|
|
ix &= 0x7fffffff; /* high |x| */
|
|
|
|
if (ix == 0)
|
|
|
|
return (float) -1.0 / fabsf (x);
|
|
|
|
if (ix >= 0x7f800000)
|
|
|
|
return x * x;
|
2014-02-10 13:45:42 +00:00
|
|
|
if (__glibc_unlikely ((rix = ix >> 23) == 0))
|
2012-05-10 20:11:55 +00:00
|
|
|
{
|
|
|
|
/* POSIX specifies that denormal number is treated as
|
|
|
|
though it were normalized. */
|
2012-05-25 09:57:33 +00:00
|
|
|
rix -= __builtin_clz (ix) - 9;
|
2012-05-10 20:11:55 +00:00
|
|
|
}
|
|
|
|
return (float) (rix - 127);
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
|
|
|
weak_alias (__logbf, logbf)
|