]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdlib/gen-tst-strtod-round.c
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / stdlib / gen-tst-strtod-round.c
CommitLineData
af92131a
JM
1/* Generate table of tests in tst-strtod-round.c from
2 tst-strtod-round-data.
04277e02 3 Copyright (C) 2012-2019 Free Software Foundation, Inc.
af92131a
JM
4 This file is part of the GNU C Library.
5
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
5a82c748 18 <https://www.gnu.org/licenses/>. */
af92131a 19
118fbf0e
PM
20/* Compile this program as:
21
1ced34c0 22 gcc -std=gnu11 -O2 -Wall -Wextra gen-tst-strtod-round.c -lmpfr \
118fbf0e
PM
23 -o gen-tst-strtod-round
24
25 (use of current MPFR version recommended) and run it as:
26
27 gen-tst-strtod-round tst-strtod-round-data tst-strtod-round-data.h
28
29 The output file will be generated as tst-strtod-round-data.h
30*/
31
32
af92131a 33#define _GNU_SOURCE
ed8c2ecd 34#include <assert.h>
af92131a
JM
35#include <stdbool.h>
36#include <stdio.h>
37#include <stdlib.h>
118fbf0e 38#include <string.h>
af92131a
JM
39#include <mpfr.h>
40
41/* Work around incorrect ternary value from mpfr_strtofr
42 <https://sympa.inria.fr/sympa/arc/mpfr/2012-08/msg00005.html>. */
43#define WORKAROUND
44
45static int
46string_to_fp (mpfr_t f, const char *s, mpfr_rnd_t rnd)
47{
fcd6b5ac 48 mpfr_clear_overflow ();
af92131a
JM
49#ifdef WORKAROUND
50 mpfr_t f2;
51 mpfr_init2 (f2, 100000);
52 int r0 = mpfr_strtofr (f2, s, NULL, 0, rnd);
53 int r = mpfr_set (f, f2, rnd);
4725d33e 54 r |= mpfr_subnormalize (f, r, rnd);
af92131a
JM
55 mpfr_clear (f2);
56 return r0 | r;
57#else
58 int r = mpfr_strtofr (f, s, NULL, 0, rnd);
4725d33e 59 r |= mpfr_subnormalize (f, r, rnd);
af92131a
JM
60 return r;
61#endif
62}
63
1ced34c0
PM
64void
65print_fp (FILE *fout, mpfr_t f, const char *suffix)
af92131a
JM
66{
67 if (mpfr_inf_p (f))
1ced34c0 68 mpfr_fprintf (fout, "\t%sINF%s", mpfr_signbit (f) ? "-" : "", suffix);
af92131a 69 else
1ced34c0 70 mpfr_fprintf (fout, "\t%Ra%s", f, suffix);
af92131a
JM
71}
72
73static void
1ced34c0
PM
74round_str (FILE *fout, const char *s, int prec, int emin, int emax,
75 bool ibm_ld)
af92131a 76{
fcd6b5ac 77 mpfr_t max_value;
af92131a
JM
78 mpfr_t f;
79 mpfr_set_default_prec (prec);
80 mpfr_set_emin (emin);
81 mpfr_set_emax (emax);
82 mpfr_init (f);
83 int r = string_to_fp (f, s, MPFR_RNDD);
fcd6b5ac 84 bool overflow = mpfr_overflow_p () != 0;
1f24b9ad 85 if (ibm_ld)
ed8c2ecd
JM
86 {
87 assert (prec == 106 && emin == -1073 && emax == 1024);
88 /* The maximum value in IBM long double has discontiguous
89 mantissa bits. */
ed8c2ecd
JM
90 mpfr_init2 (max_value, 107);
91 mpfr_set_str (max_value, "0x1.fffffffffffff7ffffffffffffcp+1023", 0,
92 MPFR_RNDN);
93 if (mpfr_cmpabs (f, max_value) > 0)
fcd6b5ac
JM
94 {
95 r = 1;
96 overflow = true;
97 }
ed8c2ecd 98 }
118fbf0e 99 mpfr_fprintf (fout, "\t%s,\n", r ? "false" : "true");
fcd6b5ac 100 print_fp (fout, f, overflow ? ", true,\n" : ", false,\n");
af92131a 101 string_to_fp (f, s, MPFR_RNDN);
fcd6b5ac
JM
102 overflow = (mpfr_overflow_p () != 0
103 || (ibm_ld && mpfr_cmpabs (f, max_value) > 0));
104 print_fp (fout, f, overflow ? ", true,\n" : ", false,\n");
af92131a 105 string_to_fp (f, s, MPFR_RNDZ);
fcd6b5ac
JM
106 overflow = (mpfr_overflow_p () != 0
107 || (ibm_ld && mpfr_cmpabs (f, max_value) > 0));
108 print_fp (fout, f, overflow ? ", true,\n" : ", false,\n");
af92131a 109 string_to_fp (f, s, MPFR_RNDU);
fcd6b5ac
JM
110 overflow = (mpfr_overflow_p () != 0
111 || (ibm_ld && mpfr_cmpabs (f, max_value) > 0));
112 print_fp (fout, f, overflow ? ", true" : ", false");
af92131a 113 mpfr_clear (f);
fcd6b5ac
JM
114 if (ibm_ld)
115 mpfr_clear (max_value);
af92131a
JM
116}
117
118static void
118fbf0e 119round_for_all (FILE *fout, const char *s)
af92131a
JM
120{
121 static const struct fmt {
af92131a
JM
122 int prec;
123 int emin;
124 int emax;
1f24b9ad 125 bool ibm_ld;
1ced34c0
PM
126 } formats[] = {
127 { 24, -148, 128, false },
128 { 53, -1073, 1024, false },
e1343020 129 /* This is the Intel extended float format. */
1ced34c0 130 { 64, -16444, 16384, false },
e1343020 131 /* This is the Motorola extended float format. */
1ced34c0
PM
132 { 64, -16445, 16384, false },
133 { 106, -1073, 1024, true },
134 { 113, -16493, 16384, false },
af92131a 135 };
118fbf0e 136 mpfr_fprintf (fout, " TEST (\"");
af92131a
JM
137 const char *p;
138 for (p = s; *p; p++)
139 {
118fbf0e 140 fputc (*p, fout);
af92131a 141 if ((p - s) % 60 == 59 && p[1])
118fbf0e 142 mpfr_fprintf (fout, "\"\n\t\"");
af92131a 143 }
118fbf0e 144 mpfr_fprintf (fout, "\",\n");
af92131a 145 int i;
1ced34c0
PM
146 int n_formats = sizeof (formats) / sizeof (formats[0]);
147 for (i = 0; i < n_formats; i++)
af92131a 148 {
1ced34c0
PM
149 round_str (fout, s, formats[i].prec, formats[i].emin,
150 formats[i].emax, formats[i].ibm_ld);
151 if (i < n_formats - 1)
118fbf0e 152 mpfr_fprintf (fout, ",\n");
af92131a 153 }
118fbf0e 154 mpfr_fprintf (fout, "),\n");
af92131a
JM
155}
156
157int
118fbf0e 158main (int argc, char **argv)
af92131a
JM
159{
160 char *p = NULL;
161 size_t len;
162 ssize_t nbytes;
118fbf0e
PM
163 FILE *fin, *fout;
164 char *fin_name, *fout_name;
165
166 if (argc < 3)
167 {
168 fprintf (stderr, "Usage: %s <input> <output>\n", basename (argv[0]));
169 return EXIT_FAILURE;
170 }
171
172 fin_name = argv[1];
173 fout_name = argv[2];
174
175 fin = fopen (fin_name, "r");
176 if (fin == NULL)
177 {
178 perror ("Could not open input for reading");
179 return EXIT_FAILURE;
180 }
181
182 fout = fopen (fout_name, "w");
183 if (fout == NULL)
184 {
185 perror ("Could not open output for writing");
186 return EXIT_FAILURE;
187 }
188
189 fprintf (fout, "/* This file was generated by %s from %s. */\n",
190 __FILE__, fin_name);
191 fputs ("static const struct test tests[] = {\n", fout);
192 while ((nbytes = getline (&p, &len, fin)) != -1)
af92131a
JM
193 {
194 if (p[nbytes - 1] == '\n')
195 p[nbytes - 1] = 0;
118fbf0e 196 round_for_all (fout, p);
af92131a
JM
197 free (p);
198 p = NULL;
199 }
118fbf0e
PM
200 fputs ("};\n", fout);
201
202 return EXIT_SUCCESS;
af92131a 203}