123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- /* origin: FreeBSD /usr/src/lib/msun/src/math_private.h */
- /*
- * ====================================================
- * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
- *
- * Developed at SunPro, a Sun Microsystems, Inc. business.
- * Permission to use, copy, modify, and distribute this
- * software is freely granted, provided that this notice
- * is preserved.
- * ====================================================
- */
- #ifndef _LIBM_H
- #define _LIBM_H
- #include <stdint.h>
- #include <float.h>
- #include <math.h>
- #include <complex.h>
- #include "longdbl.h"
- #include "libc.h"
- union fshape {
- float value;
- uint32_t bits;
- };
- union dshape {
- double value;
- uint64_t bits;
- };
- #define FORCE_EVAL(x) do { \
- if (sizeof(x) == sizeof(float)) { \
- volatile float __x; \
- __x = (x); \
- } else if (sizeof(x) == sizeof(double)) { \
- volatile double __x; \
- __x = (x); \
- } else { \
- volatile long double __x; \
- __x = (x); \
- } \
- } while(0)
- /* Get two 32 bit ints from a double. */
- #define EXTRACT_WORDS(hi,lo,d) \
- do { \
- union dshape __u; \
- __u.value = (d); \
- (hi) = __u.bits >> 32; \
- (lo) = (uint32_t)__u.bits; \
- } while (0)
- /* Get a 64 bit int from a double. */
- #define EXTRACT_WORD64(i,d) \
- do { \
- union dshape __u; \
- __u.value = (d); \
- (i) = __u.bits; \
- } while (0)
- /* Get the more significant 32 bit int from a double. */
- #define GET_HIGH_WORD(i,d) \
- do { \
- union dshape __u; \
- __u.value = (d); \
- (i) = __u.bits >> 32; \
- } while (0)
- /* Get the less significant 32 bit int from a double. */
- #define GET_LOW_WORD(i,d) \
- do { \
- union dshape __u; \
- __u.value = (d); \
- (i) = (uint32_t)__u.bits; \
- } while (0)
- /* Set a double from two 32 bit ints. */
- #define INSERT_WORDS(d,hi,lo) \
- do { \
- union dshape __u; \
- __u.bits = ((uint64_t)(hi) << 32) | (uint32_t)(lo); \
- (d) = __u.value; \
- } while (0)
- /* Set a double from a 64 bit int. */
- #define INSERT_WORD64(d,i) \
- do { \
- union dshape __u; \
- __u.bits = (i); \
- (d) = __u.value; \
- } while (0)
- /* Set the more significant 32 bits of a double from an int. */
- #define SET_HIGH_WORD(d,hi) \
- do { \
- union dshape __u; \
- __u.value = (d); \
- __u.bits &= 0xffffffff; \
- __u.bits |= (uint64_t)(hi) << 32; \
- (d) = __u.value; \
- } while (0)
- /* Set the less significant 32 bits of a double from an int. */
- #define SET_LOW_WORD(d,lo) \
- do { \
- union dshape __u; \
- __u.value = (d); \
- __u.bits &= 0xffffffff00000000ull; \
- __u.bits |= (uint32_t)(lo); \
- (d) = __u.value; \
- } while (0)
- /* Get a 32 bit int from a float. */
- #define GET_FLOAT_WORD(i,d) \
- do { \
- union fshape __u; \
- __u.value = (d); \
- (i) = __u.bits; \
- } while (0)
- /* Set a float from a 32 bit int. */
- #define SET_FLOAT_WORD(d,i) \
- do { \
- union fshape __u; \
- __u.bits = (i); \
- (d) = __u.value; \
- } while (0)
- /* fdlibm kernel functions */
- int __rem_pio2_large(double*,double*,int,int,int);
- int __rem_pio2(double,double*);
- double __sin(double,double,int);
- double __cos(double,double);
- double __tan(double,double,int);
- double __expo2(double);
- double complex __ldexp_cexp(double complex,int);
- int __rem_pio2f(float,double*);
- float __sindf(double);
- float __cosdf(double);
- float __tandf(double,int);
- float __expo2f(float);
- float complex __ldexp_cexpf(float complex,int);
- int __rem_pio2l(long double, long double *);
- long double __sinl(long double, long double, int);
- long double __cosl(long double, long double);
- long double __tanl(long double, long double, int);
- /* polynomial evaluation */
- long double __polevll(long double, const long double *, int);
- long double __p1evll(long double, const long double *, int);
- // FIXME: not needed when -fexcess-precision=standard is supported (>=gcc4.5)
- /*
- * Attempt to get strict C99 semantics for assignment with non-C99 compilers.
- */
- #if 1
- #define STRICT_ASSIGN(type, lval, rval) do { \
- volatile type __v = (rval); \
- (lval) = __v; \
- } while (0)
- #else
- #define STRICT_ASSIGN(type, lval, rval) ((lval) = (type)(rval))
- #endif
- /* complex */
- #ifndef CMPLX
- #define CMPLX(x, y) __CMPLX(x, y, double)
- #define CMPLXF(x, y) __CMPLX(x, y, float)
- #define CMPLXL(x, y) __CMPLX(x, y, long double)
- #endif
- #endif
|