summaryrefslogtreecommitdiff
path: root/tests/tset_sj.c
blob: 68ebe85b6e643a44ece60509ae52460c61507507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
/* Test file for
   mpfr_set_sj, mpfr_set_uj, mpfr_set_sj_2exp and mpfr_set_uj_2exp.

Copyright 2004, 2006-2021 Free Software Foundation, Inc.
Contributed by the AriC and Caramba projects, INRIA.

This file is part of the GNU MPFR Library.

The GNU MPFR 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 3 of the License, or (at your
option) any later version.

The GNU MPFR 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 MPFR Library; see the file COPYING.LESSER.  If not, see
https://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */

#define MPFR_NEED_INTMAX_H
#include "mpfr-test.h"

#ifndef _MPFR_H_HAVE_INTMAX_T

int
main (void)
{
  return 77;
}

#else

#define PRINT_ERROR(str) \
  do { printf ("Error for %s\n", str); exit (1); } while (0)

static int
inexact_sign (int x)
{
  return (x < 0) ? -1 : (x > 0);
}

static void
check_set_uj (mpfr_prec_t pmin, mpfr_prec_t pmax, int N)
{
  mpfr_t x, y;
  mpfr_prec_t p;
  int inex1, inex2, n;
  mp_limb_t limb;

  mpfr_inits2 (pmax, x, y, (mpfr_ptr) 0);

  for (p = pmin ; p < pmax ; p++)
    {
      mpfr_set_prec (x, p);
      mpfr_set_prec (y, p);
      for (n = 0 ; n < N ; n++)
        {
          /* mp_limb_t may be unsigned long long */
          limb = (unsigned long) randlimb ();
          inex1 = mpfr_set_uj (x, limb, MPFR_RNDN);
          inex2 = mpfr_set_ui (y, limb, MPFR_RNDN);
          if (mpfr_cmp (x, y))
            {
              printf ("ERROR for mpfr_set_uj and j=%lu and p=%lu\n",
                      (unsigned long) limb, (unsigned long) p);
              printf ("X="); mpfr_dump (x);
              printf ("Y="); mpfr_dump (y);
              exit (1);
            }
          if (inexact_sign (inex1) != inexact_sign (inex2))
            {
              printf ("ERROR for inexact(set_uj): j=%lu p=%lu\n"
                      "Inexact1= %d Inexact2= %d\n",
                      (unsigned long) limb, (unsigned long) p, inex1, inex2);
              exit (1);
            }
        }
    }
  /* Special case */
  mpfr_set_prec (x, sizeof(uintmax_t)*CHAR_BIT);
  inex1 = mpfr_set_uj (x, UINTMAX_MAX, MPFR_RNDN);
  if (inex1 != 0 || mpfr_sgn(x) <= 0)
    PRINT_ERROR ("inexact / UINTMAX_MAX");
  inex1 = mpfr_add_ui (x, x, 1, MPFR_RNDN);
  if (inex1 != 0 || !mpfr_powerof2_raw (x)
      || MPFR_EXP (x) != sizeof(uintmax_t) * CHAR_BIT + 1)
    PRINT_ERROR ("power of 2");
  mpfr_set_uj (x, 0, MPFR_RNDN);
  if (!MPFR_IS_ZERO (x))
    PRINT_ERROR ("Setting 0");

  mpfr_clears (x, y, (mpfr_ptr) 0);
}

