2009-06-27 00:47:03 +08:00
|
|
|
#ifndef __DD_HEADER
|
|
|
|
#define __DD_HEADER
|
|
|
|
|
2011-11-16 09:19:16 +08:00
|
|
|
#include "../int_lib.h"
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
typedef union {
|
|
|
|
long double ld;
|
|
|
|
struct {
|
|
|
|
double hi;
|
|
|
|
double lo;
|
2009-08-10 02:41:02 +08:00
|
|
|
}s;
|
|
|
|
}DD;
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
typedef union {
|
|
|
|
double d;
|
|
|
|
uint64_t x;
|
|
|
|
} doublebits;
|
|
|
|
|
|
|
|
#define LOWORDER(xy,xHi,xLo,yHi,yLo) \
|
|
|
|
(((((xHi)*(yHi) - (xy)) + (xHi)*(yLo)) + (xLo)*(yHi)) + (xLo)*(yLo))
|
|
|
|
|
2015-10-11 05:21:28 +08:00
|
|
|
static __inline double __attribute__((always_inline)) local_fabs(double x) {
|
|
|
|
doublebits result = {.d = x};
|
|
|
|
result.x &= UINT64_C(0x7fffffffffffffff);
|
|
|
|
return result.d;
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|
|
|
|
|
2015-10-11 05:21:28 +08:00
|
|
|
static __inline double __attribute__((always_inline)) high26bits(double x) {
|
|
|
|
doublebits result = {.d = x};
|
|
|
|
result.x &= UINT64_C(0xfffffffff8000000);
|
|
|
|
return result.d;
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|
|
|
|
|
2015-10-11 05:21:28 +08:00
|
|
|
static __inline int __attribute__((always_inline))
|
|
|
|
different_sign(double x, double y) {
|
|
|
|
doublebits xsignbit = {.d = x}, ysignbit = {.d = y};
|
|
|
|
int result = (int)(xsignbit.x >> 63) ^ (int)(ysignbit.x >> 63);
|
|
|
|
return result;
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|
|
|
|
|
2009-08-10 02:41:02 +08:00
|
|
|
#endif /* __DD_HEADER */
|