]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
float128: Add test-{float128,ifloat128,float128-finite}
authorPaul E. Murphy <murphyp@linux.vnet.ibm.com>
Fri, 15 Jul 2016 19:29:51 +0000 (14:29 -0500)
committerGabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
Thu, 25 May 2017 19:14:47 +0000 (16:14 -0300)
This adds test support for float128, and lays some
groundwork for future _FloatN types.

* math/Makefile
(CFLAGS-test-float128.c): Add appropriate test flags.
(CFLAGS-test-float128-finite.c): Likewise
(CPPFLAGS-test-ifloat128.c): Likewise

* math/test-support.h (CFLOAT): New macro to compensate for older
compilers not supporting _Complex __float128.
* math/libm-test-support.c (check_complex): Use CFLOAT instead
of __complex__ FLOAT.

* math/test-float128-finite.c: New file.
* math/test-float128.c: New file.
* math/test-float128.h: New file.
* math/test-ifloat128.c: New file.
* math/test-math-floatn.h: New file.

* math/gen-libm-test.pl (all_floats): Add float128 variants.
(all_floats_pfx): Add float128 mapping.

* math/gen-libm-have-vector-test.sh: Add support for float128.

math/gen-libm-test.pl
math/libm-test-exp10.inc
math/libm-test-lgamma.inc
math/libm-test-nexttoward.inc
math/libm-test-remainder.inc
math/libm-test-scalb.inc
math/libm-test-significand.inc
math/libm-test-support.c
math/libm-test-support.h
math/test-float128.h [new file with mode: 0644]
math/test-math-floatn.h [new file with mode: 0644]

index a931bc542f1ba2c162547d2569a8523b26546aae..e82b2ac0021e8200e7876618fc8a2b5a2a1252a5 100755 (executable)
@@ -45,13 +45,15 @@ use vars qw (%auto_tests);
 
 # all_floats is sorted and contains all recognised float types
 @all_floats = ('double', 'float', 'idouble',
-              'ifloat', 'ildouble', 'ldouble');
+              'ifloat', 'ildouble', 'ldouble',
+              'ifloat128', 'float128');
 
 # all_floats_pfx maps C types to their C like prefix for macros.
 %all_floats_pfx =
   ( "double" => "DBL",
     "ldouble" => "LDBL",
     "float" => "FLT",
+    "float128" => "FLT128",
   );
 
 %beautify =
index 92c81adb7aec88710264889e8084c7bb24be7d86..374d12a1936a0282829973e2cdd4a81e551273be 100644 (file)
@@ -39,8 +39,10 @@ exp10_test (void)
 static void
 pow10_test (void)
 {
+#if !TEST_FLOATN
   /* pow10 uses the same test data as exp10.  */
   ALL_RM_TEST (pow10, 0, exp10_test_data, RUN_TEST_LOOP_f_f, END);
+#endif
 }
 
 static void
index 9799aa9aaffd9086f952698e30d22635c9fae03f..0927dd01220c07461aee06b48fa153a30c7ace19 100644 (file)
@@ -45,8 +45,10 @@ lgamma_test (void)
 static void
 gamma_test (void)
 {
+#if !TEST_FLOATN
   /* gamma uses the same test data as lgamma.  */
   ALL_RM_TEST (gamma, 0, lgamma_test_data, RUN_TEST_LOOP_f_f1, END, signgam);
+#endif
 }
 
 static void