static void
check_set_uj_2exp (void)
{
  mpfr_t x;
  int inex;

  mpfr_init2 (x, sizeof(uintmax_t)*CHAR_BIT);

  inex = mpfr_set_uj_2exp (x, 1, 0, MPFR_RNDN);
  if (inex || mpfr_cmp_ui(x, 1))
    PRINT_ERROR ("(1U,0)");

  inex = mpfr_set_uj_2exp (x, 1024, -10, MPFR_RNDN);
  if (inex || mpfr_cmp_ui(x, 1))
    PRINT_ERROR ("(1024U,-10)");

  inex = mpfr_set_uj_2exp (x, 1024, 10, MPFR_RNDN);
  if (inex || mpfr_cmp_ui(x, 1024L * 1024L))
    PRINT_ERROR ("(1024U,+10)");

  inex = mpfr_set_uj_2exp (x, UINTMAX_MAX, 1000, MPFR_RNDN);
  inex |= mpfr_div_2ui (x, x, 1000, MPFR_RNDN);
  inex |= mpfr_add_ui (x, x, 1, MPFR_RNDN);
  if (inex || !mpfr_powerof2_raw (x)
      || MPFR_EXP (x) != sizeof(uintmax_t) * CHAR_BIT + 1)
    PRINT_ERROR ("(UINTMAX_MAX)");

  inex = mpfr_set_uj_2exp (x, UINTMAX_MAX, MPFR_EMAX_MAX-10, MPFR_RNDN);
  if (inex == 0 || !mpfr_inf_p (x))
    PRINT_ERROR ("Overflow");

  inex = mpfr_set_uj_2exp (x, UINTMAX_MAX, MPFR_EMIN_MIN-1000, MPFR_RNDN);
  if (inex == 0 || !MPFR_IS_ZERO (x))
    PRINT_ERROR ("Underflow");

  mpfr_clear (x);
}

static void
check_set_sj (void)
{
  mpfr_t x;
  int inex;

  mpfr_init2 (x, sizeof(intmax_t)*CHAR_BIT-1);

  inex = mpfr_set_sj (x, -INTMAX_MAX, MPFR_RNDN);
  inex |= mpfr_add_si (x, x, -1, MPFR_RNDN);
  if (inex || mpfr_sgn (x) >=0 || !mpfr_powerof2_raw (x)
      || MPFR_EXP (x) != sizeof(intmax_t) * CHAR_BIT)
    PRINT_ERROR ("set_sj (-INTMAX_MAX)");

  inex = mpfr_set_sj (x, 1742, MPFR_RNDN);
  if (inex || mpfr_cmp_ui (x, 1742))
    PRINT_ERROR ("set_sj (1742)");

  mpfr_clear (x);
}

static void
check_set_sj_2exp (void)
{
  mpfr_t x;
  int inex;

  mpfr_init2 (x, sizeof(intmax_t)*CHAR_BIT-1);

  inex = mpfr_set_sj_2exp (x, INTMAX_MIN, 1000, MPFR_RNDN);
  if (inex || mpfr_sgn (x) >=0 || !mpfr_powerof2_raw (x)
      || MPFR_EXP (x) != sizeof(intmax_t) * CHAR_BIT + 1000)
    PRINT_ERROR ("set_sj_2exp (INTMAX_MIN)");

  mpfr_clear (x);
}

#define REXP 1024

