]> git.ipfire.org Git - thirdparty/glibc.git/blob - math/libm-test-support.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / math / libm-test-support.h
1 /* Support code for testing libm functions (common declarations).
2 Copyright (C) 1997-2020 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 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.
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 Lesser General Public License for more details.
14
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/>. */
18
19 #ifndef LIBM_TEST_SUPPORT_H
20 #define LIBM_TEST_SUPPORT_H 1
21
22 #include <complex.h>
23 #include <math.h>
24 #include <float.h>
25 #include <fenv.h>
26 #include <limits.h>
27
28 #include <stdlib.h>
29 #include <stdint.h>
30 #include <stdio.h>
31 #include <tininess.h>
32 #include <math-tests.h>
33 #include <nan-high-order-bit.h>
34
35 extern const int flag_test_errno;
36 extern const int flag_test_exceptions;
37 extern const int flag_test_inline;
38 extern const int flag_test_mathvec;
39 extern const int snan_tests_arg;
40 extern const char test_msg[];
41 extern const char qtype_str[];
42 extern const char doc[];
43
44 /* Possible exceptions */
45 #define NO_EXCEPTION 0x0
46 #define INVALID_EXCEPTION 0x1
47 #define DIVIDE_BY_ZERO_EXCEPTION 0x2
48 #define OVERFLOW_EXCEPTION 0x4
49 #define UNDERFLOW_EXCEPTION 0x8
50 #define INEXACT_EXCEPTION 0x10
51 /* The next flags signals that those exceptions are allowed but not required. */
52 #define INVALID_EXCEPTION_OK 0x20
53 #define DIVIDE_BY_ZERO_EXCEPTION_OK 0x40
54 #define OVERFLOW_EXCEPTION_OK 0x80
55 #define UNDERFLOW_EXCEPTION_OK 0x100
56 /* For "inexact" exceptions, the default is allowed but not required
57 unless INEXACT_EXCEPTION or NO_INEXACT_EXCEPTION is specified. */
58 #define NO_INEXACT_EXCEPTION 0x200
59 /* Some special test flags, passed together with exceptions. */
60 #define IGNORE_ZERO_INF_SIGN 0x400
61 #define TEST_NAN_SIGN 0x800
62 #define TEST_NAN_PAYLOAD 0x1000
63 #define NO_TEST_INLINE 0x2000
64 #define XFAIL_TEST 0x4000
65 /* Indicate errno settings required or disallowed. */
66 #define ERRNO_UNCHANGED 0x8000
67 #define ERRNO_EDOM 0x10000
68 #define ERRNO_ERANGE 0x20000
69 /* Flags generated by gen-libm-test.py, not entered here manually. */
70 #define IGNORE_RESULT 0x40000
71 #define TEST_SNAN 0x100000
72 #define NO_TEST_MATHVEC 0x200000
73
74 #define __CONCATX(a,b) __CONCAT(a,b)
75
76 #define TYPE_MIN __CONCATX (PREFIX, _MIN)
77 #define TYPE_TRUE_MIN __CONCATX (PREFIX, _TRUE_MIN)
78 #define TYPE_MAX __CONCATX (PREFIX, _MAX)
79 #define MIN_EXP __CONCATX (PREFIX, _MIN_EXP)
80 #define MAX_EXP __CONCATX (PREFIX, _MAX_EXP)
81 #define MANT_DIG __CONCATX (PREFIX, _MANT_DIG)
82
83 #define ARG_TYPE_MIN __CONCATX (ARG_PREFIX, _MIN)
84 #define ARG_TYPE_TRUE_MIN __CONCATX (ARG_PREFIX, _TRUE_MIN)
85 #define ARG_TYPE_MAX __CONCATX (ARG_PREFIX, _MAX)
86 #define ARG_MIN_EXP __CONCATX (ARG_PREFIX, _MIN_EXP)
87 #define ARG_MAX_EXP __CONCATX (ARG_PREFIX, _MAX_EXP)
88 #define ARG_MANT_DIG __CONCATX (ARG_PREFIX, _MANT_DIG)
89
90 /* Format specific test macros. */
91 #define TEST_COND_binary32 (MANT_DIG == 24 \
92 && MIN_EXP == -125 \
93 && MAX_EXP == 128)
94
95 #define TEST_COND_binary64 (MANT_DIG == 53 \
96 && MIN_EXP == -1021 \
97 && MAX_EXP == 1024)
98
99 #define TEST_COND_binary128 (MANT_DIG == 113 \
100 && MIN_EXP == -16381 \
101 && MAX_EXP == 16384)
102
103 #define TEST_COND_ibm128 (MANT_DIG == 106)
104
105 #define TEST_COND_arg_ibm128 (ARG_MANT_DIG == 106)
106
107 #define TEST_COND_intel96 (MANT_DIG == 64 \
108 && MIN_EXP == -16381 \
109 && MAX_EXP == 16384)
110
111 #define TEST_COND_m68k96 (MANT_DIG == 64 \
112 && MIN_EXP == -16382 \
113 && MAX_EXP == 16384)
114
115 /* The condition ibm128-libgcc is used instead of ibm128 to mark tests
116 where in principle the glibc code is OK but the tests fail because
117 of limitations of the libgcc support for that format (e.g. GCC bug
118 59666, in non-default rounding modes). */
119 #ifdef ARG_FLOAT
120 # define TEST_COND_ibm128_libgcc (TEST_COND_ibm128 || TEST_COND_arg_ibm128)
121 #else
122 # define TEST_COND_ibm128_libgcc TEST_COND_ibm128
123 #endif
124
125 /* Mark a test as expected to fail for ibm128-libgcc. This is used
126 via XFAIL_ROUNDING_IBM128_LIBGCC, which gen-libm-test.py transforms
127 appropriately for each rounding mode. */
128 #define XFAIL_IBM128_LIBGCC (TEST_COND_ibm128_libgcc ? XFAIL_TEST : 0)
129
130 /* On some architectures, glibc can be built with compilers that do
131 not have suitable built-in functions for setting the payload of a
132 _Float128 NaN. */
133 #if ((defined __x86_64__ || defined __i386__ || defined __ia64__) \
134 && !__GNUC_PREREQ (7, 0))
135 # define XFAIL_FLOAT128_PAYLOAD (TEST_COND_binary128 ? XFAIL_TEST : 0)
136 #else
137 # define XFAIL_FLOAT128_PAYLOAD 0
138 #endif
139
140 /* Number of bits in NaN payload. */
141 #if TEST_COND_ibm128
142 # define PAYLOAD_DIG (DBL_MANT_DIG - 2)
143 #else
144 # define PAYLOAD_DIG (MANT_DIG - 2)
145 #endif
146
147 /* For narrowing functions, whether the argument format can represent
148 all the given argument values. */
149 #define TEST_COND_arg_fmt(MAX_EXP, NUM_ONES, MIN_EXP, MAX_PREC) \
150 (((MAX_EXP) < ARG_MAX_EXP) \
151 && (!TEST_COND_arg_ibm128 \
152 || (MAX_EXP) < ARG_MAX_EXP - 1 \
153 || (NUM_ONES) <= 53) \
154 && (MIN_EXP) >= ARG_MIN_EXP - ARG_MANT_DIG \
155 && (MAX_PREC) <= ARG_MANT_DIG)
156
157 /* Values underflowing on architectures detecting tininess before
158 rounding, but not on those detecting tininess after rounding. */
159 #define UNDERFLOW_EXCEPTION_BEFORE_ROUNDING (TININESS_AFTER_ROUNDING \
160 ? 0 \
161 : UNDERFLOW_EXCEPTION)
162
163 #if LONG_MAX == 0x7fffffff
164 # define TEST_COND_long32 1
165 # define TEST_COND_long64 0
166 #else
167 # define TEST_COND_long32 0
168 # define TEST_COND_long64 1
169 #endif
170 #define TEST_COND_before_rounding (!TININESS_AFTER_ROUNDING)
171 #define TEST_COND_after_rounding TININESS_AFTER_ROUNDING
172
173 int enable_test (int);
174 void init_max_error (const char *, int, int);
175 void print_max_error (const char *);
176 void print_complex_max_error (const char *);
177 void check_float (const char *, FLOAT, FLOAT, int);
178 void check_complex (const char *, CFLOAT, CFLOAT, int);
179 void check_int (const char *, int, int, int);
180 void check_long (const char *, long int, long int, int);
181 void check_bool (const char *, int, int, int);
182 void check_longlong (const char *, long long int, long long int, int);
183 void check_intmax_t (const char *, intmax_t, intmax_t, int);
184 void check_uintmax_t (const char *, uintmax_t, uintmax_t, int);
185 void libm_test_init (int, char **);
186 int libm_test_finish (void);
187
188 #endif /* LIBM_TEST_SUPPORT_H. */