index f05cf5fe4bf49ce5eb468430d40d36dcb8f9dafe..37a9338ca6cef3ceaebaa7cb20032707196dabc3 100644 (file)
@@ -20,6 +20,7 @@
 
 static const struct test_fj_f_data nexttoward_test_data[] =
   {
+#if !TEST_FLOATN
     TEST_fj_f (nexttoward, 0, 0, 0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
     TEST_fj_f (nexttoward, minus_zero, 0, 0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
     TEST_fj_f (nexttoward, 0, minus_zero, minus_zero, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
@@ -80,6 +81,7 @@ static const struct test_fj_f_data nexttoward_test_data[] =
     TEST_fj_f (nexttoward, min_subnorm_value, minus_zero, 0, INEXACT_EXCEPTION|UNDERFLOW_EXCEPTION|ERRNO_ERANGE),
     TEST_fj_f (nexttoward, -min_subnorm_value, 0, minus_zero, INEXACT_EXCEPTION|UNDERFLOW_EXCEPTION|ERRNO_ERANGE),
     TEST_fj_f (nexttoward, -min_subnorm_value, minus_zero, minus_zero, INEXACT_EXCEPTION|UNDERFLOW_EXCEPTION|ERRNO_ERANGE),
+#endif
 
 #if TEST_COND_binary32
     TEST_fj_f (nexttoward, 1.0, 1.1L, 0x1.000002p0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
@@ -153,7 +155,9 @@ static const struct test_fj_f_data nexttoward_test_data[] =
 static void
 nexttoward_test (void)
 {
+#if !TEST_FLOATN
   ALL_RM_TEST (nexttoward, 1, nexttoward_test_data, RUN_TEST_LOOP_fj_f, END);
+#endif
 }
 
 static void
index ddeba66dabfb99ef68deb9d1b64533937a7010a8..65503c70659347aee8508c165a6783d71d858d42 100644 (file)
@@ -184,8 +184,10 @@ remainder_test (void)
 static void
 drem_test (void)
 {
+#if !TEST_FLOATN
   /* drem uses the same test data as remainder.  */
   ALL_RM_TEST (drem, 1, remainder_test_data, RUN_TEST_LOOP_ff_f, END);
+#endif
 }
 
 static void
index 228a93d349279833be7180ab25d55c11663aebd2..b96f767c71f6bce4abd6e5554a936cd34b3b190a 100644 (file)
@@ -20,6 +20,7 @@
 
 static const struct test_ff_f_data scalb_test_data[] =
   {
+#if !TEST_FLOATN
     /* Results in this case are unspecified by POSIX, so, for an
        otherwise fully-determined function, spurious "inexact"
        exceptions are OK.  */
@@ -144,12 +145,15 @@ static const struct test_ff_f_data scalb_test_data[] =
 
     TEST_ff_f (scalb, 0.8L, 4, 12.8L, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
     TEST_ff_f (scalb, -0.854375L, 5, -27.34L, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+#endif
   };
 
 static void
 scalb_test (void)
 {
+#if !TEST_FLOATN
   ALL_RM_TEST (scalb, 1, scalb_test_data, RUN_TEST_LOOP_ff_f, END);
+#endif
 }
 
 static void
index 372c076fae2ebe17056b637a1edbf955bc2a6db8..5797e97a85bbcf030f31d7126343cba530be665d 100644 (file)
@@ -20,6 +20,7 @@
 
 static const struct test_f_f_data significand_test_data[] =
   {
+#if !TEST_FLOATN
     /* significand returns the mantissa of the exponential
        representation.  Tests for infinities, zero and NaNs reflect
        the implementation (including possibility of "inexact" and
@@ -45,12 +46,15 @@ static const struct test_f_f_data significand_test_data[] =
     TEST_f_f (significand, -6.0, -1.5, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
     TEST_f_f (significand, 8.0, 1.0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
     TEST_f_f (significand, -8.0, -1.0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+#endif
   };
 
 static void
 significand_test (void)
 {
+#if !TEST_FLOATN
   ALL_RM_TEST (significand, 1, significand_test_data, RUN_TEST_LOOP_f_f, END);
+#endif
 }
 
 static void
index 07b8f25ee984395d386cd08c9b64659f89528f2c..7612d394d629cf67819121c5fa9fb41796518462 100644 (file)
@@ -732,8 +732,8 @@ check_float (const char *test_name, FLOAT computed, FLOAT expected,
 
 
 void
-check_complex (const char *test_name, __complex__ FLOAT computed,
-              __complex__ FLOAT expected,
+check_complex (const char *test_name, CFLOAT computed,
+              CFLOAT expected,
               int exception)
 {
   FLOAT part_comp, part_exp;
index 0e781442aa3107238f1939162061d09ede3a1b62..a57a8b3de4e2183df034ef690eae74ad1248538b 100644 (file)
@@ -138,12 +138,20 @@ extern const char doc[];
 #define TEST_COND_before_rounding      (!TININESS_AFTER_ROUNDING)
 #define TEST_COND_after_rounding       TININESS_AFTER_ROUNDING
 
+#ifndef TEST_FLOATN
+# define TEST_FLOATN 0
+#endif
+
+#ifndef CFLOAT
+# define CFLOAT __complex__ FLOAT
+#endif
+
 int enable_test (int);
 void init_max_error (const char *, int);
 void print_max_error (const char *);
 void print_complex_max_error (const char *);
 void check_float (const char *, FLOAT, FLOAT, int);
-void check_complex (const char *, __complex__ FLOAT, __complex__ FLOAT, int);
+void check_complex (const char *, CFLOAT, CFLOAT, int);
 void check_int (const char *, int, int, int);
 void check_long (const char *, long int, long int, int);
 void check_bool (const char *, int, int, int);
diff --git a/math/test-float128.h b/math/test-float128.h
new file mode 100644 (file)
index 0000000..177c10c
--- /dev/null
@@ -0,0 +1,63 @@
+/* Common definitions for libm tests for _Float128.
+
+   Copyright (C) 2017 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#define FUNC(function) function ## f128
+#define PRINTF_EXPR "e"
+#define PRINTF_XEXPR "a"
+#define PRINTF_NEXPR "f"
+#define BUILD_COMPLEX(real, imag) (CMPLXF128 ((real), (imag)))
+#define PREFIX FLT128
+#define TYPE_STR "float128"
+#define LITM(x) x ## f128
+#define FTOSTR strfromf128
+#define snan_value_MACRO SNANF128
+
+/* Fixup builtins and constants for older compilers.  */
+#include <features.h>
+#if !__GNUC_PREREQ (7, 0)
+# define LIT(x) (x ## Q)
+# define FLOAT __float128
+# define CFLOAT __CFLOAT128
+/* The following macros are only provided since GCC 7.0.  */
+# define FLT128_MANT_DIG       113
+# define FLT128_DECIMAL_DIG    36
+# define FLT128_DIG            33
+# define FLT128_MIN_EXP                (-16381)
+# define FLT128_MIN_10_EXP     (-4931)
+# define FLT128_MAX_EXP                16384
+# define FLT128_MAX_10_EXP     4932
+# define FLT128_MAX            1.18973149535723176508575932662800702e+4932Q
+# define FLT128_EPSILON                1.92592994438723585305597794258492732e-34Q
+# define FLT128_MIN            3.36210314311209350626267781732175260e-4932Q
+# define FLT128_TRUE_MIN       6.47517511943802511092443895822764655e-4966Q
+#else
+# define LIT(x) (x ## f128)
+# define FLOAT _Float128
+#endif
+
+#include "test-math-floatn.h"
+
+/* Similarly, finitef128 is not API */
+extern int __finitef128 (FLOAT);
+
+static inline int
+finitef128(FLOAT f)
+{
+  return __finitef128 (f);
+}
diff --git a/math/test-math-floatn.h b/math/test-math-floatn.h
new file mode 100644 (file)
index 0000000..a5e2eee
--- /dev/null
@@ -0,0 +1,21 @@
+/* Common definitions for libm tests for TS 18661-3 derived types.
+   Copyright (C) 2017 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#define TEST_FLOATN 1
+#define __STDC_WANT_IEC_60559_BFP_EXT__
+#define __STDC_WANT_IEC_60559_TYPES_EXT__