|
|
|
|
#include "libm.h"
|
|
|
|
|
|
|
|
|
|
#define SIGN ((uint64_t)1<<63)
|
|
|
|
|
|
|
|
|
|
double nextafter(double x, double y)
|
|
|
|
|
{
|
|
|
|
|
union dshape ux, uy;
|
|
|
|
|
uint64_t ax, ay;
|
|
|
|
|
int e;
|
|
|
|
|
|
|
|
|
|
if (isnan(x) || isnan(y))
|
|
|
|
|
return x + y;
|
|
|
|
|
ux.value = x;
|
|
|
|
|
uy.value = y;
|
|
|
|
|
if (ux.bits == uy.bits)
|
|
|
|
|
return y;
|
|
|
|
|
ax = ux.bits & ~SIGN;
|
|
|
|
|
ay = uy.bits & ~SIGN;
|
|
|
|
|
if (ax == 0) {
|
|
|
|
|
if (ay == 0)
|
|
|
|
|
return y;
|
|
|
|
|
ux.bits = (uy.bits & SIGN) | 1;
|
|
|
|
|
} else if (ax > ay || ((ux.bits ^ uy.bits) & SIGN))
|
|
|
|
|
ux.bits--;
|
|
|
|
|
else
|
|
|
|
|
ux.bits++;
|
|
|
|
|
e = ux.bits >> 52 & 0x7ff;
|
|
|
|
|
/* raise overflow if ux.value is infinite and x is finite */
|
|
|
|
|
if (e == 0x7ff)
|
|
|
|
|
return x + x;
|
|
|
|
|
/* raise underflow if ux.value is subnormal or zero */
|
|
|
|
|
if (e == 0) {
|
|
|
|
|
volatile double z = x*x + ux.value*ux.value;
|
|
|
|
|
}
|
|
|
|
|
return ux.value;
|
|
|
|
|
}
|