1 /* Declarations for math functions.
2 Copyright (C) 1991-2020 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
20 * ISO C99 Standard: 7.12 Mathematics <math.h>
26 #define __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION
27 #include <bits/libc-header-start.h>
29 #if defined log && defined __GNUC__
30 # warning A macro called log was already defined when <math.h> was included.
31 # warning This will cause compilation problems.
36 /* Get definitions of __intmax_t and __uintmax_t. */
37 #include <bits/types.h>
39 /* Get machine-dependent vector math functions declarations. */
40 #include <bits/math-vector.h>
42 /* Gather machine dependent type support. */
43 #include <bits/floatn.h>
45 /* Value returned on overflow. With IEEE 754 floating point, this is
46 +Infinity, otherwise the largest representable positive value. */
47 #if __GNUC_PREREQ (3, 3)
48 # define HUGE_VAL (__builtin_huge_val ())
50 /* This may provoke compiler warnings, and may not be rounded to
51 +Infinity in all IEEE 754 rounding modes, but is the best that can
52 be done in ISO C while remaining a constant expression. 10,000 is
53 greater than the maximum (decimal) exponent for all supported
54 floating-point formats and widths. */
55 # define HUGE_VAL 1e10000
58 # if __GNUC_PREREQ (3, 3)
59 # define HUGE_VALF (__builtin_huge_valf ())
60 # define HUGE_VALL (__builtin_huge_vall ())
62 # define HUGE_VALF 1e10000f
63 # define HUGE_VALL 1e10000L
66 #if __HAVE_FLOAT16 && __GLIBC_USE (IEC_60559_TYPES_EXT)
67 # define HUGE_VAL_F16 (__builtin_huge_valf16 ())
69 #if __HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)
70 # define HUGE_VAL_F32 (__builtin_huge_valf32 ())
72 #if __HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)
73 # define HUGE_VAL_F64 (__builtin_huge_valf64 ())
75 #if __HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)
76 # define HUGE_VAL_F128 (__builtin_huge_valf128 ())
78 #if __HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)
79 # define HUGE_VAL_F32X (__builtin_huge_valf32x ())
81 #if __HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)
82 # define HUGE_VAL_F64X (__builtin_huge_valf64x ())
84 #if __HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)
85 # define HUGE_VAL_F128X (__builtin_huge_valf128x ())
89 /* IEEE positive infinity. */
90 # if __GNUC_PREREQ (3, 3)
91 # define INFINITY (__builtin_inff ())
93 # define INFINITY HUGE_VALF
96 /* IEEE Not A Number. */
97 # if __GNUC_PREREQ (3, 3)
98 # define NAN (__builtin_nanf (""))
100 /* This will raise an "invalid" exception outside static initializers,
101 but is the best that can be done in ISO C while remaining a
102 constant expression. */
103 # define NAN (0.0f / 0.0f)
105 #endif /* __USE_ISOC99 */
107 #if __GLIBC_USE (IEC_60559_BFP_EXT_C2X)
108 /* Signaling NaN macros, if supported. */
109 # if __GNUC_PREREQ (3, 3)
110 # define SNANF (__builtin_nansf (""))
111 # define SNAN (__builtin_nans (""))
112 # define SNANL (__builtin_nansl (""))
115 #if __HAVE_FLOAT16 && __GLIBC_USE (IEC_60559_TYPES_EXT)
116 # define SNANF16 (__builtin_nansf16 (""))
118 #if __HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)
119 # define SNANF32 (__builtin_nansf32 (""))
121 #if __HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)
122 # define SNANF64 (__builtin_nansf64 (""))
124 #if __HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)
125 # define SNANF128 (__builtin_nansf128 (""))
127 #if __HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)
128 # define SNANF32X (__builtin_nansf32x (""))
130 #if __HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)
131 # define SNANF64X (__builtin_nansf64x (""))
133 #if __HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)
134 # define SNANF128X (__builtin_nansf128x (""))
137 /* Get __GLIBC_FLT_EVAL_METHOD. */
138 #include <bits/flt-eval-method.h>
141 /* Define the following typedefs.
143 float_t floating-point type at least as wide as `float' used
144 to evaluate `float' expressions
145 double_t floating-point type at least as wide as `double' used
146 to evaluate `double' expressions
148 # if __GLIBC_FLT_EVAL_METHOD == 0 || __GLIBC_FLT_EVAL_METHOD == 16
149 typedef float float_t
;
150 typedef double double_t
;
151 # elif __GLIBC_FLT_EVAL_METHOD == 1
152 typedef double float_t
;
153 typedef double double_t
;
154 # elif __GLIBC_FLT_EVAL_METHOD == 2
155 typedef long double float_t
;
156 typedef long double double_t
;
157 # elif __GLIBC_FLT_EVAL_METHOD == 32
158 typedef _Float32 float_t
;
159 typedef double double_t
;
160 # elif __GLIBC_FLT_EVAL_METHOD == 33
161 typedef _Float32x float_t
;
162 typedef _Float32x double_t
;
163 # elif __GLIBC_FLT_EVAL_METHOD == 64
164 typedef _Float64 float_t
;
165 typedef _Float64 double_t
;
166 # elif __GLIBC_FLT_EVAL_METHOD == 65
167 typedef _Float64x float_t
;
168 typedef _Float64x double_t
;
169 # elif __GLIBC_FLT_EVAL_METHOD == 128
170 typedef _Float128 float_t
;
171 typedef _Float128 double_t
;
172 # elif __GLIBC_FLT_EVAL_METHOD == 129
173 typedef _Float128x float_t
;
174 typedef _Float128x double_t
;
176 # error "Unknown __GLIBC_FLT_EVAL_METHOD"
180 /* Define macros for the return values of ilogb and llogb, based on
181 __FP_LOGB0_IS_MIN and __FP_LOGBNAN_IS_MIN.
183 FP_ILOGB0 Expands to a value returned by `ilogb (0.0)'.
184 FP_ILOGBNAN Expands to a value returned by `ilogb (NAN)'.
185 FP_LLOGB0 Expands to a value returned by `llogb (0.0)'.
186 FP_LLOGBNAN Expands to a value returned by `llogb (NAN)'.
190 #include <bits/fp-logb.h>
192 # if __FP_LOGB0_IS_MIN
193 # define FP_ILOGB0 (-2147483647 - 1)
195 # define FP_ILOGB0 (-2147483647)
197 # if __FP_LOGBNAN_IS_MIN
198 # define FP_ILOGBNAN (-2147483647 - 1)
200 # define FP_ILOGBNAN 2147483647
203 #if __GLIBC_USE (IEC_60559_BFP_EXT_C2X)
204 # if __WORDSIZE == 32
205 # define __FP_LONG_MAX 0x7fffffffL
207 # define __FP_LONG_MAX 0x7fffffffffffffffL
209 # if __FP_LOGB0_IS_MIN
210 # define FP_LLOGB0 (-__FP_LONG_MAX - 1)
212 # define FP_LLOGB0 (-__FP_LONG_MAX)
214 # if __FP_LOGBNAN_IS_MIN
215 # define FP_LLOGBNAN (-__FP_LONG_MAX - 1)
217 # define FP_LLOGBNAN __FP_LONG_MAX
221 /* Get the architecture specific values describing the floating-point
222 evaluation. The following symbols will get defined:
227 If defined it indicates that the `fma' function
228 generally executes about as fast as a multiply and an add.
229 This macro is defined only iff the `fma' function is
230 implemented directly with a hardware multiply-add instructions.
233 #include <bits/fp-fast.h>
235 #if __GLIBC_USE (IEC_60559_BFP_EXT_C2X)
236 /* Rounding direction macros for fromfp functions. */
240 # define FP_INT_UPWARD 0
243 # define FP_INT_DOWNWARD 1
246 # define FP_INT_TOWARDZERO 2
248 FP_INT_TONEARESTFROMZERO
=
249 # define FP_INT_TONEARESTFROMZERO 3
250 FP_INT_TONEARESTFROMZERO
,
252 # define FP_INT_TONEAREST 4
257 /* The file <bits/mathcalls.h> contains the prototypes for all the
258 actual math functions. These macros are used for those prototypes,
259 so we can easily declare each function as both `name' and `__name',
260 and can declare the float versions `namef' and `__namef'. */
262 #define __SIMD_DECL(function) __CONCAT (__DECL_SIMD_, function)
264 #define __MATHCALL_VEC(function, suffix, args) \
265 __SIMD_DECL (__MATH_PRECNAME (function, suffix)) \
266 __MATHCALL (function, suffix, args)
268 #define __MATHDECL_VEC(type, function,suffix, args) \
269 __SIMD_DECL (__MATH_PRECNAME (function, suffix)) \
270 __MATHDECL(type, function,suffix, args)
272 #define __MATHCALL(function,suffix, args) \
273 __MATHDECL (_Mdouble_,function,suffix, args)
274 #define __MATHDECL(type, function,suffix, args) \
275 __MATHDECL_1(type, function,suffix, args); \
276 __MATHDECL_1(type, __CONCAT(__,function),suffix, args)
277 #define __MATHCALLX(function,suffix, args, attrib) \
278 __MATHDECLX (_Mdouble_,function,suffix, args, attrib)
279 #define __MATHDECLX(type, function,suffix, args, attrib) \
280 __MATHDECL_1(type, function,suffix, args) __attribute__ (attrib); \
281 __MATHDECL_1(type, __CONCAT(__,function),suffix, args) __attribute__ (attrib)
282 #define __MATHDECL_1_IMPL(type, function, suffix, args) \
283 extern type __MATH_PRECNAME(function,suffix) args __THROW
284 #define __MATHDECL_1(type, function, suffix, args) \
285 __MATHDECL_1_IMPL(type, function, suffix, args)
286 /* Ignore the alias by default. The alias is only useful with
288 #define __MATHDECL_ALIAS(type, function, suffix, args, alias) \
289 __MATHDECL_1(type, function, suffix, args)
291 #define __MATHREDIR(type, function, suffix, args, to) \
292 extern type __REDIRECT_NTH (__MATH_PRECNAME (function, suffix), args, to)
294 #define _Mdouble_ double
295 #define __MATH_PRECNAME(name,r) __CONCAT(name,r)
296 #define __MATH_DECLARING_DOUBLE 1
297 #define __MATH_DECLARING_FLOATN 0
298 #include <bits/mathcalls-helper-functions.h>
299 #include <bits/mathcalls.h>
301 #undef __MATH_PRECNAME
302 #undef __MATH_DECLARING_DOUBLE
303 #undef __MATH_DECLARING_FLOATN
308 /* Include the file of declarations again, this time using `float'
309 instead of `double' and appending f to each function name. */
311 # define _Mdouble_ float
312 # define __MATH_PRECNAME(name,r) name##f##r
313 # define __MATH_DECLARING_DOUBLE 0
314 # define __MATH_DECLARING_FLOATN 0
315 # include <bits/mathcalls-helper-functions.h>
316 # include <bits/mathcalls.h>
318 # undef __MATH_PRECNAME
319 # undef __MATH_DECLARING_DOUBLE
320 # undef __MATH_DECLARING_FLOATN
322 # if !(defined __NO_LONG_DOUBLE_MATH && defined _LIBC) \
323 || defined __LDBL_COMPAT \
324 || defined _LIBC_TEST
325 # ifdef __LDBL_COMPAT
328 extern float __nldbl_nexttowardf (float __x
, long double __y
)
329 __THROW
__attribute__ ((__const__
));
330 # ifdef __REDIRECT_NTH
331 extern float __REDIRECT_NTH (nexttowardf
, (float __x
, long double __y
),
333 __attribute__ ((__const__
));
334 extern double __REDIRECT_NTH (nexttoward
, (double __x
, long double __y
),
335 nextafter
) __attribute__ ((__const__
));
336 extern long double __REDIRECT_NTH (nexttowardl
,
337 (long double __x
, long double __y
),
338 nextafter
) __attribute__ ((__const__
));
343 # define __MATHDECL_1(type, function,suffix, args) \
344 __MATHREDIR(type, function, suffix, args, __CONCAT(function,suffix))
346 # elif __LDOUBLE_REDIRECTS_TO_FLOAT128_ABI == 1
347 # ifdef __REDIRECT_NTH
349 extern float __REDIRECT_NTH (nexttowardf
, (float __x
, long double __y
),
350 __nexttowardf_to_ieee128
)
351 __attribute__ ((__const__
));
352 extern double __REDIRECT_NTH (nexttoward
, (double __x
, long double __y
),
353 __nexttoward_to_ieee128
)
354 __attribute__ ((__const__
));
356 #define __dremieee128 __remainderieee128
357 #define __gammaieee128 __lgammaieee128
363 # undef __MATHDECL_ALIAS
365 # define __REDIRTO(function, suffix) \
366 __ ## function ## ieee128 ## suffix
367 # define __REDIRTO_ALT(function, suffix) \
368 __ ## function ## f128 ## suffix
370 # define __MATHDECL_1(type, function, suffix, args) \
371 __MATHREDIR (type, function, suffix, args, __REDIRTO (function, suffix))
372 # define __MATHDECL_ALIAS(type, function, suffix, args, alias) \
373 __MATHREDIR (type, function, suffix, args, __REDIRTO_ALT (alias, suffix))
376 /* Include the file of declarations again, this time using `long double'
377 instead of `double' and appending l to each function name. */
379 # define _Mdouble_ long double
380 # define __MATH_PRECNAME(name,r) name##l##r
381 # define __MATH_DECLARING_DOUBLE 0
382 # define __MATH_DECLARING_FLOATN 0
383 # define __MATH_DECLARE_LDOUBLE 1
384 # include <bits/mathcalls-helper-functions.h>
385 # include <bits/mathcalls.h>
388 # undef __MATH_PRECNAME
389 # undef __MATH_DECLARING_DOUBLE
390 # undef __MATH_DECLARING_FLOATN
392 # if defined __LDBL_COMPAT \
393 || __LDOUBLE_REDIRECTS_TO_FLOAT128_ABI == 1
395 # undef __REDIRTO_ALT
397 # undef __MATHDECL_ALIAS
398 # define __MATHDECL_1(type, function, suffix, args) \
399 __MATHDECL_1_IMPL(type, function, suffix, args)
400 # define __MATHDECL_ALIAS(type, function, suffix, args, alias) \
401 __MATHDECL_1(type, function, suffix, args)
403 # endif /* !(__NO_LONG_DOUBLE_MATH && _LIBC) || __LDBL_COMPAT */
405 #endif /* Use ISO C99. */
407 /* Include the file of declarations for _FloatN and _FloatNx
410 #if __HAVE_DISTINCT_FLOAT16 || (__HAVE_FLOAT16 && !defined _LIBC)
411 # define _Mdouble_ _Float16
412 # define __MATH_PRECNAME(name,r) name##f16##r
413 # define __MATH_DECLARING_DOUBLE 0
414 # define __MATH_DECLARING_FLOATN 1
415 # if __HAVE_DISTINCT_FLOAT16
416 # include <bits/mathcalls-helper-functions.h>
418 # if __GLIBC_USE (IEC_60559_TYPES_EXT)
419 # include <bits/mathcalls.h>
422 # undef __MATH_PRECNAME
423 # undef __MATH_DECLARING_DOUBLE
424 # undef __MATH_DECLARING_FLOATN
425 #endif /* __HAVE_DISTINCT_FLOAT16 || (__HAVE_FLOAT16 && !_LIBC). */
427 #if __HAVE_DISTINCT_FLOAT32 || (__HAVE_FLOAT32 && !defined _LIBC)
428 # define _Mdouble_ _Float32
429 # define __MATH_PRECNAME(name,r) name##f32##r
430 # define __MATH_DECLARING_DOUBLE 0
431 # define __MATH_DECLARING_FLOATN 1
432 # if __HAVE_DISTINCT_FLOAT32
433 # include <bits/mathcalls-helper-functions.h>
435 # if __GLIBC_USE (IEC_60559_TYPES_EXT)
436 # include <bits/mathcalls.h>
439 # undef __MATH_PRECNAME
440 # undef __MATH_DECLARING_DOUBLE
441 # undef __MATH_DECLARING_FLOATN
442 #endif /* __HAVE_DISTINCT_FLOAT32 || (__HAVE_FLOAT32 && !_LIBC). */
444 #if __HAVE_DISTINCT_FLOAT64 || (__HAVE_FLOAT64 && !defined _LIBC)
445 # define _Mdouble_ _Float64
446 # define __MATH_PRECNAME(name,r) name##f64##r
447 # define __MATH_DECLARING_DOUBLE 0
448 # define __MATH_DECLARING_FLOATN 1
449 # if __HAVE_DISTINCT_FLOAT64
450 # include <bits/mathcalls-helper-functions.h>
452 # if __GLIBC_USE (IEC_60559_TYPES_EXT)
453 # include <bits/mathcalls.h>
456 # undef __MATH_PRECNAME
457 # undef __MATH_DECLARING_DOUBLE
458 # undef __MATH_DECLARING_FLOATN
459 #endif /* __HAVE_DISTINCT_FLOAT64 || (__HAVE_FLOAT64 && !_LIBC). */
461 #if __HAVE_DISTINCT_FLOAT128 || (__HAVE_FLOAT128 && !defined _LIBC)
462 # define _Mdouble_ _Float128
463 # define __MATH_PRECNAME(name,r) name##f128##r
464 # define __MATH_DECLARING_DOUBLE 0
465 # define __MATH_DECLARING_FLOATN 1
466 # if __HAVE_DISTINCT_FLOAT128
467 # include <bits/mathcalls-helper-functions.h>
469 # if __GLIBC_USE (IEC_60559_TYPES_EXT)
470 # include <bits/mathcalls.h>
473 # undef __MATH_PRECNAME
474 # undef __MATH_DECLARING_DOUBLE
475 # undef __MATH_DECLARING_FLOATN
476 #endif /* __HAVE_DISTINCT_FLOAT128 || (__HAVE_FLOAT128 && !_LIBC). */
478 #if __HAVE_DISTINCT_FLOAT32X || (__HAVE_FLOAT32X && !defined _LIBC)
479 # define _Mdouble_ _Float32x
480 # define __MATH_PRECNAME(name,r) name##f32x##r
481 # define __MATH_DECLARING_DOUBLE 0
482 # define __MATH_DECLARING_FLOATN 1
483 # if __HAVE_DISTINCT_FLOAT32X
484 # include <bits/mathcalls-helper-functions.h>
486 # if __GLIBC_USE (IEC_60559_TYPES_EXT)
487 # include <bits/mathcalls.h>
490 # undef __MATH_PRECNAME
491 # undef __MATH_DECLARING_DOUBLE
492 # undef __MATH_DECLARING_FLOATN
493 #endif /* __HAVE_DISTINCT_FLOAT32X || (__HAVE_FLOAT32X && !_LIBC). */
495 #if __HAVE_DISTINCT_FLOAT64X || (__HAVE_FLOAT64X && !defined _LIBC)
496 # define _Mdouble_ _Float64x
497 # define __MATH_PRECNAME(name,r) name##f64x##r
498 # define __MATH_DECLARING_DOUBLE 0
499 # define __MATH_DECLARING_FLOATN 1
500 # if __HAVE_DISTINCT_FLOAT64X
501 # include <bits/mathcalls-helper-functions.h>
503 # if __GLIBC_USE (IEC_60559_TYPES_EXT)
504 # include <bits/mathcalls.h>
507 # undef __MATH_PRECNAME
508 # undef __MATH_DECLARING_DOUBLE
509 # undef __MATH_DECLARING_FLOATN
510 #endif /* __HAVE_DISTINCT_FLOAT64X || (__HAVE_FLOAT64X && !_LIBC). */
512 #if __HAVE_DISTINCT_FLOAT128X || (__HAVE_FLOAT128X && !defined _LIBC)
513 # define _Mdouble_ _Float128x
514 # define __MATH_PRECNAME(name,r) name##f128x##r
515 # define __MATH_DECLARING_DOUBLE 0
516 # define __MATH_DECLARING_FLOATN 1
517 # if __HAVE_DISTINCT_FLOAT128X
518 # include <bits/mathcalls-helper-functions.h>
520 # if __GLIBC_USE (IEC_60559_TYPES_EXT)
521 # include <bits/mathcalls.h>
524 # undef __MATH_PRECNAME
525 # undef __MATH_DECLARING_DOUBLE
526 # undef __MATH_DECLARING_FLOATN
527 #endif /* __HAVE_DISTINCT_FLOAT128X || (__HAVE_FLOAT128X && !_LIBC). */
529 #undef __MATHDECL_1_IMPL
531 #undef __MATHDECL_ALIAS
535 /* Declare functions returning a narrower type. */
536 #define __MATHCALL_NARROW_ARGS_1 (_Marg_ __x)
537 #define __MATHCALL_NARROW_ARGS_2 (_Marg_ __x, _Marg_ __y)
538 #define __MATHCALL_NARROW_ARGS_3 (_Marg_ __x, _Marg_ __y, _Marg_ __z)
539 #define __MATHCALL_NARROW_NORMAL(func, nargs) \
540 extern _Mret_ func __MATHCALL_NARROW_ARGS_ ## nargs __THROW
541 #define __MATHCALL_NARROW_REDIR(func, redir, nargs) \
542 extern _Mret_ __REDIRECT_NTH (func, __MATHCALL_NARROW_ARGS_ ## nargs, \
544 #define __MATHCALL_NARROW(func, redir, nargs) \
545 __MATHCALL_NARROW_NORMAL (func, nargs)
547 #if __GLIBC_USE (IEC_60559_BFP_EXT_C2X)
549 # define _Mret_ float
550 # define _Marg_ double
551 # define __MATHCALL_NAME(name) f ## name
552 # include <bits/mathcalls-narrow.h>
555 # undef __MATHCALL_NAME
557 # define _Mret_ float
558 # define _Marg_ long double
559 # define __MATHCALL_NAME(name) f ## name ## l
560 # ifdef __LDBL_COMPAT
561 # define __MATHCALL_REDIR_NAME(name) f ## name
562 # undef __MATHCALL_NARROW
563 # define __MATHCALL_NARROW(func, redir, nargs) \
564 __MATHCALL_NARROW_REDIR (func, redir, nargs)
565 # elif __LDOUBLE_REDIRECTS_TO_FLOAT128_ABI == 1
566 # define __MATHCALL_REDIR_NAME(name) __ ## f32 ## name ## ieee128
567 # undef __MATHCALL_NARROW
568 # define __MATHCALL_NARROW(func, redir, nargs) \
569 __MATHCALL_NARROW_REDIR (func, redir, nargs)
571 # include <bits/mathcalls-narrow.h>
574 # undef __MATHCALL_NAME
575 # if defined __LDBL_COMPAT \
576 || __LDOUBLE_REDIRECTS_TO_FLOAT128_ABI == 1
577 # undef __MATHCALL_REDIR_NAME
578 # undef __MATHCALL_NARROW
579 # define __MATHCALL_NARROW(func, redir, nargs) \
580 __MATHCALL_NARROW_NORMAL (func, nargs)
583 # define _Mret_ double
584 # define _Marg_ long double
585 # define __MATHCALL_NAME(name) d ## name ## l
586 # ifdef __LDBL_COMPAT
587 # define __MATHCALL_REDIR_NAME(name) __nldbl_d ## name ## l
588 # undef __MATHCALL_NARROW
589 # define __MATHCALL_NARROW(func, redir, nargs) \
590 __MATHCALL_NARROW_REDIR (func, redir, nargs)
591 # elif __LDOUBLE_REDIRECTS_TO_FLOAT128_ABI == 1
592 # define __MATHCALL_REDIR_NAME(name) __ ## f64 ## name ## ieee128
593 # undef __MATHCALL_NARROW
594 # define __MATHCALL_NARROW(func, redir, nargs) \
595 __MATHCALL_NARROW_REDIR (func, redir, nargs)
597 # include <bits/mathcalls-narrow.h>
600 # undef __MATHCALL_NAME
601 # if defined __LDBL_COMPAT \
602 || __LDOUBLE_REDIRECTS_TO_FLOAT128_ABI == 1
603 # undef __MATHCALL_REDIR_NAME
604 # undef __MATHCALL_NARROW
605 # define __MATHCALL_NARROW(func, redir, nargs) \
606 __MATHCALL_NARROW_NORMAL (func, nargs)
611 #if __GLIBC_USE (IEC_60559_TYPES_EXT)
613 # if __HAVE_FLOAT16 && __HAVE_FLOAT32
614 # define _Mret_ _Float16
615 # define _Marg_ _Float32
616 # define __MATHCALL_NAME(name) f16 ## name ## f32
617 # include <bits/mathcalls-narrow.h>
620 # undef __MATHCALL_NAME
623 # if __HAVE_FLOAT16 && __HAVE_FLOAT32X
624 # define _Mret_ _Float16
625 # define _Marg_ _Float32x
626 # define __MATHCALL_NAME(name) f16 ## name ## f32x
627 # include <bits/mathcalls-narrow.h>
630 # undef __MATHCALL_NAME
633 # if __HAVE_FLOAT16 && __HAVE_FLOAT64
634 # define _Mret_ _Float16
635 # define _Marg_ _Float64
636 # define __MATHCALL_NAME(name) f16 ## name ## f64
637 # include <bits/mathcalls-narrow.h>
640 # undef __MATHCALL_NAME
643 # if __HAVE_FLOAT16 && __HAVE_FLOAT64X
644 # define _Mret_ _Float16
645 # define _Marg_ _Float64x
646 # define __MATHCALL_NAME(name) f16 ## name ## f64x
647 # include <bits/mathcalls-narrow.h>
650 # undef __MATHCALL_NAME
653 # if __HAVE_FLOAT16 && __HAVE_FLOAT128
654 # define _Mret_ _Float16
655 # define _Marg_ _Float128
656 # define __MATHCALL_NAME(name) f16 ## name ## f128
657 # include <bits/mathcalls-narrow.h>
660 # undef __MATHCALL_NAME
663 # if __HAVE_FLOAT16 && __HAVE_FLOAT128X
664 # define _Mret_ _Float16
665 # define _Marg_ _Float128x
666 # define __MATHCALL_NAME(name) f16 ## name ## f128x
667 # include <bits/mathcalls-narrow.h>
670 # undef __MATHCALL_NAME
673 # if __HAVE_FLOAT32 && __HAVE_FLOAT32X
674 # define _Mret_ _Float32
675 # define _Marg_ _Float32x
676 # define __MATHCALL_NAME(name) f32 ## name ## f32x
677 # include <bits/mathcalls-narrow.h>
680 # undef __MATHCALL_NAME
683 # if __HAVE_FLOAT32 && __HAVE_FLOAT64
684 # define _Mret_ _Float32
685 # define _Marg_ _Float64
686 # define __MATHCALL_NAME(name) f32 ## name ## f64
687 # include <bits/mathcalls-narrow.h>
690 # undef __MATHCALL_NAME
693 # if __HAVE_FLOAT32 && __HAVE_FLOAT64X
694 # define _Mret_ _Float32
695 # define _Marg_ _Float64x
696 # define __MATHCALL_NAME(name) f32 ## name ## f64x
697 # include <bits/mathcalls-narrow.h>
700 # undef __MATHCALL_NAME
703 # if __HAVE_FLOAT32 && __HAVE_FLOAT128
704 # define _Mret_ _Float32
705 # define _Marg_ _Float128
706 # define __MATHCALL_NAME(name) f32 ## name ## f128
707 # include <bits/mathcalls-narrow.h>
710 # undef __MATHCALL_NAME
713 # if __HAVE_FLOAT32 && __HAVE_FLOAT128X
714 # define _Mret_ _Float32
715 # define _Marg_ _Float128x
716 # define __MATHCALL_NAME(name) f32 ## name ## f128x
717 # include <bits/mathcalls-narrow.h>
720 # undef __MATHCALL_NAME
723 # if __HAVE_FLOAT32X && __HAVE_FLOAT64
724 # define _Mret_ _Float32x
725 # define _Marg_ _Float64
726 # define __MATHCALL_NAME(name) f32x ## name ## f64
727 # include <bits/mathcalls-narrow.h>
730 # undef __MATHCALL_NAME
733 # if __HAVE_FLOAT32X && __HAVE_FLOAT64X
734 # define _Mret_ _Float32x
735 # define _Marg_ _Float64x
736 # define __MATHCALL_NAME(name) f32x ## name ## f64x
737 # include <bits/mathcalls-narrow.h>
740 # undef __MATHCALL_NAME
743 # if __HAVE_FLOAT32X && __HAVE_FLOAT128
744 # define _Mret_ _Float32x
745 # define _Marg_ _Float128
746 # define __MATHCALL_NAME(name) f32x ## name ## f128
747 # include <bits/mathcalls-narrow.h>
750 # undef __MATHCALL_NAME
753 # if __HAVE_FLOAT32X && __HAVE_FLOAT128X
754 # define _Mret_ _Float32x
755 # define _Marg_ _Float128x
756 # define __MATHCALL_NAME(name) f32x ## name ## f128x
757 # include <bits/mathcalls-narrow.h>
760 # undef __MATHCALL_NAME
763 # if __HAVE_FLOAT64 && __HAVE_FLOAT64X
764 # define _Mret_ _Float64
765 # define _Marg_ _Float64x
766 # define __MATHCALL_NAME(name) f64 ## name ## f64x
767 # include <bits/mathcalls-narrow.h>
770 # undef __MATHCALL_NAME
773 # if __HAVE_FLOAT64 && __HAVE_FLOAT128
774 # define _Mret_ _Float64
775 # define _Marg_ _Float128
776 # define __MATHCALL_NAME(name) f64 ## name ## f128
777 # include <bits/mathcalls-narrow.h>
780 # undef __MATHCALL_NAME
783 # if __HAVE_FLOAT64 && __HAVE_FLOAT128X
784 # define _Mret_ _Float64
785 # define _Marg_ _Float128x
786 # define __MATHCALL_NAME(name) f64 ## name ## f128x
787 # include <bits/mathcalls-narrow.h>
790 # undef __MATHCALL_NAME
793 # if __HAVE_FLOAT64X && __HAVE_FLOAT128
794 # define _Mret_ _Float64x
795 # define _Marg_ _Float128
796 # define __MATHCALL_NAME(name) f64x ## name ## f128
797 # include <bits/mathcalls-narrow.h>
800 # undef __MATHCALL_NAME
803 # if __HAVE_FLOAT64X && __HAVE_FLOAT128X
804 # define _Mret_ _Float64x
805 # define _Marg_ _Float128x
806 # define __MATHCALL_NAME(name) f64x ## name ## f128x
807 # include <bits/mathcalls-narrow.h>
810 # undef __MATHCALL_NAME
813 # if __HAVE_FLOAT128 && __HAVE_FLOAT128X
814 # define _Mret_ _Float128
815 # define _Marg_ _Float128x
816 # define __MATHCALL_NAME(name) f128 ## name ## f128x
817 # include <bits/mathcalls-narrow.h>
820 # undef __MATHCALL_NAME
825 #undef __MATHCALL_NARROW_ARGS_1
826 #undef __MATHCALL_NARROW_ARGS_2
827 #undef __MATHCALL_NARROW_ARGS_3
828 #undef __MATHCALL_NARROW_NORMAL
829 #undef __MATHCALL_NARROW_REDIR
830 #undef __MATHCALL_NARROW
832 #if defined __USE_MISC || defined __USE_XOPEN
833 /* This variable is used by `gamma' and `lgamma'. */
837 #if (__HAVE_DISTINCT_FLOAT16 \
838 || __HAVE_DISTINCT_FLOAT32 \
839 || __HAVE_DISTINCT_FLOAT64 \
840 || __HAVE_DISTINCT_FLOAT32X \
841 || __HAVE_DISTINCT_FLOAT64X \
842 || __HAVE_DISTINCT_FLOAT128X)
843 # error "Unsupported _FloatN or _FloatNx types for <math.h>."
846 /* Depending on the type of TG_ARG, call an appropriately suffixed
847 version of FUNC with arguments (including parentheses) ARGS.
848 Suffixed functions may not exist for long double if it has the same
849 format as double, or for other types with the same format as float,
850 double or long double. The behavior is undefined if the argument
851 does not have a real floating type. The definition may use a
852 conditional expression, so all suffixed versions of FUNC must
853 return the same type (FUNC may include a cast if necessary rather
854 than being a single identifier). */
855 #ifdef __NO_LONG_DOUBLE_MATH
856 # if __HAVE_DISTINCT_FLOAT128
857 # error "Distinct _Float128 without distinct long double not supported."
859 # define __MATH_TG(TG_ARG, FUNC, ARGS) \
860 (sizeof (TG_ARG) == sizeof (float) ? FUNC ## f ARGS : FUNC ARGS)
861 #elif __HAVE_DISTINCT_FLOAT128
862 # if __HAVE_GENERIC_SELECTION
863 # if __HAVE_FLOATN_NOT_TYPEDEF && __HAVE_FLOAT32
864 # define __MATH_TG_F32(FUNC, ARGS) _Float32: FUNC ## f ARGS,
866 # define __MATH_TG_F32(FUNC, ARGS)
868 # if __HAVE_FLOATN_NOT_TYPEDEF && __HAVE_FLOAT64X
869 # if __HAVE_FLOAT64X_LONG_DOUBLE
870 # define __MATH_TG_F64X(FUNC, ARGS) _Float64x: FUNC ## l ARGS,
872 # define __MATH_TG_F64X(FUNC, ARGS) _Float64x: FUNC ## f128 ARGS,
875 # define __MATH_TG_F64X(FUNC, ARGS)
877 # define __MATH_TG(TG_ARG, FUNC, ARGS) \
878 _Generic ((TG_ARG), \
879 float: FUNC ## f ARGS, \
880 __MATH_TG_F32 (FUNC, ARGS) \
881 default: FUNC ARGS, \
882 long double: FUNC ## l ARGS, \
883 __MATH_TG_F64X (FUNC, ARGS) \
884 _Float128: FUNC ## f128 ARGS)
886 # if __HAVE_FLOATN_NOT_TYPEDEF
887 # error "Non-typedef _FloatN but no _Generic."
889 # define __MATH_TG(TG_ARG, FUNC, ARGS) \
890 __builtin_choose_expr \
891 (__builtin_types_compatible_p (__typeof (TG_ARG), float), \
893 __builtin_choose_expr \
894 (__builtin_types_compatible_p (__typeof (TG_ARG), double), \
896 __builtin_choose_expr \
897 (__builtin_types_compatible_p (__typeof (TG_ARG), long double), \
902 # define __MATH_TG(TG_ARG, FUNC, ARGS) \
903 (sizeof (TG_ARG) == sizeof (float) \
905 : sizeof (TG_ARG) == sizeof (double) \
910 /* ISO C99 defines some generic macros which work on any data type. */
913 /* All floating-point numbers can be put in one of these categories. */
920 # define FP_INFINITE 1
926 # define FP_SUBNORMAL 3
933 /* GCC bug 66462 means we cannot use the math builtins with -fsignaling-nan,
934 so disable builtins if this is enabled. When fixed in a newer GCC,
935 the __SUPPORT_SNAN__ check may be skipped for those versions. */
937 /* Return number of classification appropriate for X. */
938 # if ((__GNUC_PREREQ (4,4) && !defined __SUPPORT_SNAN__) \
939 || __glibc_clang_prereq (2,8)) \
940 && (!defined __OPTIMIZE_SIZE__ || defined __cplusplus)
941 /* The check for __cplusplus allows the use of the builtin, even
942 when optimization for size is on. This is provided for
943 libstdc++, only to let its configure test work when it is built
944 with -Os. No further use of this definition of fpclassify is
945 expected in C++ mode, since libstdc++ provides its own version
946 of fpclassify in cmath (which undefines fpclassify). */
947 # define fpclassify(x) __builtin_fpclassify (FP_NAN, FP_INFINITE, \
948 FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x)
950 # define fpclassify(x) __MATH_TG ((x), __fpclassify, (x))
953 /* Return nonzero value if sign of X is negative. */
954 # if __GNUC_PREREQ (6,0) || __glibc_clang_prereq (3,3)
955 # define signbit(x) __builtin_signbit (x)
956 # elif defined __cplusplus
957 /* In C++ mode, __MATH_TG cannot be used, because it relies on
958 __builtin_types_compatible_p, which is a C-only builtin.
959 The check for __cplusplus allows the use of the builtin instead of
960 __MATH_TG. This is provided for libstdc++, only to let its configure
961 test work. No further use of this definition of signbit is expected
962 in C++ mode, since libstdc++ provides its own version of signbit
963 in cmath (which undefines signbit). */
964 # define signbit(x) __builtin_signbitl (x)
965 # elif __GNUC_PREREQ (4,0)
966 # define signbit(x) __MATH_TG ((x), __builtin_signbit, (x))
968 # define signbit(x) __MATH_TG ((x), __signbit, (x))
971 /* Return nonzero value if X is not +-Inf or NaN. */
972 # if (__GNUC_PREREQ (4,4) && !defined __SUPPORT_SNAN__) \
973 || __glibc_clang_prereq (2,8)
974 # define isfinite(x) __builtin_isfinite (x)
976 # define isfinite(x) __MATH_TG ((x), __finite, (x))
979 /* Return nonzero value if X is neither zero, subnormal, Inf, nor NaN. */
980 # if (__GNUC_PREREQ (4,4) && !defined __SUPPORT_SNAN__) \
981 || __glibc_clang_prereq (2,8)
982 # define isnormal(x) __builtin_isnormal (x)
984 # define isnormal(x) (fpclassify (x) == FP_NORMAL)
987 /* Return nonzero value if X is a NaN. We could use `fpclassify' but
988 we already have this functions `__isnan' and it is faster. */
989 # if (__GNUC_PREREQ (4,4) && !defined __SUPPORT_SNAN__) \
990 || __glibc_clang_prereq (2,8)
991 # define isnan(x) __builtin_isnan (x)
993 # define isnan(x) __MATH_TG ((x), __isnan, (x))
996 /* Return nonzero value if X is positive or negative infinity. */
997 # if __HAVE_DISTINCT_FLOAT128 && !__GNUC_PREREQ (7,0) \
998 && !defined __SUPPORT_SNAN__ && !defined __cplusplus
999 /* Since __builtin_isinf_sign is broken for float128 before GCC 7.0,
1000 use the helper function, __isinff128, with older compilers. This is
1001 only provided for C mode, because in C++ mode, GCC has no support
1002 for __builtin_types_compatible_p (and when in C++ mode, this macro is
1003 not used anyway, because libstdc++ headers undefine it). */
1005 (__builtin_types_compatible_p (__typeof (x), _Float128) \
1006 ? __isinff128 (x) : __builtin_isinf_sign (x))
1007 # elif (__GNUC_PREREQ (4,4) && !defined __SUPPORT_SNAN__) \
1008 || __glibc_clang_prereq (3,7)
1009 # define isinf(x) __builtin_isinf_sign (x)
1011 # define isinf(x) __MATH_TG ((x), __isinf, (x))
1014 /* Bitmasks for the math_errhandling macro. */
1015 # define MATH_ERRNO 1 /* errno set by math functions. */
1016 # define MATH_ERREXCEPT 2 /* Exceptions raised by math functions. */
1018 /* By default all math functions support both errno and exception handling
1019 (except for soft floating point implementations which may only support
1020 errno handling). If errno handling is disabled, exceptions are still
1021 supported by GLIBC. Set math_errhandling to 0 with -ffast-math (this is
1022 nonconforming but it is more useful than leaving it undefined). */
1023 # ifdef __FAST_MATH__
1024 # define math_errhandling 0
1025 # elif defined __NO_MATH_ERRNO__
1026 # define math_errhandling (MATH_ERREXCEPT)
1028 # define math_errhandling (MATH_ERRNO | MATH_ERREXCEPT)
1031 #endif /* Use ISO C99. */
1033 #if __GLIBC_USE (IEC_60559_BFP_EXT_C2X)
1034 # include <bits/iscanonical.h>
1036 /* Return nonzero value if X is a signaling NaN. */
1037 # ifndef __cplusplus
1038 # define issignaling(x) __MATH_TG ((x), __issignaling, (x))
1040 /* In C++ mode, __MATH_TG cannot be used, because it relies on
1041 __builtin_types_compatible_p, which is a C-only builtin. On the
1042 other hand, overloading provides the means to distinguish between
1043 the floating-point types. The overloading resolution will match
1044 the correct parameter (regardless of type qualifiers (i.e.: const
1047 inline int issignaling (float __val
) { return __issignalingf (__val
); }
1048 inline int issignaling (double __val
) { return __issignaling (__val
); }
1050 issignaling (long double __val
)
1052 # ifdef __NO_LONG_DOUBLE_MATH
1053 return __issignaling (__val
);
1055 return __issignalingl (__val
);
1058 # if __HAVE_FLOAT128_UNLIKE_LDBL
1059 /* When using an IEEE 128-bit long double, _Float128 is defined as long double
1061 inline int issignaling (_Float128 __val
) { return __issignalingf128 (__val
); }
1066 /* Return nonzero value if X is subnormal. */
1067 # define issubnormal(x) (fpclassify (x) == FP_SUBNORMAL)
1069 /* Return nonzero value if X is zero. */
1070 # ifndef __cplusplus
1071 # ifdef __SUPPORT_SNAN__
1072 # define iszero(x) (fpclassify (x) == FP_ZERO)
1074 # define iszero(x) (((__typeof (x)) (x)) == 0)
1076 # else /* __cplusplus */
1078 # ifdef __SUPPORT_SNAN__
1080 iszero (float __val
)
1082 return __fpclassifyf (__val
) == FP_ZERO
;
1085 iszero (double __val
)
1087 return __fpclassify (__val
) == FP_ZERO
;
1090 iszero (long double __val
)
1092 # ifdef __NO_LONG_DOUBLE_MATH
1093 return __fpclassify (__val
) == FP_ZERO
;
1095 return __fpclassifyl (__val
) == FP_ZERO
;
1098 # if __HAVE_FLOAT128_UNLIKE_LDBL
1099 /* When using an IEEE 128-bit long double, _Float128 is defined as long double
1102 iszero (_Float128 __val
)
1104 return __fpclassifyf128 (__val
) == FP_ZERO
;
1108 template <class __T
> inline bool
1115 # endif /* __cplusplus */
1116 #endif /* Use IEC_60559_BFP_EXT. */
1119 /* X/Open wants another strange constant. */
1120 # define MAXFLOAT 3.40282347e+38F
1124 /* Some useful constants. */
1125 #if defined __USE_MISC || defined __USE_XOPEN
1126 # define M_E 2.7182818284590452354 /* e */
1127 # define M_LOG2E 1.4426950408889634074 /* log_2 e */
1128 # define M_LOG10E 0.43429448190325182765 /* log_10 e */
1129 # define M_LN2 0.69314718055994530942 /* log_e 2 */
1130 # define M_LN10 2.30258509299404568402 /* log_e 10 */
1131 # define M_PI 3.14159265358979323846 /* pi */
1132 # define M_PI_2 1.57079632679489661923 /* pi/2 */
1133 # define M_PI_4 0.78539816339744830962 /* pi/4 */
1134 # define M_1_PI 0.31830988618379067154 /* 1/pi */
1135 # define M_2_PI 0.63661977236758134308 /* 2/pi */
1136 # define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
1137 # define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
1138 # define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
1141 /* The above constants are not adequate for computation using `long double's.
1142 Therefore we provide as an extension constants with similar names as a
1143 GNU extension. Provide enough digits for the 128-bit IEEE quad. */
1145 # define M_El 2.718281828459045235360287471352662498L /* e */
1146 # define M_LOG2El 1.442695040888963407359924681001892137L /* log_2 e */
1147 # define M_LOG10El 0.434294481903251827651128918916605082L /* log_10 e */
1148 # define M_LN2l 0.693147180559945309417232121458176568L /* log_e 2 */
1149 # define M_LN10l 2.302585092994045684017991454684364208L /* log_e 10 */
1150 # define M_PIl 3.141592653589793238462643383279502884L /* pi */
1151 # define M_PI_2l 1.570796326794896619231321691639751442L /* pi/2 */
1152 # define M_PI_4l 0.785398163397448309615660845819875721L /* pi/4 */
1153 # define M_1_PIl 0.318309886183790671537767526745028724L /* 1/pi */
1154 # define M_2_PIl 0.636619772367581343075535053490057448L /* 2/pi */
1155 # define M_2_SQRTPIl 1.128379167095512573896158903121545172L /* 2/sqrt(pi) */
1156 # define M_SQRT2l 1.414213562373095048801688724209698079L /* sqrt(2) */
1157 # define M_SQRT1_2l 0.707106781186547524400844362104849039L /* 1/sqrt(2) */
1160 #if __HAVE_FLOAT16 && defined __USE_GNU
1161 # define M_Ef16 __f16 (2.718281828459045235360287471352662498) /* e */
1162 # define M_LOG2Ef16 __f16 (1.442695040888963407359924681001892137) /* log_2 e */
1163 # define M_LOG10Ef16 __f16 (0.434294481903251827651128918916605082) /* log_10 e */
1164 # define M_LN2f16 __f16 (0.693147180559945309417232121458176568) /* log_e 2 */
1165 # define M_LN10f16 __f16 (2.302585092994045684017991454684364208) /* log_e 10 */
1166 # define M_PIf16 __f16 (3.141592653589793238462643383279502884) /* pi */
1167 # define M_PI_2f16 __f16 (1.570796326794896619231321691639751442) /* pi/2 */
1168 # define M_PI_4f16 __f16 (0.785398163397448309615660845819875721) /* pi/4 */
1169 # define M_1_PIf16 __f16 (0.318309886183790671537767526745028724) /* 1/pi */
1170 # define M_2_PIf16 __f16 (0.636619772367581343075535053490057448) /* 2/pi */
1171 # define M_2_SQRTPIf16 __f16 (1.128379167095512573896158903121545172) /* 2/sqrt(pi) */
1172 # define M_SQRT2f16 __f16 (1.414213562373095048801688724209698079) /* sqrt(2) */
1173 # define M_SQRT1_2f16 __f16 (0.707106781186547524400844362104849039) /* 1/sqrt(2) */
1176 #if __HAVE_FLOAT32 && defined __USE_GNU
1177 # define M_Ef32 __f32 (2.718281828459045235360287471352662498) /* e */
1178 # define M_LOG2Ef32 __f32 (1.442695040888963407359924681001892137) /* log_2 e */
1179 # define M_LOG10Ef32 __f32 (0.434294481903251827651128918916605082) /* log_10 e */
1180 # define M_LN2f32 __f32 (0.693147180559945309417232121458176568) /* log_e 2 */
1181 # define M_LN10f32 __f32 (2.302585092994045684017991454684364208) /* log_e 10 */
1182 # define M_PIf32 __f32 (3.141592653589793238462643383279502884) /* pi */
1183 # define M_PI_2f32 __f32 (1.570796326794896619231321691639751442) /* pi/2 */
1184 # define M_PI_4f32 __f32 (0.785398163397448309615660845819875721) /* pi/4 */
1185 # define M_1_PIf32 __f32 (0.318309886183790671537767526745028724) /* 1/pi */
1186 # define M_2_PIf32 __f32 (0.636619772367581343075535053490057448) /* 2/pi */
1187 # define M_2_SQRTPIf32 __f32 (1.128379167095512573896158903121545172) /* 2/sqrt(pi) */
1188 # define M_SQRT2f32 __f32 (1.414213562373095048801688724209698079) /* sqrt(2) */
1189 # define M_SQRT1_2f32 __f32 (0.707106781186547524400844362104849039) /* 1/sqrt(2) */
1192 #if __HAVE_FLOAT64 && defined __USE_GNU
1193 # define M_Ef64 __f64 (2.718281828459045235360287471352662498) /* e */
1194 # define M_LOG2Ef64 __f64 (1.442695040888963407359924681001892137) /* log_2 e */
1195 # define M_LOG10Ef64 __f64 (0.434294481903251827651128918916605082) /* log_10 e */
1196 # define M_LN2f64 __f64 (0.693147180559945309417232121458176568) /* log_e 2 */
1197 # define M_LN10f64 __f64 (2.302585092994045684017991454684364208) /* log_e 10 */
1198 # define M_PIf64 __f64 (3.141592653589793238462643383279502884) /* pi */
1199 # define M_PI_2f64 __f64 (1.570796326794896619231321691639751442) /* pi/2 */
1200 # define M_PI_4f64 __f64 (0.785398163397448309615660845819875721) /* pi/4 */
1201 # define M_1_PIf64 __f64 (0.318309886183790671537767526745028724) /* 1/pi */
1202 # define M_2_PIf64 __f64 (0.636619772367581343075535053490057448) /* 2/pi */
1203 # define M_2_SQRTPIf64 __f64 (1.128379167095512573896158903121545172) /* 2/sqrt(pi) */
1204 # define M_SQRT2f64 __f64 (1.414213562373095048801688724209698079) /* sqrt(2) */
1205 # define M_SQRT1_2f64 __f64 (0.707106781186547524400844362104849039) /* 1/sqrt(2) */
1208 #if __HAVE_FLOAT128 && defined __USE_GNU
1209 # define M_Ef128 __f128 (2.718281828459045235360287471352662498) /* e */
1210 # define M_LOG2Ef128 __f128 (1.442695040888963407359924681001892137) /* log_2 e */
1211 # define M_LOG10Ef128 __f128 (0.434294481903251827651128918916605082) /* log_10 e */
1212 # define M_LN2f128 __f128 (0.693147180559945309417232121458176568) /* log_e 2 */
1213 # define M_LN10f128 __f128 (2.302585092994045684017991454684364208) /* log_e 10 */
1214 # define M_PIf128 __f128 (3.141592653589793238462643383279502884) /* pi */
1215 # define M_PI_2f128 __f128 (1.570796326794896619231321691639751442) /* pi/2 */
1216 # define M_PI_4f128 __f128 (0.785398163397448309615660845819875721) /* pi/4 */
1217 # define M_1_PIf128 __f128 (0.318309886183790671537767526745028724) /* 1/pi */
1218 # define M_2_PIf128 __f128 (0.636619772367581343075535053490057448) /* 2/pi */
1219 # define M_2_SQRTPIf128 __f128 (1.128379167095512573896158903121545172) /* 2/sqrt(pi) */
1220 # define M_SQRT2f128 __f128 (1.414213562373095048801688724209698079) /* sqrt(2) */
1221 # define M_SQRT1_2f128 __f128 (0.707106781186547524400844362104849039) /* 1/sqrt(2) */
1224 #if __HAVE_FLOAT32X && defined __USE_GNU
1225 # define M_Ef32x __f32x (2.718281828459045235360287471352662498) /* e */
1226 # define M_LOG2Ef32x __f32x (1.442695040888963407359924681001892137) /* log_2 e */
1227 # define M_LOG10Ef32x __f32x (0.434294481903251827651128918916605082) /* log_10 e */
1228 # define M_LN2f32x __f32x (0.693147180559945309417232121458176568) /* log_e 2 */
1229 # define M_LN10f32x __f32x (2.302585092994045684017991454684364208) /* log_e 10 */
1230 # define M_PIf32x __f32x (3.141592653589793238462643383279502884) /* pi */
1231 # define M_PI_2f32x __f32x (1.570796326794896619231321691639751442) /* pi/2 */
1232 # define M_PI_4f32x __f32x (0.785398163397448309615660845819875721) /* pi/4 */
1233 # define M_1_PIf32x __f32x (0.318309886183790671537767526745028724) /* 1/pi */
1234 # define M_2_PIf32x __f32x (0.636619772367581343075535053490057448) /* 2/pi */
1235 # define M_2_SQRTPIf32x __f32x (1.128379167095512573896158903121545172) /* 2/sqrt(pi) */
1236 # define M_SQRT2f32x __f32x (1.414213562373095048801688724209698079) /* sqrt(2) */
1237 # define M_SQRT1_2f32x __f32x (0.707106781186547524400844362104849039) /* 1/sqrt(2) */
1240 #if __HAVE_FLOAT64X && defined __USE_GNU
1241 # define M_Ef64x __f64x (2.718281828459045235360287471352662498) /* e */
1242 # define M_LOG2Ef64x __f64x (1.442695040888963407359924681001892137) /* log_2 e */
1243 # define M_LOG10Ef64x __f64x (0.434294481903251827651128918916605082) /* log_10 e */
1244 # define M_LN2f64x __f64x (0.693147180559945309417232121458176568) /* log_e 2 */
1245 # define M_LN10f64x __f64x (2.302585092994045684017991454684364208) /* log_e 10 */
1246 # define M_PIf64x __f64x (3.141592653589793238462643383279502884) /* pi */
1247 # define M_PI_2f64x __f64x (1.570796326794896619231321691639751442) /* pi/2 */
1248 # define M_PI_4f64x __f64x (0.785398163397448309615660845819875721) /* pi/4 */
1249 # define M_1_PIf64x __f64x (0.318309886183790671537767526745028724) /* 1/pi */
1250 # define M_2_PIf64x __f64x (0.636619772367581343075535053490057448) /* 2/pi */
1251 # define M_2_SQRTPIf64x __f64x (1.128379167095512573896158903121545172) /* 2/sqrt(pi) */
1252 # define M_SQRT2f64x __f64x (1.414213562373095048801688724209698079) /* sqrt(2) */
1253 # define M_SQRT1_2f64x __f64x (0.707106781186547524400844362104849039) /* 1/sqrt(2) */
1256 #if __HAVE_FLOAT128X && defined __USE_GNU
1257 # error "M_* values needed for _Float128x"
1261 # if __GNUC_PREREQ (3, 1)
1262 /* ISO C99 defines some macros to compare number while taking care for
1263 unordered numbers. Many FPUs provide special instructions to support
1264 these operations. Generic support in GCC for these as builtins went
1265 in 2.97, but not all cpus added their patterns until 3.1. Therefore
1266 we enable the builtins from 3.1 onwards and use a generic implementation
1268 # define isgreater(x, y) __builtin_isgreater(x, y)
1269 # define isgreaterequal(x, y) __builtin_isgreaterequal(x, y)
1270 # define isless(x, y) __builtin_isless(x, y)
1271 # define islessequal(x, y) __builtin_islessequal(x, y)
1272 # define islessgreater(x, y) __builtin_islessgreater(x, y)
1273 # define isunordered(x, y) __builtin_isunordered(x, y)
1275 # define isgreater(x, y) \
1276 (__extension__ ({ __typeof__ (x) __x = (x); __typeof__ (y) __y = (y); \
1277 !isunordered (__x, __y) && __x > __y; }))
1278 # define isgreaterequal(x, y) \
1279 (__extension__ ({ __typeof__ (x) __x = (x); __typeof__ (y) __y = (y); \
1280 !isunordered (__x, __y) && __x >= __y; }))
1281 # define isless(x, y) \
1282 (__extension__ ({ __typeof__ (x) __x = (x); __typeof__ (y) __y = (y); \
1283 !isunordered (__x, __y) && __x < __y; }))
1284 # define islessequal(x, y) \
1285 (__extension__ ({ __typeof__ (x) __x = (x); __typeof__ (y) __y = (y); \
1286 !isunordered (__x, __y) && __x <= __y; }))
1287 # define islessgreater(x, y) \
1288 (__extension__ ({ __typeof__ (x) __x = (x); __typeof__ (y) __y = (y); \
1289 !isunordered (__x, __y) && __x != __y; }))
1290 /* isunordered must always check both operands first for signaling NaNs. */
1291 # define isunordered(x, y) \
1292 (__extension__ ({ __typeof__ (x) __u = (x); __typeof__ (y) __v = (y); \
1293 __u != __v && (__u != __u || __v != __v); }))
1297 #if __GLIBC_USE (IEC_60559_BFP_EXT_C2X)
1298 /* An expression whose type has the widest of the evaluation formats
1299 of X and Y (which are of floating-point types). */
1300 # if __FLT_EVAL_METHOD__ == 2 || __FLT_EVAL_METHOD__ > 64
1301 # define __MATH_EVAL_FMT2(x, y) ((x) + (y) + 0.0L)
1302 # elif __FLT_EVAL_METHOD__ == 1 || __FLT_EVAL_METHOD__ > 32
1303 # define __MATH_EVAL_FMT2(x, y) ((x) + (y) + 0.0)
1304 # elif __FLT_EVAL_METHOD__ == 0 || __FLT_EVAL_METHOD__ == 32
1305 # define __MATH_EVAL_FMT2(x, y) ((x) + (y) + 0.0f)
1307 # define __MATH_EVAL_FMT2(x, y) ((x) + (y))
1310 /* Return X == Y but raising "invalid" and setting errno if X or Y is
1312 # if !defined __cplusplus || (__cplusplus < 201103L && !defined __GNUC__)
1313 # define iseqsig(x, y) \
1314 __MATH_TG (__MATH_EVAL_FMT2 (x, y), __iseqsig, ((x), (y)))
1316 /* In C++ mode, __MATH_TG cannot be used, because it relies on
1317 __builtin_types_compatible_p, which is a C-only builtin. Moreover,
1318 the comparison macros from ISO C take two floating-point arguments,
1319 which need not have the same type. Choosing what underlying function
1320 to call requires evaluating the formats of the arguments, then
1321 selecting which is wider. The macro __MATH_EVAL_FMT2 provides this
1322 information, however, only the type of the macro expansion is
1323 relevant (actually evaluating the expression would be incorrect).
1324 Thus, the type is used as a template parameter for __iseqsig_type,
1325 which calls the appropriate underlying function. */
1327 template<typename
> struct __iseqsig_type
;
1329 template<> struct __iseqsig_type
<float>
1331 static int __call (float __x
, float __y
) throw ()
1333 return __iseqsigf (__x
, __y
);
1337 template<> struct __iseqsig_type
<double>
1339 static int __call (double __x
, double __y
) throw ()
1341 return __iseqsig (__x
, __y
);
1345 template<> struct __iseqsig_type
<long double>
1347 static int __call (long double __x
, long double __y
) throw ()
1349 # ifndef __NO_LONG_DOUBLE_MATH
1350 return __iseqsigl (__x
, __y
);
1352 return __iseqsig (__x
, __y
);
1357 # if __HAVE_FLOAT128_UNLIKE_LDBL
1358 /* When using an IEEE 128-bit long double, _Float128 is defined as long double
1360 template<> struct __iseqsig_type
<_Float128
>
1362 static int __call (_Float128 __x
, _Float128 __y
) throw ()
1364 return __iseqsigf128 (__x
, __y
);
1369 template<typename _T1
, typename _T2
>
1371 iseqsig (_T1 __x
, _T2 __y
) throw ()
1373 # if __cplusplus >= 201103L
1374 typedef decltype (__MATH_EVAL_FMT2 (__x
, __y
)) _T3
;
1376 typedef __typeof (__MATH_EVAL_FMT2 (__x
, __y
)) _T3
;
1378 return __iseqsig_type
<_T3
>::__call (__x
, __y
);
1381 } /* extern "C++" */
1382 # endif /* __cplusplus */