s_logb.c revision 97413
12116Sjkh/* @(#)s_logb.c 5.1 93/09/24 */
22116Sjkh/*
32116Sjkh * ====================================================
42116Sjkh * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
52116Sjkh *
62116Sjkh * Developed at SunPro, a Sun Microsystems, Inc. business.
72116Sjkh * Permission to use, copy, modify, and distribute this
88870Srgrimes * software is freely granted, provided that this notice
92116Sjkh * is preserved.
102116Sjkh * ====================================================
112116Sjkh */
122116Sjkh
132116Sjkh#ifndef lint
1450476Speterstatic char rcsid[] = "$FreeBSD: head/lib/msun/src/s_logb.c 97413 2002-05-28 18:15:04Z alfred $";
152116Sjkh#endif
162116Sjkh
172116Sjkh/*
182116Sjkh * double logb(x)
192116Sjkh * IEEE 754 logb. Included to pass IEEE test suite. Not recommend.
202116Sjkh * Use ilogb instead.
212116Sjkh */
222116Sjkh
232116Sjkh#include "math.h"
242116Sjkh#include "math_private.h"
252116Sjkh
2697413Salfreddouble
2797413Salfred__generic_logb(double x)
282116Sjkh{
292116Sjkh	int32_t lx,ix;
302116Sjkh	EXTRACT_WORDS(ix,lx,x);
312116Sjkh	ix &= 0x7fffffff;			/* high |x| */
322116Sjkh	if((ix|lx)==0) return -1.0/fabs(x);
332116Sjkh	if(ix>=0x7ff00000) return x*x;
342116Sjkh	if((ix>>=20)==0) 			/* IEEE 754 logb */
358870Srgrimes		return -1022.0;
362116Sjkh	else
378870Srgrimes		return (double) (ix-1023);
382116Sjkh}
39