summaryrefslogblamecommitdiff
path: root/src/math/ilogbl.c
blob: 7df6eb6c96e16e5dfd22ce11920125ccb9b6d03a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                  

                                

                 
                             
                                        
                                         
                 



                                                                     

                                   
                                               
                                                      
         


                          
#include <limits.h>
#include "libm.h"

#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
int ilogbl(long double x)
{
	return ilogb(x);
}
#elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384
int ilogbl(long double x)
{
	union ldshape u = {x};
	uint64_t m = u.i.m;
	int e = u.i.se & 0x7fff;

	if (!e) {
		if (m == 0) {
			FORCE_EVAL(x/x);
			return FP_ILOGB0;
		}
		/* subnormal x */
		for (e = -0x3fff+1; m < (uint64_t)1<<63; e--, m<<=1);
		return e;
	}
	if (e == 0x7fff) {
		FORCE_EVAL(0/0.0f);
		/* in ld80 msb is set in inf */
		return m << 1 ? FP_ILOGBNAN : INT_MAX;
	}
	return e - 0x3fff;
}
#endif