math: remove *_WORD64 macros from libm.h
[musl] / src / internal / libm.h
1 /* origin: FreeBSD /usr/src/lib/msun/src/math_private.h */
2 /*
3  * ====================================================
4  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5  *
6  * Developed at SunPro, a Sun Microsystems, Inc. business.
7  * Permission to use, copy, modify, and distribute this
8  * software is freely granted, provided that this notice
9  * is preserved.
10  * ====================================================
11  */
12
13 #ifndef _LIBM_H
14 #define _LIBM_H
15
16 #include <stdint.h>
17 #include <float.h>
18 #include <math.h>
19 #include <complex.h>
20 #include <endian.h>
21
22 #include "libc.h"
23
24 union fshape {
25         float value;
26         uint32_t bits;
27 };
28
29 union dshape {
30         double value;
31         uint64_t bits;
32 };
33
34 #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
35 #elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384 && __BYTE_ORDER == __LITTLE_ENDIAN
36 union ldshape {
37         long double f;
38         struct {
39                 uint64_t m;
40                 uint16_t se;
41         } i;
42 };
43 #elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384 && __BYTE_ORDER == __LITTLE_ENDIAN
44 union ldshape {
45         long double f;
46         struct {
47                 uint64_t lo;
48                 uint32_t mid;
49                 uint16_t top;
50                 uint16_t se;
51         } i;
52         struct {
53                 uint64_t lo;
54                 uint64_t hi;
55         } i2;
56 };
57 #else
58 #error Unsupported long double representation
59 #endif
60
61 #define FORCE_EVAL(x) do {                          \
62         if (sizeof(x) == sizeof(float)) {           \
63                 volatile float __x;                 \
64                 __x = (x);                          \
65         } else if (sizeof(x) == sizeof(double)) {   \
66                 volatile double __x;                \
67                 __x = (x);                          \
68         } else {                                    \
69                 volatile long double __x;           \
70                 __x = (x);                          \
71         }                                           \
72 } while(0)
73
74 /* Get two 32 bit ints from a double.  */
75 #define EXTRACT_WORDS(hi,lo,d)                                  \
76 do {                                                            \
77   union dshape __u;                                             \
78   __u.value = (d);                                              \
79   (hi) = __u.bits >> 32;                                        \
80   (lo) = (uint32_t)__u.bits;                                    \
81 } while (0)
82
83 /* Get the more significant 32 bit int from a double.  */
84 #define GET_HIGH_WORD(i,d)                                      \
85 do {                                                            \
86   union dshape __u;                                             \
87   __u.value = (d);                                              \
88   (i) = __u.bits >> 32;                                         \
89 } while (0)
90
91 /* Get the less significant 32 bit int from a double.  */
92 #define GET_LOW_WORD(i,d)                                       \
93 do {                                                            \
94   union dshape __u;                                             \
95   __u.value = (d);                                              \
96   (i) = (uint32_t)__u.bits;                                     \
97 } while (0)
98
99 /* Set a double from two 32 bit ints.  */
100 #define INSERT_WORDS(d,hi,lo)                                   \
101 do {                                                            \
102   union dshape __u;                                             \
103   __u.bits = ((uint64_t)(hi) << 32) | (uint32_t)(lo);           \
104   (d) = __u.value;                                              \
105 } while (0)
106
107 /* Set the more significant 32 bits of a double from an int.  */
108 #define SET_HIGH_WORD(d,hi)                                     \
109 do {                                                            \
110   union dshape __u;                                             \
111   __u.value = (d);                                              \
112   __u.bits &= 0xffffffff;                                       \
113   __u.bits |= (uint64_t)(hi) << 32;                             \
114   (d) = __u.value;                                              \
115 } while (0)
116
117 /* Set the less significant 32 bits of a double from an int.  */
118 #define SET_LOW_WORD(d,lo)                                      \
119 do {                                                            \
120   union dshape __u;                                             \
121   __u.value = (d);                                              \
122   __u.bits &= 0xffffffff00000000ull;                            \
123   __u.bits |= (uint32_t)(lo);                                   \
124   (d) = __u.value;                                              \
125 } while (0)
126
127 /* Get a 32 bit int from a float.  */
128 #define GET_FLOAT_WORD(i,d)                                     \
129 do {                                                            \
130   union fshape __u;                                             \
131   __u.value = (d);                                              \
132   (i) = __u.bits;                                               \
133 } while (0)
134
135 /* Set a float from a 32 bit int.  */
136 #define SET_FLOAT_WORD(d,i)                                     \
137 do {                                                            \
138   union fshape __u;                                             \
139   __u.bits = (i);                                               \
140   (d) = __u.value;                                              \
141 } while (0)
142
143 /* fdlibm kernel functions */
144
145 int    __rem_pio2_large(double*,double*,int,int,int);
146
147 int    __rem_pio2(double,double*);
148 double __sin(double,double,int);
149 double __cos(double,double);
150 double __tan(double,double,int);
151 double __expo2(double);
152 double complex __ldexp_cexp(double complex,int);
153
154 int    __rem_pio2f(float,double*);
155 float  __sindf(double);
156 float  __cosdf(double);
157 float  __tandf(double,int);
158 float  __expo2f(float);
159 float complex __ldexp_cexpf(float complex,int);
160
161 int __rem_pio2l(long double, long double *);
162 long double __sinl(long double, long double, int);
163 long double __cosl(long double, long double);
164 long double __tanl(long double, long double, int);
165
166 /* polynomial evaluation */
167 long double __polevll(long double, const long double *, int);
168 long double __p1evll(long double, const long double *, int);
169
170 #if 0
171 /* Attempt to get strict C99 semantics for assignment with non-C99 compilers. */
172 #define STRICT_ASSIGN(type, lval, rval) do {    \
173         volatile type __v = (rval);             \
174         (lval) = __v;                           \
175 } while (0)
176 #else
177 /* Should work with -fexcess-precision=standard (>=gcc-4.5) or -ffloat-store */
178 #define STRICT_ASSIGN(type, lval, rval) ((lval) = (type)(rval))
179 #endif
180
181 #endif