summaryrefslogtreecommitdiff
path: root/src/math/ilogb.c
blob: c5915a0ca4b306e670af772b137d6a94a38a1077 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <limits.h>
#include "libm.h"

int ilogb(double x)
{
	union dshape u = {x};
	int e = u.bits>>52 & 0x7ff;

	if (!e) {
		u.bits <<= 12;
		if (u.bits == 0)
			return FP_ILOGB0;
		/* subnormal x */
		// FIXME: scale up subnormals with a *0x1p53 or find top set bit with a better method
		for (e = -0x3ff; u.bits < (uint64_t)1<<63; e--, u.bits<<=1);
		return e;
	}
	if (e == 0x7ff)
		return u.bits<<12 ? FP_ILOGBNAN : INT_MAX;
	return e - 0x3ff;
}