1 /* Configuration for math routines.
2 Copyright (C) 2017 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 <http://www.gnu.org/licenses/>. */
19 #ifndef _MATH_CONFIG_H
20 #define _MATH_CONFIG_H
23 #include <math_private.h>
27 /* Correct special case results in non-nearest rounding modes. */
28 # define WANT_ROUNDING 1
31 /* Set errno according to ISO C with (math_errhandling & MATH_ERRNO) != 0. */
34 #ifndef WANT_ERRNO_UFLOW
35 /* Set errno to ERANGE if result underflows to 0 (in all rounding modes). */
36 # define WANT_ERRNO_UFLOW (WANT_ROUNDING && WANT_ERRNO)
39 #ifndef TOINT_INTRINSICS
40 # define TOINT_INTRINSICS 0
46 # define TOINT_SHIFT 1
49 static inline uint32_t
71 static inline uint64_t
93 #define NOINLINE __attribute__ ((noinline))
95 attribute_hidden
float __math_oflowf (unsigned long);
96 attribute_hidden
float __math_uflowf (unsigned long);
97 attribute_hidden
float __math_may_uflowf (unsigned long);
98 attribute_hidden
float __math_divzerof (unsigned long);
99 attribute_hidden
float __math_invalidf (float);
101 /* Shared between expf, exp2f and powf. */
102 #define EXP2F_TABLE_BITS 5
103 #define EXP2F_POLY_ORDER 3
104 extern const struct exp2f_data
106 uint64_t tab
[1 << EXP2F_TABLE_BITS
];
108 double poly
[EXP2F_POLY_ORDER
];
110 double invln2_scaled
;
111 double poly_scaled
[EXP2F_POLY_ORDER
];
112 } __exp2f_data attribute_hidden
;