static void
test_2exp_extreme_aux (void)
{
  mpfr_t x1, x2, y;
  mpfr_exp_t e, ep[1 + 8 * 5], eb[] =
    { MPFR_EMIN_MIN, -REXP, REXP, MPFR_EMAX_MAX, MPFR_EXP_MAX };
  mpfr_flags_t flags1, flags2;
  int i, j, rnd, inex1, inex2;
  char s;

  ep[0] = MPFR_EXP_MIN;
  for (i = 0; i < numberof(eb); i++)
    for (j = 0; j < 8; j++)
      ep[1 + 8 * i + j] = eb[i] - j;

  mpfr_inits2 (3, x1, x2, (mpfr_ptr) 0);
  mpfr_init2 (y, 32);

  /* The cast to int is needed if numberof(ep) is of unsigned type, in
     which case the condition without the cast would be always false. */
  for (i = -2; i < (int) numberof(ep); i++)
    for (j = -31; j <= 31; j++)
      RND_LOOP_NO_RNDF (rnd)
        {
          int sign = j < 0 ? -1 : 1;
          intmax_t em;

          if (i < 0)
            {
              em = i == -2 ? INTMAX_MIN : INTMAX_MAX;
              mpfr_clear_flags ();
              inex1 = j == 0 ?
                (mpfr_set_zero (x1, +1), 0) : i == -2 ?
                mpfr_underflow (x1, rnd == MPFR_RNDN ?
                                MPFR_RNDZ : (mpfr_rnd_t) rnd, sign) :
                mpfr_overflow (x1, (mpfr_rnd_t) rnd, sign);
              flags1 = __gmpfr_flags;
            }
          else
            {
              em = ep[i];
              /* Compute the expected value, inex and flags */
              inex1 = mpfr_set_si (y, j, MPFR_RNDN);
              MPFR_ASSERTN (inex1 == 0);
              inex1 = mpfr_set (x1, y, (mpfr_rnd_t) rnd);
              /* x1 is the rounded value and inex1 the ternary value,
                 assuming that the exponent argument is 0 (this is the
                 rounded significand of the final result, assuming an
                 unbounded exponent range). The multiplication by a
                 power of 2 is exact, unless underflow/overflow occurs.
                 The tests on the exponent below avoid integer overflows
                 (ep[i] may take extreme values). */
              mpfr_clear_flags ();
              if (j == 0)
                goto zero;
              e = MPFR_GET_EXP (x1);
              if (ep[i] < __gmpfr_emin - e)  /* underflow */
                {
                  mpfr_rnd_t r =
                    (rnd == MPFR_RNDN &&
                     (ep[i] < __gmpfr_emin - MPFR_GET_EXP (y) - 1 ||
                      IS_POW2 (sign * j))) ?
                    MPFR_RNDZ : (mpfr_rnd_t) rnd;
                  inex1 = mpfr_underflow (x1, r, sign);
                  flags1 = __gmpfr_flags;
                }
              else if (ep[i] > __gmpfr_emax - e)  /* overflow */
                {
                  inex1 = mpfr_overflow (x1, (mpfr_rnd_t) rnd, sign);
                  flags1 = __gmpfr_flags;
                }
              else
                {
                  mpfr_set_exp (x1, ep[i] + e);
                zero:
                  flags1 = inex1 != 0 ? MPFR_FLAGS_INEXACT : 0;
                }
            }

          /* Test mpfr_set_sj_2exp */
          mpfr_clear_flags ();
          inex2 = mpfr_set_sj_2exp (x2, j, em, (mpfr_rnd_t) rnd);
          flags2 = __gmpfr_flags;

          if (! (flags1 == flags2 && SAME_SIGN (inex1, inex2) &&
                 mpfr_equal_p (x1, x2)))
            {
              s = 's';
              goto err_extreme;
            }

          if (j < 0)
            continue;

          /* Test mpfr_set_uj_2exp */
          mpfr_clear_flags ();
          inex2 = mpfr_set_uj_2exp (x2, j, em, (mpfr_rnd_t) rnd);
          flags2 = __gmpfr_flags;

          if (! (flags1 == flags2 && SAME_SIGN (inex1, inex2) &&
                 mpfr_equal_p (x1, x2)))
            {
              s = 'u';
            err_extreme:
              printf ("Error in extreme mpfr_set_%cj_2exp for i=%d j=%d %s\n",
                      s, i, j, mpfr_print_rnd_mode ((mpfr_rnd_t) rnd));
              printf ("emin=%" MPFR_EXP_FSPEC "d "
                      "emax=%" MPFR_EXP_FSPEC "d\n",
                      (mpfr_eexp_t) __gmpfr_emin,
                      (mpfr_eexp_t) __gmpfr_emax);
#ifndef NPRINTF_J
              printf ("e = %jd\n", em);
#endif
              printf ("Expected ");
              mpfr_dump (x1);
              printf ("with inex = %d and flags =", inex1);
              flags_out (flags1);
              printf ("Got      ");
              mpfr_dump (x2);
              printf ("with inex = %d and flags =", inex2);
              flags_out (flags2);
              exit (1);
            }
        }

  mpfr_clears (x1, x2, y, (mpfr_ptr) 0);
}

static void
test_2exp_extreme (void)
{
  mpfr_exp_t emin, emax;

  emin = mpfr_get_emin ();
  emax = mpfr_get_emax ();

  set_emin (MPFR_EMIN_MIN);
  set_emax (MPFR_EMAX_MAX);
  test_2exp_extreme_aux ();

  set_emin (-REXP);
  set_emax (REXP);
  test_2exp_extreme_aux ();

  set_emin (emin);
  set_emax (emax);
}

int
main (int argc, char *argv[])
{
  tests_start_mpfr ();

  check_set_uj (2, 128, 50);
  check_set_uj_2exp ();
  check_set_sj ();
  check_set_sj_2exp ();
  test_2exp_extreme ();

  tests_end_mpfr ();
  return 0;
}

#endif