Update.
[platform/upstream/glibc.git] / math / math.h
1 /* Declarations for math functions.
2    Copyright (C) 1991, 92, 93, 95, 96, 97, 98 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Library General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Library General Public License for more details.
14
15    You should have received a copy of the GNU Library General Public
16    License along with the GNU C Library; see the file COPYING.LIB.  If not,
17    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18    Boston, MA 02111-1307, USA.  */
19
20 /*
21  *      ISO C Standard: 4.5 MATHEMATICS <math.h>
22  */
23
24 #ifndef _MATH_H
25 #define _MATH_H 1
26
27 #include <features.h>
28
29 __BEGIN_DECLS
30
31 /* Get machine-dependent HUGE_VAL value (returned on overflow).
32    On all IEEE754 machines, this is +Infinity.  */
33 #include <bits/huge_val.h>
34
35 /* Get machine-dependent NAN value (returned for some domain errors).  */
36 #ifdef   __USE_ISOC9X
37 # include <bits/nan.h>
38 #endif
39 /* Get general and ISO C 9X specific information.  */
40 #include <bits/mathdef.h>
41
42
43 /* The file <bits/mathcalls.h> contains the prototypes for all the
44    actual math functions.  These macros are used for those prototypes,
45    so we can easily declare each function as both `name' and `__name',
46    and can declare the float versions `namef' and `__namef'.  */
47
48 #define __MATHCALL(function,suffix, args)       \
49   __MATHDECL (_Mdouble_,function,suffix, args)
50 #define __MATHDECL(type, function,suffix, args) \
51   __MATHDECL_1(type, function,suffix, args); \
52   __MATHDECL_1(type, __CONCAT(__,function),suffix, args)
53 #define __MATHCALLX(function,suffix, args, attrib)      \
54   __MATHDECLX (_Mdouble_,function,suffix, args, attrib)
55 #define __MATHDECLX(type, function,suffix, args, attrib) \
56   __MATHDECL_1(type, function,suffix, args) __attribute__ (attrib); \
57   __MATHDECL_1(type, __CONCAT(__,function),suffix, args) __attribute__ (attrib)
58 #define __MATHDECL_1(type, function,suffix, args) \
59   extern type __MATH_PRECNAME(function,suffix) args
60
61 #define _Mdouble_               double
62 #define __MATH_PRECNAME(name,r) __CONCAT(name,r)
63 #include <bits/mathcalls.h>
64 #undef  _Mdouble_
65 #undef  __MATH_PRECNAME
66
67 #if defined __USE_MISC || defined __USE_ISOC9X
68
69
70 /* Include the file of declarations again, this time using `float'
71    instead of `double' and appending f to each function name.  */
72
73 # ifndef _Mfloat_
74 #  define _Mfloat_              float
75 # endif
76 # define _Mdouble_              _Mfloat_
77 # ifdef __STDC__
78 #  define __MATH_PRECNAME(name,r) name##f##r
79 # else
80 #  define __MATH_PRECNAME(name,r) name/**/f/**/r
81 # endif
82 # include <bits/mathcalls.h>
83 # undef _Mdouble_
84 # undef __MATH_PRECNAME
85
86 # if __STDC__ - 0 || __GNUC__ - 0 && !defined __NO_LONG_DOUBLE_MATH
87 /* Include the file of declarations again, this time using `long double'
88    instead of `double' and appending l to each function name.  */
89
90 #  ifndef _Mlong_double_
91 #   define _Mlong_double_       long double
92 #  endif
93 #  define _Mdouble_             _Mlong_double_
94 #  ifdef __STDC__
95 #   define __MATH_PRECNAME(name,r) name##l##r
96 #  else
97 #   define __MATH_PRECNAME(name,r) name/**/l/**/r
98 #  endif
99 #  include <bits/mathcalls.h>
100 #  undef _Mdouble_
101 #  undef __MATH_PRECNAME
102
103 # endif /* __STDC__ || __GNUC__ */
104
105 #endif  /* Use misc or ISO C 9X.  */
106 #undef  __MATHDECL_1
107 #undef  __MATHDECL
108 #undef  __MATHCALL
109
110
111 #if defined __USE_MISC || defined __USE_XOPEN || defined __USE_ISOC9X
112 /* This variable is used by `gamma' and `lgamma'.  */
113 extern int signgam;
114 #endif
115
116
117 /* ISO C 9X defines some generic macros which work on any data type.  */
118 #if __USE_ISOC9X
119
120 /* Get the architecture specific values describing the floating-point
121    evaluation.  The following symbols will get defined:
122
123     float_t     floating-point type at least as wide as `float' used
124                 to evaluate `float' expressions
125     double_t    floating-point type at least as wide as `double' used
126                 to evaluate `double' expressions
127
128     FLT_EVAL_METHOD
129                 Defined to
130                   0     if `float_t' is `float' and `double_t' is `double'
131                   1     if `float_t' and `double_t' are `double'
132                   2     if `float_t' and `double_t' are `long double'
133                   else  `float_t' and `double_t' are unspecified
134
135     INFINITY    representation of the infinity value of type `float'
136
137     FP_FAST_FMA
138     FP_FAST_FMAF
139     FP_FAST_FMAL
140                 If defined it indicates that the `fma' function
141                 generally executes about as fast as a multiply and an add.
142                 This macro is defined only iff the `fma' function is
143                 implemented directly with a hardware multiply-add instructions.
144
145     FP_ILOGB0   Expands to a value returned by `ilogb (0.0)'.
146     FP_ILOGBNAN Expands to a value returned by `ilogb (NAN)'.
147
148     DECIMAL_DIG Number of decimal digits supported by conversion between
149                 decimal and all internal floating-point formats.
150
151 */
152
153 /* All floating-point numbers can be put in one of these categories.  */
154 enum
155   {
156     FP_NAN,
157 # define FP_NAN FP_NAN
158     FP_INFINITE,
159 # define FP_INFINITE FP_INFINITE
160     FP_ZERO,
161 # define FP_ZERO FP_ZERO
162     FP_SUBNORMAL,
163 # define FP_SUBNORMAL FP_SUBNORMAL
164     FP_NORMAL
165 # define FP_NORMAL FP_NORMAL
166   };
167
168 /* Return number of classification appropriate for X.  */
169 # define fpclassify(x) \
170      (sizeof (x) == sizeof (float) ?                                          \
171         __fpclassifyf (x)                                                     \
172       : sizeof (x) == sizeof (double) ?                                       \
173         __fpclassify (x) : __fpclassifyl (x))
174
175 /* Return nonzero value if sign of X is negative.  */
176 # define signbit(x) \
177      (sizeof (x) == sizeof (float) ?                                          \
178         __signbitf (x)                                                        \
179       : sizeof (x) == sizeof (double) ?                                       \
180         __signbit (x) : __signbitl (x))
181
182 /* Return nonzero value if X is not +-Inf or NaN.  */
183 # define isfinite(x) \
184      (sizeof (x) == sizeof (float) ?                                          \
185         __finitef (x)                                                         \
186       : sizeof (x) == sizeof (double) ?                                       \
187         __finite (x) : __finitel (x))
188
189 /* Return nonzero value if X is neither zero, subnormal, Inf, nor NaN.  */
190 # define isnormal(x) (fpclassify (x) == FP_NORMAL)
191
192 /* Return nonzero value if X is a NaN.  We could use `fpclassify' but
193    we already have this functions `__isnan' and it is faster.  */
194 # define isnan(x) \
195      (sizeof (x) == sizeof (float) ?                                          \
196         __isnanf (x)                                                          \
197       : sizeof (x) == sizeof (double) ?                                       \
198         __isnan (x) : __isnanl (x))
199
200 /* Return nonzero value is X is positive or negative infinity.  */
201 # define isinf(x) \
202      (sizeof (x) == sizeof (float) ?                                          \
203         __isinff (x)                                                          \
204       : sizeof (x) == sizeof (double) ?                                       \
205         __isinf (x) : __isinfl (x))
206
207 #endif /* Use ISO C 9X.  */
208
209 #ifdef  __USE_MISC
210 /* Support for various different standard error handling behaviors.  */
211 typedef enum
212 {
213   _IEEE_ = -1,  /* According to IEEE 754/IEEE 854.  */
214   _SVID_,       /* According to System V, release 4.  */
215   _XOPEN_,      /* Nowadays also Unix98.  */
216   _POSIX_,
217   _ISOC_        /* Actually this is ISO C 9X.  */
218 } _LIB_VERSION_TYPE;
219
220 /* This variable can be changed at run-time to any of the values above to
221    affect floating point error handling behavior (it may also be necessary
222    to change the hardware FPU exception settings).  */
223 extern _LIB_VERSION_TYPE _LIB_VERSION;
224 #endif
225
226
227 #ifdef __USE_SVID
228 /* In SVID error handling, `matherr' is called with this description
229    of the exceptional condition.
230
231    We have a problem when using C++ since `exception' is a reserved
232    name in C++.  */
233 # ifdef __cplusplus
234 struct __exception
235 # else
236 struct exception
237 # endif
238   {
239     int type;
240     char *name;
241     double arg1;
242     double arg2;
243     double retval;
244   };
245
246 # ifdef __cplusplus
247 extern int __matherr __P ((struct __exception *__exc));
248 extern int matherr __P ((struct __exception *__exc));
249 # else
250 extern int __matherr __P ((struct exception *__exc));
251 extern int matherr __P ((struct exception *__exc));
252 # endif
253
254 # define X_TLOSS        1.41484755040568800000e+16
255
256 /* Types of exceptions in the `type' field.  */
257 # define DOMAIN         1
258 # define SING           2
259 # define OVERFLOW       3
260 # define UNDERFLOW      4
261 # define TLOSS          5
262 # define PLOSS          6
263
264 /* SVID mode specifies returning this large value instead of infinity.  */
265 # define HUGE           FLT_MAX
266 # include <float.h>             /* Defines FLT_MAX.  */
267
268 #else   /* !SVID */
269
270 # ifdef __USE_XOPEN
271 /* X/Open wants another strange constant.  */
272 #  define MAXFLOAT      FLT_MAX
273 #  include <float.h>
274 # endif
275
276 #endif  /* SVID */
277
278
279 /* Some useful constants.  */
280 #if defined __USE_BSD || defined __USE_XOPEN
281 # define M_E            2.7182818284590452354   /* e */
282 # define M_LOG2E        1.4426950408889634074   /* log_2 e */
283 # define M_LOG10E       0.43429448190325182765  /* log_10 e */
284 # define M_LN2          0.69314718055994530942  /* log_e 2 */
285 # define M_LN10         2.30258509299404568402  /* log_e 10 */
286 # define M_PI           3.14159265358979323846  /* pi */
287 # define M_PI_2         1.57079632679489661923  /* pi/2 */
288 # define M_PI_4         0.78539816339744830962  /* pi/4 */
289 # define M_1_PI         0.31830988618379067154  /* 1/pi */
290 # define M_2_PI         0.63661977236758134308  /* 2/pi */
291 # define M_2_SQRTPI     1.12837916709551257390  /* 2/sqrt(pi) */
292 # define M_SQRT2        1.41421356237309504880  /* sqrt(2) */
293 # define M_SQRT1_2      0.70710678118654752440  /* 1/sqrt(2) */
294 #endif
295
296 /* The above constants are not adequate for computation using `long double's.
297    Therefore we provide as an extension constants with similar names as a
298    GNU extension.  Provide enough digits for the 128-bit IEEE quad.  */
299 #ifdef __USE_GNU
300 # define M_El           2.7182818284590452353602874713526625L  /* e */
301 # define M_LOG2El       1.4426950408889634073599246810018922L  /* log_2 e */
302 # define M_LOG10El      0.4342944819032518276511289189166051L  /* log_10 e */
303 # define M_LN2l         0.6931471805599453094172321214581766L  /* log_e 2 */
304 # define M_LN10l        2.3025850929940456840179914546843642L  /* log_e 10 */
305 # define M_PIl          3.1415926535897932384626433832795029L  /* pi */
306 # define M_PI_2l        1.5707963267948966192313216916397514L  /* pi/2 */
307 # define M_PI_4l        0.7853981633974483096156608458198757L  /* pi/4 */
308 # define M_1_PIl        0.3183098861837906715377675267450287L  /* 1/pi */
309 # define M_2_PIl        0.6366197723675813430755350534900574L  /* 2/pi */
310 # define M_2_SQRTPIl    1.1283791670955125738961589031215452L  /* 2/sqrt(pi) */
311 # define M_SQRT2l       1.4142135623730950488016887242096981L  /* sqrt(2) */
312 # define M_SQRT1_2l     0.7071067811865475244008443621048490L  /* 1/sqrt(2) */
313 #endif
314
315
316 /* When compiling in strict ISO C compatible mode we must not use the
317    inline functions since they, among other things, do not set the
318    `errno' variable correctly.  */
319 #if defined __STRICT_ANSI__ && !defined __NO_MATH_INLINES
320 # define __NO_MATH_INLINES      1
321 #endif
322
323 /* Get machine-dependent inline versions (if there are any).  */
324 #ifdef __USE_EXTERN_INLINES
325 # include <bits/mathinline.h>
326 #endif
327
328
329 #if __USE_ISOC9X
330 /* ISO C 9X defines some macros to compare number while taking care
331    for unordered numbers.  Since many FPUs provide special
332    instructions to support these operations and these tests are
333    defined in <bits/mathinline.h>, we define the generic macros at
334    this late point and only if they are not defined yet.  */
335
336 /* Return nonzero value if X is greater than Y.  */
337 # ifndef isgreater
338 #  define isgreater(x, y) \
339   (__extension__                                                              \
340    ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y);                       \
341       !isunordered (__x, __y) && __x > __y; }))
342 # endif
343
344 /* Return nonzero value if X is greater than or equal to Y.  */
345 # ifndef isgreaterequal
346 #  define isgreaterequal(x, y) \
347   (__extension__                                                              \
348    ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y);                       \
349       !isunordered (__x, __y) && __x >= __y; }))
350 # endif
351
352 /* Return nonzero value if X is less than Y.  */
353 # ifndef isless
354 #  define isless(x, y) \
355   (__extension__                                                              \
356    ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y);                       \
357       !isunordered (__x, __y) && __x < __y; }))
358 # endif
359
360 /* Return nonzero value if X is less than or equal to Y.  */
361 # ifndef islessequal
362 #  define islessequal(x, y) \
363   (__extension__                                                              \
364    ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y);                       \
365       !isunordered (__x, __y) && __x <= __y; }))
366 # endif
367
368 /* Return nonzero value if either X is less than Y or Y is less than X.  */
369 # ifndef islessgreater
370 #  define islessgreater(x, y) \
371   (__extension__                                                              \
372    ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y);                       \
373       !isunordered (__x, __y) && (__x < __y || __y < __x); }))
374 # endif
375
376 /* Return nonzero value if arguments are unordered.  */
377 # ifndef isunordered
378 #  define isunordered(u, v) \
379   (__extension__                                                              \
380    ({ __typeof__(u) __u = (u); __typeof__(v) __v = (v);                       \
381       fpclassify (__u) == FP_NAN || fpclassify (__v) == FP_NAN; }))
382 # endif
383
384 #endif
385
386 __END_DECLS
387
388
389 #endif /* math.h  */