2bf653
diff -Naurd mpfr-4.1.0-a/PATCHES mpfr-4.1.0-b/PATCHES
2bf653
--- mpfr-4.1.0-a/PATCHES	2021-02-11 12:40:40.079363480 +0000
2bf653
+++ mpfr-4.1.0-b/PATCHES	2021-02-11 12:40:40.119363040 +0000
2bf653
@@ -0,0 +1 @@
2bf653
+decimal128-conv
2bf653
diff -Naurd mpfr-4.1.0-a/VERSION mpfr-4.1.0-b/VERSION
2bf653
--- mpfr-4.1.0-a/VERSION	2020-07-10 11:52:33.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/VERSION	2021-02-11 12:40:40.119363040 +0000
2bf653
@@ -1 +1 @@
2bf653
-4.1.0
2bf653
+4.1.0-p1
2bf653
diff -Naurd mpfr-4.1.0-a/src/get_d128.c mpfr-4.1.0-b/src/get_d128.c
2bf653
--- mpfr-4.1.0-a/src/get_d128.c	2020-04-08 22:39:35.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/get_d128.c	2021-02-11 12:40:40.103363216 +0000
2bf653
@@ -40,22 +40,21 @@
2bf653
 static _Decimal128
2bf653
 get_decimal128_nan (void)
2bf653
 {
2bf653
-  return (_Decimal128) MPFR_DBL_NAN;
2bf653
+  return 0.0dl / 0.0dl;
2bf653
 }
2bf653
 
2bf653
 /* construct the decimal128 Inf with given sign */
2bf653
 static _Decimal128
2bf653
 get_decimal128_inf (int negative)
2bf653
 {
2bf653
-  return (_Decimal128) (negative ? MPFR_DBL_INFM : MPFR_DBL_INFP);
2bf653
+  return negative ? - 1.0dl / 0.0dl : 1.0dl / 0.0dl;
2bf653
 }
2bf653
 
2bf653
 /* construct the decimal128 zero with given sign */
2bf653
 static _Decimal128
2bf653
 get_decimal128_zero (int negative)
2bf653
 {
2bf653
-  _Decimal128 zero = 0;
2bf653
-  return (_Decimal128) (negative ? -zero : zero);
2bf653
+  return negative ? - 0.0dl : 0.0dl;
2bf653
 }
2bf653
 
2bf653
 /* construct the decimal128 smallest non-zero with given sign:
2bf653
diff -Naurd mpfr-4.1.0-a/src/mpfr.h mpfr-4.1.0-b/src/mpfr.h
2bf653
--- mpfr-4.1.0-a/src/mpfr.h	2020-07-10 11:52:33.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/mpfr.h	2021-02-11 12:40:40.115363084 +0000
2bf653
@@ -27,7 +27,7 @@
2bf653
 #define MPFR_VERSION_MAJOR 4
2bf653
 #define MPFR_VERSION_MINOR 1
2bf653
 #define MPFR_VERSION_PATCHLEVEL 0
2bf653
-#define MPFR_VERSION_STRING "4.1.0"
2bf653
+#define MPFR_VERSION_STRING "4.1.0-p1"
2bf653
 
2bf653
 /* User macros:
2bf653
    MPFR_USE_FILE:        Define it to make MPFR define functions dealing
2bf653
diff -Naurd mpfr-4.1.0-a/src/version.c mpfr-4.1.0-b/src/version.c
2bf653
--- mpfr-4.1.0-a/src/version.c	2020-07-10 11:52:33.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/version.c	2021-02-11 12:40:40.119363040 +0000
2bf653
@@ -25,5 +25,5 @@
2bf653
 const char *
2bf653
 mpfr_get_version (void)
2bf653
 {
2bf653
-  return "4.1.0";
2bf653
+  return "4.1.0-p1";
2bf653
 }
2bf653
diff -Naurd mpfr-4.1.0-a/PATCHES mpfr-4.1.0-b/PATCHES
2bf653
--- mpfr-4.1.0-a/PATCHES	2021-02-11 12:43:51.761257868 +0000
2bf653
+++ mpfr-4.1.0-b/PATCHES	2021-02-11 12:43:51.801257430 +0000
2bf653
@@ -0,0 +1 @@
2bf653
+random_deviate
2bf653
diff -Naurd mpfr-4.1.0-a/VERSION mpfr-4.1.0-b/VERSION
2bf653
--- mpfr-4.1.0-a/VERSION	2021-02-11 12:40:40.119363040 +0000
2bf653
+++ mpfr-4.1.0-b/VERSION	2021-02-11 12:43:51.801257430 +0000
2bf653
@@ -1 +1 @@
2bf653
-4.1.0-p1
2bf653
+4.1.0-p2
2bf653
diff -Naurd mpfr-4.1.0-a/src/mpfr.h mpfr-4.1.0-b/src/mpfr.h
2bf653
--- mpfr-4.1.0-a/src/mpfr.h	2021-02-11 12:40:40.115363084 +0000
2bf653
+++ mpfr-4.1.0-b/src/mpfr.h	2021-02-11 12:43:51.801257430 +0000
2bf653
@@ -27,7 +27,7 @@
2bf653
 #define MPFR_VERSION_MAJOR 4
2bf653
 #define MPFR_VERSION_MINOR 1
2bf653
 #define MPFR_VERSION_PATCHLEVEL 0
2bf653
-#define MPFR_VERSION_STRING "4.1.0-p1"
2bf653
+#define MPFR_VERSION_STRING "4.1.0-p2"
2bf653
 
2bf653
 /* User macros:
2bf653
    MPFR_USE_FILE:        Define it to make MPFR define functions dealing
2bf653
diff -Naurd mpfr-4.1.0-a/src/random_deviate.c mpfr-4.1.0-b/src/random_deviate.c
2bf653
--- mpfr-4.1.0-a/src/random_deviate.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/random_deviate.c	2021-02-11 12:43:51.789257562 +0000
2bf653
@@ -289,6 +289,7 @@
2bf653
   mpfr_random_size_t p = mpfr_get_prec (z); /* Number of bits in result */
2bf653
   mpz_t t;
2bf653
   int inex;
2bf653
+  mpfr_exp_t negxe;
2bf653
 
2bf653
   if (n == 0)
2bf653
     {
2bf653
@@ -370,14 +371,22 @@
2bf653
   mpz_setbit (t, 0);     /* Set the trailing bit so result is always inexact */
2bf653
   if (neg)
2bf653
     mpz_neg (t, t);
2bf653
-  /* Is -x->e representable as a mpfr_exp_t? */
2bf653
-  MPFR_ASSERTN (x->e <= (mpfr_uexp_t)(-1) >> 1);
2bf653
+  /* Portable version of the negation of x->e, with a check of overflow. */
2bf653
+  if (MPFR_UNLIKELY (x->e > MPFR_EXP_MAX))
2bf653
+    {
2bf653
+      /* Overflow, except when x->e = MPFR_EXP_MAX + 1 = - MPFR_EXP_MIN. */
2bf653
+      MPFR_ASSERTN (MPFR_EXP_MIN + MPFR_EXP_MAX == -1 &&
2bf653
+                    x->e == (mpfr_random_size_t) MPFR_EXP_MAX + 1);
2bf653
+      negxe = MPFR_EXP_MIN;
2bf653
+    }
2bf653
+  else
2bf653
+    negxe = - (mpfr_exp_t) x->e;
2bf653
   /*
2bf653
    * Let mpfr_set_z_2exp do all the work of rounding to the requested
2bf653
    * precision, setting overflow/underflow flags, and returning the right
2bf653
    * inexact value.
2bf653
    */
2bf653
-  inex = mpfr_set_z_2exp (z, t, -x->e, rnd);
2bf653
+  inex = mpfr_set_z_2exp (z, t, negxe, rnd);
2bf653
   mpz_clear (t);
2bf653
   return inex;
2bf653
 }
2bf653
diff -Naurd mpfr-4.1.0-a/src/version.c mpfr-4.1.0-b/src/version.c
2bf653
--- mpfr-4.1.0-a/src/version.c	2021-02-11 12:40:40.119363040 +0000
2bf653
+++ mpfr-4.1.0-b/src/version.c	2021-02-11 12:43:51.801257430 +0000
2bf653
@@ -25,5 +25,5 @@
2bf653
 const char *
2bf653
 mpfr_get_version (void)
2bf653
 {
2bf653
-  return "4.1.0-p1";
2bf653
+  return "4.1.0-p2";
2bf653
 }
2bf653
diff -Naurd mpfr-4.1.0-a/PATCHES mpfr-4.1.0-b/PATCHES
2bf653
--- mpfr-4.1.0-a/PATCHES	2021-02-11 12:46:49.075316772 +0000
2bf653
+++ mpfr-4.1.0-b/PATCHES	2021-02-11 12:46:49.115316335 +0000
2bf653
@@ -0,0 +1 @@
2bf653
+set_z_2exp-overflow
2bf653
diff -Naurd mpfr-4.1.0-a/VERSION mpfr-4.1.0-b/VERSION
2bf653
--- mpfr-4.1.0-a/VERSION	2021-02-11 12:43:51.801257430 +0000
2bf653
+++ mpfr-4.1.0-b/VERSION	2021-02-11 12:46:49.115316335 +0000
2bf653
@@ -1 +1 @@
2bf653
-4.1.0-p2
2bf653
+4.1.0-p3
2bf653
diff -Naurd mpfr-4.1.0-a/src/mpfr.h mpfr-4.1.0-b/src/mpfr.h
2bf653
--- mpfr-4.1.0-a/src/mpfr.h	2021-02-11 12:43:51.801257430 +0000
2bf653
+++ mpfr-4.1.0-b/src/mpfr.h	2021-02-11 12:46:49.115316335 +0000
2bf653
@@ -27,7 +27,7 @@
2bf653
 #define MPFR_VERSION_MAJOR 4
2bf653
 #define MPFR_VERSION_MINOR 1
2bf653
 #define MPFR_VERSION_PATCHLEVEL 0
2bf653
-#define MPFR_VERSION_STRING "4.1.0-p2"
2bf653
+#define MPFR_VERSION_STRING "4.1.0-p3"
2bf653
 
2bf653
 /* User macros:
2bf653
    MPFR_USE_FILE:        Define it to make MPFR define functions dealing
2bf653
diff -Naurd mpfr-4.1.0-a/src/set_z_exp.c mpfr-4.1.0-b/src/set_z_exp.c
2bf653
--- mpfr-4.1.0-a/src/set_z_exp.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/set_z_exp.c	2021-02-11 12:46:49.103316466 +0000
2bf653
@@ -28,10 +28,11 @@
2bf653
 int
2bf653
 mpfr_set_z_2exp (mpfr_ptr f, mpz_srcptr z, mpfr_exp_t e, mpfr_rnd_t rnd_mode)
2bf653
 {
2bf653
-  mp_size_t fn, zn, dif, en;
2bf653
+  mp_size_t fn, zn, dif;
2bf653
   int k, sign_z, inex;
2bf653
   mp_limb_t *fp, *zp;
2bf653
-  mpfr_exp_t exp;
2bf653
+  mpfr_exp_t exp, nmax;
2bf653
+  mpfr_uexp_t uexp;
2bf653
 
2bf653
   sign_z = mpz_sgn (z);
2bf653
   if (MPFR_UNLIKELY (sign_z == 0)) /* ignore the exponent for 0 */
2bf653
@@ -43,10 +44,15 @@
2bf653
   MPFR_ASSERTD (sign_z == MPFR_SIGN_POS || sign_z == MPFR_SIGN_NEG);
2bf653
 
2bf653
   zn = ABSIZ(z); /* limb size of z */
2bf653
-  /* compute en = floor(e/GMP_NUMB_BITS) */
2bf653
-  en = (e >= 0) ? e / GMP_NUMB_BITS : (e + 1) / GMP_NUMB_BITS - 1;
2bf653
   MPFR_ASSERTD (zn >= 1);
2bf653
-  if (MPFR_UNLIKELY (zn + en > MPFR_EMAX_MAX / GMP_NUMB_BITS + 1))
2bf653
+  nmax = MPFR_EMAX_MAX / GMP_NUMB_BITS + 1;
2bf653
+  /* Detect early overflow with zn + en > nmax,
2bf653
+     where en = floor(e / GMP_NUMB_BITS).
2bf653
+     This is checked without an integer overflow (even assuming some
2bf653
+     future version of GMP, where limitations may be removed). */
2bf653
+  if (MPFR_UNLIKELY (e >= 0 ?
2bf653
+                     zn > nmax - e / GMP_NUMB_BITS :
2bf653
+                     zn + (e + 1) / GMP_NUMB_BITS - 1 > nmax))
2bf653
     return mpfr_overflow (f, rnd_mode, sign_z);
2bf653
   /* because zn + en >= MPFR_EMAX_MAX / GMP_NUMB_BITS + 2
2bf653
      implies (zn + en) * GMP_NUMB_BITS >= MPFR_EMAX_MAX + GMP_NUMB_BITS + 1
2bf653
@@ -64,8 +70,21 @@
2bf653
      and exp = zn * GMP_NUMB_BITS + e - k
2bf653
              <= (zn + en) * GMP_NUMB_BITS - k + GMP_NUMB_BITS - 1
2bf653
              <= MPFR_EMAX_MAX + 2 * GMP_NUMB_BITS - 1 */
2bf653
-  exp = (mpfr_prec_t) zn * GMP_NUMB_BITS + e - k;
2bf653
+  /* We need to compute exp = zn * GMP_NUMB_BITS + e - k with well-defined
2bf653
+     operations (no integer overflows / no implementation-defined results).
2bf653
+     The mathematical result of zn * GMP_NUMB_BITS may be larger than
2bf653
+     the largest value of mpfr_exp_t while exp could still be less than
2bf653
+     __gmpfr_emax. Thanks to early overflow detection, we can compute the
2bf653
+     result in modular arithmetic, using mpfr_uexp_t, and convert it to
2bf653
+     mpfr_exp_t. */
2bf653
+  uexp = (mpfr_uexp_t) zn * GMP_NUMB_BITS + (mpfr_uexp_t) e - k;
2bf653
+
2bf653
+  /* Convert to signed in a portable way (see doc/README.dev).
2bf653
+     On most platforms, this can be optimized to identity (no-op). */
2bf653
+  exp = uexp > MPFR_EXP_MAX ? -1 - (mpfr_exp_t) ~uexp : (mpfr_exp_t) uexp;
2bf653
+
2bf653
   /* The exponent will be exp or exp + 1 (due to rounding) */
2bf653
+
2bf653
   if (MPFR_UNLIKELY (exp > __gmpfr_emax))
2bf653
     return mpfr_overflow (f, rnd_mode, sign_z);
2bf653
   if (MPFR_UNLIKELY (exp + 1 < __gmpfr_emin))
2bf653
diff -Naurd mpfr-4.1.0-a/src/version.c mpfr-4.1.0-b/src/version.c
2bf653
--- mpfr-4.1.0-a/src/version.c	2021-02-11 12:43:51.801257430 +0000
2bf653
+++ mpfr-4.1.0-b/src/version.c	2021-02-11 12:46:49.115316335 +0000
2bf653
@@ -25,5 +25,5 @@
2bf653
 const char *
2bf653
 mpfr_get_version (void)
2bf653
 {
2bf653
-  return "4.1.0-p2";
2bf653
+  return "4.1.0-p3";
2bf653
 }
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tset_z_exp.c mpfr-4.1.0-b/tests/tset_z_exp.c
2bf653
--- mpfr-4.1.0-a/tests/tset_z_exp.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tset_z_exp.c	2021-02-11 12:46:49.103316466 +0000
2bf653
@@ -97,49 +97,149 @@
2bf653
    mpfr_get_si is a rather indirect test of a low level routine.  */
2bf653
 
2bf653
 static void
2bf653
-check (long i, mpfr_rnd_t rnd)
2bf653
+check (long i, mpfr_rnd_t rnd, int reduced)
2bf653
 {
2bf653
-  mpfr_t f;
2bf653
+  mpfr_t f1, f2, f3;
2bf653
   mpz_t z;
2bf653
-  mpfr_exp_t e;
2bf653
+  mpfr_exp_t e, old_emin, old_emax;
2bf653
   int inex;
2bf653
+  mpfr_flags_t flags;
2bf653
+
2bf653
+  old_emin = mpfr_get_emin ();
2bf653
+  old_emax = mpfr_get_emax ();
2bf653
 
2bf653
   /* using CHAR_BIT * sizeof(long) bits of precision ensures that
2bf653
      mpfr_set_z_2exp is exact below */
2bf653
-  mpfr_init2 (f, CHAR_BIT * sizeof(long));
2bf653
+  mpfr_inits2 (CHAR_BIT * sizeof(long), f1, f2, f3, (mpfr_ptr) 0);
2bf653
   mpz_init (z);
2bf653
   mpz_set_ui (z, i);
2bf653
   /* the following loop ensures that no overflow occurs */
2bf653
   do
2bf653
     e = randexp ();
2bf653
   while (e > mpfr_get_emax () - CHAR_BIT * sizeof(long));
2bf653
-  inex = mpfr_set_z_2exp (f, z, e, rnd);
2bf653
-  if (inex != 0)
2bf653
+
2bf653
+  mpfr_clear_flags ();
2bf653
+  inex = mpfr_set_z_2exp (f1, z, e, rnd);
2bf653
+  flags = __gmpfr_flags;
2bf653
+
2bf653
+  if (inex != 0 || flags != 0 ||
2bf653
+      (mpfr_div_2si (f2, f1, e, rnd), mpfr_get_si (f2, MPFR_RNDZ) != i))
2bf653
     {
2bf653
-      printf ("Error in mpfr_set_z_2exp for i=%ld, e=%ld,"
2bf653
-              " wrong ternary value\n", i, (long) e);
2bf653
-      printf ("expected 0, got %d\n", inex);
2bf653
+      printf ("Error in mpfr_set_z_2exp for i=%ld e=%" MPFR_EXP_FSPEC
2bf653
+              "d rnd_mode=%d\n", i, (mpfr_eexp_t) e, rnd);
2bf653
+      mpfr_set_si_2exp (f2, i, e, MPFR_RNDN);
2bf653
+      printf ("expected "); mpfr_dump (f2);
2bf653
+      printf ("with inex = %d and flags =", 0);
2bf653
+      flags_out (0);
2bf653
+      printf ("got      "); mpfr_dump (f1);
2bf653
+      printf ("with inex = %d and flags =", inex);
2bf653
+      flags_out (flags);
2bf653
       exit (1);
2bf653
     }
2bf653
-  mpfr_div_2si (f, f, e, rnd);
2bf653
-  if (mpfr_get_si (f, MPFR_RNDZ) != i)
2bf653
+
2bf653
+  if (reduced)
2bf653
     {
2bf653
-      printf ("Error in mpfr_set_z_2exp for i=%ld e=", i);
2bf653
-      if (e < LONG_MIN)
2bf653
-        printf ("(
2bf653
-      else if (e > LONG_MAX)
2bf653
-        printf ("(>LONG_MAX)");
2bf653
-      else
2bf653
-        printf ("%ld", (long) e);
2bf653
-      printf (" rnd_mode=%d\n", rnd);
2bf653
-      printf ("expected %ld\n", i);
2bf653
-      printf ("got      "); mpfr_dump (f);
2bf653
-      exit (1);
2bf653
+      mpfr_exp_t ef, emin, emax;
2bf653
+      int inex2, inex3;
2bf653
+      mpfr_flags_t flags2, flags3;
2bf653
+
2bf653
+      ef = i == 0 ? 0 : mpfr_get_exp (f1);
2bf653
+      for (emin = ef - 2; emin <= ef + 2; emin++)
2bf653
+        for (emax = emin; emax <= ef + 2; emax++)
2bf653
+          {
2bf653
+            inex3 = mpfr_set (f3, f1, rnd);
2bf653
+            MPFR_ASSERTN (inex3 == 0);
2bf653
+            mpfr_set_emin (emin);
2bf653
+            mpfr_set_emax (emax);
2bf653
+            mpfr_clear_flags ();
2bf653
+            inex2 = mpfr_set_z_2exp (f2, z, e, rnd);
2bf653
+            flags2 = __gmpfr_flags;
2bf653
+            mpfr_clear_flags ();
2bf653
+            inex3 = mpfr_check_range (f3, 0, rnd);
2bf653
+            flags3 = __gmpfr_flags;
2bf653
+            if (!(mpfr_equal_p (f2, f3) &&
2bf653
+                  SAME_SIGN (inex2, inex3) &&
2bf653
+                  flags2 == flags3))
2bf653
+              {
2bf653
+                printf ("Error in mpfr_set_z_2exp for i=%ld e=%"
2bf653
+                        MPFR_EXP_FSPEC "d rnd_mode=%d\nand emin=%"
2bf653
+                        MPFR_EXP_FSPEC "d emax=%" MPFR_EXP_FSPEC
2bf653
+                        "d\n", i, (mpfr_eexp_t) e, rnd,
2bf653
+                        (mpfr_eexp_t) emin, (mpfr_eexp_t) emax);
2bf653
+                printf ("expected "); mpfr_dump (f3);
2bf653
+                printf ("with inex = %d and flags =", inex3);
2bf653
+                flags_out (flags3);
2bf653
+                printf ("got      "); mpfr_dump (f2);
2bf653
+                printf ("with inex = %d and flags =", inex2);
2bf653
+                flags_out (flags2);
2bf653
+                exit (1);
2bf653
+              }
2bf653
+          }
2bf653
+      mpfr_set_emin (old_emin);
2bf653
+      mpfr_set_emax (old_emax);
2bf653
     }
2bf653
-  mpfr_clear (f);
2bf653
+
2bf653
+  mpfr_clears (f1, f2, f3, (mpfr_ptr) 0);
2bf653
   mpz_clear (z);
2bf653
 }
2bf653
 
2bf653
+static void
2bf653
+check_huge (void)
2bf653
+{
2bf653
+  if (getenv ("MPFR_CHECK_LARGEMEM") != NULL)
2bf653
+    {
2bf653
+      mpfr_t x;
2bf653
+      mpz_t z;
2bf653
+      long e;
2bf653
+
2bf653
+      /* Increase tests_memory_limit to the maximum in order to avoid
2bf653
+         an obvious failure due to insufficient memory. */
2bf653
+      tests_memory_limit = (size_t) -1;  /* no memory limit */
2bf653
+
2bf653
+      mpfr_init2 (x, 32);
2bf653
+
2bf653
+      /* In r14140, with a 32-bit ABI (GCC's -m32):
2bf653
+         - With UBsan (-fsanitize=undefined -fno-sanitize-recover),
2bf653
+           this fails with:
2bf653
+             set_z_2exp.c:71:26: runtime error: signed integer overflow:
2bf653
+             67108864 * 32 cannot be represented in type 'long int'
2bf653
+         - With -D_MPFR_EXP_FORMAT=4, this fails with:
2bf653
+             Expected 0.10001000000000000000000000000000E5
2bf653
+             Got      0
2bf653
+      */
2bf653
+      mpz_init_set_ui (z, 17);
2bf653
+      e = 0x7ffffff0;
2bf653
+      mpz_mul_2exp (z, z, e);
2bf653
+      mpz_add_ui (z, z, 1);
2bf653
+      mpfr_set_z_2exp (x, z, -e, MPFR_RNDN);
2bf653
+      if (mpfr_cmp_ui0 (x, 17) != 0)
2bf653
+        {
2bf653
+          printf ("Error 1 in check_huge\n");
2bf653
+          printf ("Expected 0.10001000000000000000000000000000E5\n");
2bf653
+          printf ("Got      ");
2bf653
+          mpfr_dump (x);
2bf653
+          exit (1);
2bf653
+        }
2bf653
+      mpz_clear (z);
2bf653
+
2bf653
+      mpz_init_set_ui (z, 17);
2bf653
+      mpz_mul_2exp (z, z, 0xffffffb0);
2bf653
+      mpz_add_ui (z, z, 1);
2bf653
+      mpfr_set_z_2exp (x, z, -1, MPFR_RNDN);
2bf653
+      if (! MPFR_IS_INF (x) || MPFR_IS_NEG (x))
2bf653
+        {
2bf653
+          printf ("Error 2 in check_huge\n");
2bf653
+          printf ("Expected @Inf@\n");
2bf653
+          printf ("Got      ");
2bf653
+          mpfr_dump (x);
2bf653
+          exit (1);
2bf653
+        }
2bf653
+      mpz_clear (z);
2bf653
+
2bf653
+      mpfr_clear (x);
2bf653
+    }
2bf653
+}
2bf653
+
2bf653
 int
2bf653
 main (int argc, char *argv[])
2bf653
 {
2bf653
@@ -147,11 +247,13 @@
2bf653
 
2bf653
   tests_start_mpfr ();
2bf653
 
2bf653
-  check (0, MPFR_RNDN);
2bf653
+  check (0, MPFR_RNDN, 0);
2bf653
   for (j = 0; j < 200000; j++)
2bf653
-    check (randlimb () & LONG_MAX, RND_RAND ());
2bf653
+    check (randlimb () & LONG_MAX, RND_RAND (), j < 200);
2bf653
   check0 ();
2bf653
 
2bf653
+  check_huge ();
2bf653
+
2bf653
   tests_end_mpfr ();
2bf653
 
2bf653
   return 0;
2bf653
diff -Naurd mpfr-4.1.0-a/PATCHES mpfr-4.1.0-b/PATCHES
2bf653
--- mpfr-4.1.0-a/PATCHES	2021-02-11 12:48:27.322243271 +0000
2bf653
+++ mpfr-4.1.0-b/PATCHES	2021-02-11 12:48:27.370242746 +0000
2bf653
@@ -0,0 +1 @@
2bf653
+prototypes
2bf653
diff -Naurd mpfr-4.1.0-a/VERSION mpfr-4.1.0-b/VERSION
2bf653
--- mpfr-4.1.0-a/VERSION	2021-02-11 12:46:49.115316335 +0000
2bf653
+++ mpfr-4.1.0-b/VERSION	2021-02-11 12:48:27.370242746 +0000
2bf653
@@ -1 +1 @@
2bf653
-4.1.0-p3
2bf653
+4.1.0-p4
2bf653
diff -Naurd mpfr-4.1.0-a/src/atan.c mpfr-4.1.0-b/src/atan.c
2bf653
--- mpfr-4.1.0-a/src/atan.c	2020-04-22 15:27:07.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/atan.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -56,7 +56,7 @@
2bf653
   };
2bf653
 
2bf653
 static void
2bf653
-set_table (mpfr_t y, const mp_limb_t x[3])
2bf653
+set_table (mpfr_ptr y, const mp_limb_t x[3])
2bf653
 {
2bf653
   mpfr_prec_t p = MPFR_PREC(y);
2bf653
   mp_size_t n = MPFR_PREC2LIMBS(p);
2bf653
diff -Naurd mpfr-4.1.0-a/src/const_euler.c mpfr-4.1.0-b/src/const_euler.c
2bf653
--- mpfr-4.1.0-a/src/const_euler.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/const_euler.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -181,7 +181,7 @@
2bf653
 }
2bf653
 
2bf653
 int
2bf653
-mpfr_const_euler_internal (mpfr_t x, mpfr_rnd_t rnd)
2bf653
+mpfr_const_euler_internal (mpfr_ptr x, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   mpfr_const_euler_bs_t sum;
2bf653
   mpz_t t, u, v;
2bf653
diff -Naurd mpfr-4.1.0-a/src/eint.c mpfr-4.1.0-b/src/eint.c
2bf653
--- mpfr-4.1.0-a/src/eint.c	2020-03-09 15:31:45.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/eint.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -36,7 +36,7 @@
2bf653
    Return PREC(y) when the truncated series does not converge.
2bf653
 */
2bf653
 static mpfr_exp_t
2bf653
-mpfr_eint_aux (mpfr_t y, mpfr_srcptr x)
2bf653
+mpfr_eint_aux (mpfr_ptr y, mpfr_srcptr x)
2bf653
 {
2bf653
   mpfr_t eps; /* dynamic (absolute) error bound on t */
2bf653
   mpfr_t erru, errs;
2bf653
diff -Naurd mpfr-4.1.0-a/src/erandom.c mpfr-4.1.0-b/src/erandom.c
2bf653
--- mpfr-4.1.0-a/src/erandom.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/erandom.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -80,7 +80,7 @@
2bf653
 
2bf653
 /* return an exponential random deviate with mean 1 as a MPFR  */
2bf653
 int
2bf653
-mpfr_erandom (mpfr_t z, gmp_randstate_t r, mpfr_rnd_t rnd)
2bf653
+mpfr_erandom (mpfr_ptr z, gmp_randstate_t r, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   mpfr_random_deviate_t x, p, q;
2bf653
   int inex;
2bf653
diff -Naurd mpfr-4.1.0-a/src/fpif.c mpfr-4.1.0-b/src/fpif.c
2bf653
--- mpfr-4.1.0-a/src/fpif.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/fpif.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -291,7 +291,8 @@
2bf653
  *   until one has integer types larger than 128 bits).
2bf653
  */
2bf653
 static unsigned char*
2bf653
-mpfr_fpif_store_exponent (unsigned char *buffer, size_t *buffer_size, mpfr_t x)
2bf653
+mpfr_fpif_store_exponent (unsigned char *buffer, size_t *buffer_size,
2bf653
+                          mpfr_ptr x)
2bf653
 {
2bf653
   unsigned char *result;
2bf653
   mpfr_uexp_t uexp;
2bf653
@@ -372,7 +373,7 @@
2bf653
  *   than 128 bits).
2bf653
  */
2bf653
 static int
2bf653
-mpfr_fpif_read_exponent_from_file (mpfr_t x, FILE * fh)
2bf653
+mpfr_fpif_read_exponent_from_file (mpfr_ptr x, FILE * fh)
2bf653
 {
2bf653
   mpfr_exp_t exponent;
2bf653
   mpfr_uexp_t uexp;
2bf653
@@ -456,7 +457,7 @@
2bf653
  *        format
2bf653
  */
2bf653
 static unsigned char*
2bf653
-mpfr_fpif_store_limbs (unsigned char *buffer, size_t *buffer_size, mpfr_t x)
2bf653
+mpfr_fpif_store_limbs (unsigned char *buffer, size_t *buffer_size, mpfr_ptr x)
2bf653
 {
2bf653
   unsigned char *result;
2bf653
   mpfr_prec_t precision;
2bf653
@@ -492,7 +493,7 @@
2bf653
  * Assume buffer is not NULL.
2bf653
  */
2bf653
 static void
2bf653
-mpfr_fpif_read_limbs (mpfr_t x, unsigned char *buffer, size_t nb_byte)
2bf653
+mpfr_fpif_read_limbs (mpfr_ptr x, unsigned char *buffer, size_t nb_byte)
2bf653
 {
2bf653
   size_t mp_bytes_per_limb;
2bf653
   size_t nb_partial_byte;
2bf653
@@ -522,7 +523,7 @@
2bf653
  * return 0 if successful
2bf653
  */
2bf653
 int
2bf653
-mpfr_fpif_export (FILE *fh, mpfr_t x)
2bf653
+mpfr_fpif_export (FILE *fh, mpfr_ptr x)
2bf653
 {
2bf653
   int status;
2bf653
   unsigned char *buf;
2bf653
@@ -582,7 +583,7 @@
2bf653
  * Return 0 if the import was successful.
2bf653
  */
2bf653
 int
2bf653
-mpfr_fpif_import (mpfr_t x, FILE *fh)
2bf653
+mpfr_fpif_import (mpfr_ptr x, FILE *fh)
2bf653
 {
2bf653
   int status;
2bf653
   mpfr_prec_t precision;
2bf653
diff -Naurd mpfr-4.1.0-a/src/li2.c mpfr-4.1.0-b/src/li2.c
2bf653
--- mpfr-4.1.0-a/src/li2.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/li2.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -31,7 +31,7 @@
2bf653
    for determinating the relative error.
2bf653
 */
2bf653
 static int
2bf653
-li2_series (mpfr_t sum, mpfr_srcptr z, mpfr_rnd_t rnd_mode)
2bf653
+li2_series (mpfr_ptr sum, mpfr_srcptr z, mpfr_rnd_t rnd_mode)
2bf653
 {
2bf653
   int i;
2bf653
   mpfr_t s, u, v, w;
2bf653
diff -Naurd mpfr-4.1.0-a/src/lngamma.c mpfr-4.1.0-b/src/lngamma.c
2bf653
--- mpfr-4.1.0-a/src/lngamma.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/lngamma.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -31,7 +31,7 @@
2bf653
    precision should be >= 4.
2bf653
 */
2bf653
 static void
2bf653
-mpfr_gamma_alpha (mpfr_t s, mpfr_prec_t p)
2bf653
+mpfr_gamma_alpha (mpfr_ptr s, mpfr_prec_t p)
2bf653
 {
2bf653
   MPFR_LOG_FUNC
2bf653
     (("p=%Pu", p),
2bf653
diff -Naurd mpfr-4.1.0-a/src/mpfr-impl.h mpfr-4.1.0-b/src/mpfr-impl.h
2bf653
--- mpfr-4.1.0-a/src/mpfr-impl.h	2020-06-10 21:50:12.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/mpfr-impl.h	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -2474,7 +2474,8 @@
2bf653
 __MPFR_DECLSPEC mpz_srcptr mpfr_bernoulli_cache (unsigned long);
2bf653
 __MPFR_DECLSPEC void mpfr_bernoulli_freecache (void);
2bf653
 
2bf653
-__MPFR_DECLSPEC int mpfr_sincos_fast (mpfr_t, mpfr_t, mpfr_srcptr, mpfr_rnd_t);
2bf653
+__MPFR_DECLSPEC int mpfr_sincos_fast (mpfr_ptr, mpfr_ptr, mpfr_srcptr,
2bf653
+                                      mpfr_rnd_t);
2bf653
 
2bf653
 __MPFR_DECLSPEC double mpfr_scale2 (double, int);
2bf653
 
2bf653
@@ -2485,7 +2486,7 @@
2bf653
                                                    mpfr_prec_t);
2bf653
 
2bf653
 __MPFR_DECLSPEC void mpfr_mpz_init (mpz_ptr);
2bf653
-__MPFR_DECLSPEC void mpfr_mpz_init2 (mpz_t, mp_bitcnt_t);
2bf653
+__MPFR_DECLSPEC void mpfr_mpz_init2 (mpz_ptr, mp_bitcnt_t);
2bf653
 __MPFR_DECLSPEC void mpfr_mpz_clear (mpz_ptr);
2bf653
 
2bf653
 __MPFR_DECLSPEC int mpfr_odd_p (mpfr_srcptr);
2bf653
diff -Naurd mpfr-4.1.0-a/src/mpfr.h mpfr-4.1.0-b/src/mpfr.h
2bf653
--- mpfr-4.1.0-a/src/mpfr.h	2021-02-11 12:46:49.115316335 +0000
2bf653
+++ mpfr-4.1.0-b/src/mpfr.h	2021-02-11 12:48:27.366242791 +0000
2bf653
@@ -27,7 +27,7 @@
2bf653
 #define MPFR_VERSION_MAJOR 4
2bf653
 #define MPFR_VERSION_MINOR 1
2bf653
 #define MPFR_VERSION_PATCHLEVEL 0
2bf653
-#define MPFR_VERSION_STRING "4.1.0-p3"
2bf653
+#define MPFR_VERSION_STRING "4.1.0-p4"
2bf653
 
2bf653
 /* User macros:
2bf653
    MPFR_USE_FILE:        Define it to make MPFR define functions dealing
2bf653
@@ -781,8 +781,8 @@
2bf653
 __MPFR_DECLSPEC int mpfr_strtofr (mpfr_ptr, const char *, char **, int,
2bf653
                                   mpfr_rnd_t);
2bf653
 
2bf653
-__MPFR_DECLSPEC void mpfr_round_nearest_away_begin (mpfr_t);
2bf653
-__MPFR_DECLSPEC int mpfr_round_nearest_away_end (mpfr_t, int);
2bf653
+__MPFR_DECLSPEC void mpfr_round_nearest_away_begin (mpfr_ptr);
2bf653
+__MPFR_DECLSPEC int mpfr_round_nearest_away_end (mpfr_ptr, int);
2bf653
 
2bf653
 __MPFR_DECLSPEC size_t mpfr_custom_get_size (mpfr_prec_t);
2bf653
 __MPFR_DECLSPEC void mpfr_custom_init (void *, mpfr_prec_t);
2bf653
@@ -1080,10 +1080,12 @@
2bf653
 #define mpfr_set_uj_2exp __gmpfr_set_uj_2exp
2bf653
 #define mpfr_get_sj __gmpfr_mpfr_get_sj
2bf653
 #define mpfr_get_uj __gmpfr_mpfr_get_uj
2bf653
-__MPFR_DECLSPEC int mpfr_set_sj (mpfr_t, intmax_t, mpfr_rnd_t);
2bf653
-__MPFR_DECLSPEC int mpfr_set_sj_2exp (mpfr_t, intmax_t, intmax_t, mpfr_rnd_t);
2bf653
-__MPFR_DECLSPEC int mpfr_set_uj (mpfr_t, uintmax_t, mpfr_rnd_t);
2bf653
-__MPFR_DECLSPEC int mpfr_set_uj_2exp (mpfr_t, uintmax_t, intmax_t, mpfr_rnd_t);
2bf653
+__MPFR_DECLSPEC int mpfr_set_sj (mpfr_ptr, intmax_t, mpfr_rnd_t);
2bf653
+__MPFR_DECLSPEC int mpfr_set_sj_2exp (mpfr_ptr, intmax_t, intmax_t,
2bf653
+                                      mpfr_rnd_t);
2bf653
+__MPFR_DECLSPEC int mpfr_set_uj (mpfr_ptr, uintmax_t, mpfr_rnd_t);
2bf653
+__MPFR_DECLSPEC int mpfr_set_uj_2exp (mpfr_ptr, uintmax_t, intmax_t,
2bf653
+                                      mpfr_rnd_t);
2bf653
 __MPFR_DECLSPEC intmax_t mpfr_get_sj (mpfr_srcptr, mpfr_rnd_t);
2bf653
 __MPFR_DECLSPEC uintmax_t mpfr_get_uj (mpfr_srcptr, mpfr_rnd_t);
2bf653
 
2bf653
diff -Naurd mpfr-4.1.0-a/src/nrandom.c mpfr-4.1.0-b/src/nrandom.c
2bf653
--- mpfr-4.1.0-a/src/nrandom.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/nrandom.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -155,7 +155,7 @@
2bf653
 
2bf653
 /* return a normal random deviate with mean 0 and variance 1 as a MPFR  */
2bf653
 int
2bf653
-mpfr_nrandom (mpfr_t z, gmp_randstate_t r, mpfr_rnd_t rnd)
2bf653
+mpfr_nrandom (mpfr_ptr z, gmp_randstate_t r, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   mpfr_random_deviate_t x, p, q;
2bf653
   int inex;
2bf653
diff -Naurd mpfr-4.1.0-a/src/pool.c mpfr-4.1.0-b/src/pool.c
2bf653
--- mpfr-4.1.0-a/src/pool.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/pool.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -35,7 +35,7 @@
2bf653
 static MPFR_THREAD_ATTR __mpz_struct mpz_tab[MPFR_POOL_NENTRIES];
2bf653
 
2bf653
 MPFR_HOT_FUNCTION_ATTR void
2bf653
-mpfr_mpz_init (mpz_t z)
2bf653
+mpfr_mpz_init (mpz_ptr z)
2bf653
 {
2bf653
   if (MPFR_LIKELY (n_alloc > 0))
2bf653
     {
2bf653
@@ -54,7 +54,7 @@
2bf653
 }
2bf653
 
2bf653
 MPFR_HOT_FUNCTION_ATTR void
2bf653
-mpfr_mpz_init2 (mpz_t z, mp_bitcnt_t n)
2bf653
+mpfr_mpz_init2 (mpz_ptr z, mp_bitcnt_t n)
2bf653
 {
2bf653
   /* The condition on n is used below as the argument n will be ignored if
2bf653
      the mpz_t is obtained from the MPFR stack of previously used mpz_t.
2bf653
@@ -82,7 +82,7 @@
2bf653
 
2bf653
 
2bf653
 MPFR_HOT_FUNCTION_ATTR void
2bf653
-mpfr_mpz_clear (mpz_t z)
2bf653
+mpfr_mpz_clear (mpz_ptr z)
2bf653
 {
2bf653
   /* We only put objects with at most MPFR_POOL_MAX_SIZE in the mpz_t pool,
2bf653
      to avoid it takes too much memory (and anyway the speedup is mainly
2bf653
diff -Naurd mpfr-4.1.0-a/src/random_deviate.c mpfr-4.1.0-b/src/random_deviate.c
2bf653
--- mpfr-4.1.0-a/src/random_deviate.c	2021-02-11 12:43:51.789257562 +0000
2bf653
+++ mpfr-4.1.0-b/src/random_deviate.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -64,7 +64,7 @@
2bf653
 
2bf653
 /* allocate and set to (0,1) */
2bf653
 void
2bf653
-mpfr_random_deviate_init (mpfr_random_deviate_t x)
2bf653
+mpfr_random_deviate_init (mpfr_random_deviate_ptr x)
2bf653
 {
2bf653
   mpz_init (x->f);
2bf653
   x->e = 0;
2bf653
@@ -72,21 +72,22 @@
2bf653
 
2bf653
 /* reset to (0,1) */
2bf653
 void
2bf653
-mpfr_random_deviate_reset (mpfr_random_deviate_t x)
2bf653
+mpfr_random_deviate_reset (mpfr_random_deviate_ptr x)
2bf653
 {
2bf653
   x->e = 0;
2bf653
 }
2bf653
 
2bf653
 /* deallocate */
2bf653
 void
2bf653
-mpfr_random_deviate_clear (mpfr_random_deviate_t x)
2bf653
+mpfr_random_deviate_clear (mpfr_random_deviate_ptr x)
2bf653
 {
2bf653
   mpz_clear (x->f);
2bf653
 }
2bf653
 
2bf653
 /* swap two random deviates */
2bf653
 void
2bf653
-mpfr_random_deviate_swap (mpfr_random_deviate_t x, mpfr_random_deviate_t y)
2bf653
+mpfr_random_deviate_swap (mpfr_random_deviate_ptr x,
2bf653
+                          mpfr_random_deviate_ptr y)
2bf653
 {
2bf653
   mpfr_random_size_t s;
2bf653
   unsigned long t;
2bf653
@@ -107,7 +108,7 @@
2bf653
 
2bf653
 /* ensure x has at least k bits */
2bf653
 static void
2bf653
-random_deviate_generate (mpfr_random_deviate_t x, mpfr_random_size_t k,
2bf653
+random_deviate_generate (mpfr_random_deviate_ptr x, mpfr_random_size_t k,
2bf653
                          gmp_randstate_t r, mpz_t t)
2bf653
 {
2bf653
   /* Various compile time checks on mpfr_random_deviate_t */
2bf653
@@ -223,7 +224,7 @@
2bf653
 
2bf653
 /* return position of leading bit, counting from 1 */
2bf653
 static mpfr_random_size_t
2bf653
-random_deviate_leading_bit (mpfr_random_deviate_t x, gmp_randstate_t r)
2bf653
+random_deviate_leading_bit (mpfr_random_deviate_ptr x, gmp_randstate_t r)
2bf653
 {
2bf653
   mpfr_random_size_t l;
2bf653
   random_deviate_generate (x, W, r, 0);
2bf653
@@ -243,7 +244,7 @@
2bf653
 
2bf653
 /* return kth bit of fraction, representing 2^-k */
2bf653
 int
2bf653
-mpfr_random_deviate_tstbit (mpfr_random_deviate_t x, mpfr_random_size_t k,
2bf653
+mpfr_random_deviate_tstbit (mpfr_random_deviate_ptr x, mpfr_random_size_t k,
2bf653
                             gmp_randstate_t r)
2bf653
 {
2bf653
   if (k == 0)
2bf653
@@ -256,7 +257,8 @@
2bf653
 
2bf653
 /* compare two random deviates, x < y */
2bf653
 int
2bf653
-mpfr_random_deviate_less (mpfr_random_deviate_t x, mpfr_random_deviate_t y,
2bf653
+mpfr_random_deviate_less (mpfr_random_deviate_ptr x,
2bf653
+                          mpfr_random_deviate_ptr y,
2bf653
                           gmp_randstate_t r)
2bf653
 {
2bf653
   mpfr_random_size_t k = 1;
2bf653
@@ -280,7 +282,7 @@
2bf653
 /* set mpfr_t z = (neg ? -1 : 1) * (n + x) */
2bf653
 int
2bf653
 mpfr_random_deviate_value (int neg, unsigned long n,
2bf653
-                           mpfr_random_deviate_t x, mpfr_t z,
2bf653
+                           mpfr_random_deviate_ptr x, mpfr_ptr z,
2bf653
                            gmp_randstate_t r, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   /* r is used to add as many bits as necessary to match the precision of z */
2bf653
diff -Naurd mpfr-4.1.0-a/src/random_deviate.h mpfr-4.1.0-b/src/random_deviate.h
2bf653
--- mpfr-4.1.0-a/src/random_deviate.h	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/random_deviate.h	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -76,7 +76,7 @@
2bf653
 /* set mpfr_t z = (neg ? -1 : 1) * (n + x) */
2bf653
 __MPFR_DECLSPEC int
2bf653
   mpfr_random_deviate_value (int, unsigned long,
2bf653
-                             mpfr_random_deviate_ptr, mpfr_t,
2bf653
+                             mpfr_random_deviate_ptr, mpfr_ptr,
2bf653
                              gmp_randstate_t, mpfr_rnd_t);
2bf653
 
2bf653
 #if defined(__cplusplus)
2bf653
diff -Naurd mpfr-4.1.0-a/src/rndna.c mpfr-4.1.0-b/src/rndna.c
2bf653
--- mpfr-4.1.0-a/src/rndna.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/rndna.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -61,7 +61,7 @@
2bf653
    and prepares rop to give it one more bit of precision
2bf653
    and to save its old value within it. */
2bf653
 void
2bf653
-mpfr_round_nearest_away_begin (mpfr_t rop)
2bf653
+mpfr_round_nearest_away_begin (mpfr_ptr rop)
2bf653
 {
2bf653
   mpfr_t tmp;
2bf653
   mp_size_t xsize;
2bf653
@@ -129,7 +129,7 @@
2bf653
    copying it back the result of the applied function
2bf653
    and performing additional roundings. */
2bf653
 int
2bf653
-mpfr_round_nearest_away_end (mpfr_t rop, int inex)
2bf653
+mpfr_round_nearest_away_end (mpfr_ptr rop, int inex)
2bf653
 {
2bf653
   mpfr_t    tmp;
2bf653
   mp_size_t xsize;
2bf653
diff -Naurd mpfr-4.1.0-a/src/set_sj.c mpfr-4.1.0-b/src/set_sj.c
2bf653
--- mpfr-4.1.0-a/src/set_sj.c	2020-06-01 10:39:52.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/set_sj.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -26,13 +26,13 @@
2bf653
 #ifdef _MPFR_H_HAVE_INTMAX_T
2bf653
 
2bf653
 int
2bf653
-mpfr_set_sj (mpfr_t x, intmax_t j, mpfr_rnd_t rnd)
2bf653
+mpfr_set_sj (mpfr_ptr x, intmax_t j, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   return mpfr_set_sj_2exp (x, j, 0, rnd);
2bf653
 }
2bf653
 
2bf653
 int
2bf653
-mpfr_set_sj_2exp (mpfr_t x, intmax_t j, intmax_t e, mpfr_rnd_t rnd)
2bf653
+mpfr_set_sj_2exp (mpfr_ptr x, intmax_t j, intmax_t e, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   if (j >= 0)
2bf653
     return mpfr_set_uj_2exp (x, j, e, rnd);
2bf653
diff -Naurd mpfr-4.1.0-a/src/set_str.c mpfr-4.1.0-b/src/set_str.c
2bf653
--- mpfr-4.1.0-a/src/set_str.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/set_str.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -23,7 +23,7 @@
2bf653
 #include "mpfr-impl.h"
2bf653
 
2bf653
 int
2bf653
-mpfr_set_str (mpfr_t x, const char *str, int base, mpfr_rnd_t rnd)
2bf653
+mpfr_set_str (mpfr_ptr x, const char *str, int base, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   char *p;
2bf653
 
2bf653
diff -Naurd mpfr-4.1.0-a/src/set_uj.c mpfr-4.1.0-b/src/set_uj.c
2bf653
--- mpfr-4.1.0-a/src/set_uj.c	2020-06-01 10:39:52.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/set_uj.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -29,13 +29,13 @@
2bf653
 #define uintmaxpml (sizeof(uintmax_t) / sizeof(mp_limb_t))
2bf653
 
2bf653
 int
2bf653
-mpfr_set_uj (mpfr_t x, uintmax_t j, mpfr_rnd_t rnd)
2bf653
+mpfr_set_uj (mpfr_ptr x, uintmax_t j, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   return mpfr_set_uj_2exp (x, j, 0, rnd);
2bf653
 }
2bf653
 
2bf653
 int
2bf653
-mpfr_set_uj_2exp (mpfr_t x, uintmax_t j, intmax_t e, mpfr_rnd_t rnd)
2bf653
+mpfr_set_uj_2exp (mpfr_ptr x, uintmax_t j, intmax_t e, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   int cnt, inex;
2bf653
   mp_size_t i, k;
2bf653
diff -Naurd mpfr-4.1.0-a/src/sin_cos.c mpfr-4.1.0-b/src/sin_cos.c
2bf653
--- mpfr-4.1.0-a/src/sin_cos.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/sin_cos.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -463,7 +463,7 @@
2bf653
    Return err such that the relative error is bounded by 2^err ulps.
2bf653
 */
2bf653
 static int
2bf653
-sincos_aux (mpfr_t s, mpfr_t c, mpfr_srcptr x, mpfr_rnd_t rnd_mode)
2bf653
+sincos_aux (mpfr_ptr s, mpfr_ptr c, mpfr_srcptr x, mpfr_rnd_t rnd_mode)
2bf653
 {
2bf653
   mpfr_prec_t prec_s, sh;
2bf653
   mpz_t Q, S, C, Q2, S2, C2, y;
2bf653
@@ -577,7 +577,7 @@
2bf653
    Assumes s differs from c.
2bf653
  */
2bf653
 int
2bf653
-mpfr_sincos_fast (mpfr_t s, mpfr_t c, mpfr_srcptr x, mpfr_rnd_t rnd)
2bf653
+mpfr_sincos_fast (mpfr_ptr s, mpfr_ptr c, mpfr_srcptr x, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   int inexs, inexc;
2bf653
   mpfr_t x_red, ts, tc;
2bf653
diff -Naurd mpfr-4.1.0-a/src/strtofr.c mpfr-4.1.0-b/src/strtofr.c
2bf653
--- mpfr-4.1.0-a/src/strtofr.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/strtofr.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -226,7 +226,7 @@
2bf653
    BUT if it returns 0 (NAN or INF), the ternary value is also '0'
2bf653
    (ie NAN and INF are exact) */
2bf653
 static int
2bf653
-parse_string (mpfr_t x, struct parsed_string *pstr,
2bf653
+parse_string (mpfr_ptr x, struct parsed_string *pstr,
2bf653
               const char **string, int base)
2bf653
 {
2bf653
   const char *str = *string;
2bf653
@@ -451,7 +451,7 @@
2bf653
    and the precision of x.
2bf653
    Returns the ternary value. */
2bf653
 static int
2bf653
-parsed_string_to_mpfr (mpfr_t x, struct parsed_string *pstr, mpfr_rnd_t rnd)
2bf653
+parsed_string_to_mpfr (mpfr_ptr x, struct parsed_string *pstr, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   mpfr_prec_t precx, prec, ysize_bits, pstr_size;
2bf653
   mpfr_exp_t exp;
2bf653
@@ -934,7 +934,7 @@
2bf653
 }
2bf653
 
2bf653
 int
2bf653
-mpfr_strtofr (mpfr_t x, const char *string, char **end, int base,
2bf653
+mpfr_strtofr (mpfr_ptr x, const char *string, char **end, int base,
2bf653
               mpfr_rnd_t rnd)
2bf653
 {
2bf653
   int res;
2bf653
diff -Naurd mpfr-4.1.0-a/src/vasprintf.c mpfr-4.1.0-b/src/vasprintf.c
2bf653
--- mpfr-4.1.0-a/src/vasprintf.c	2020-06-01 10:39:52.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/vasprintf.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -963,7 +963,7 @@
2bf653
 #define NDIGITS 8
2bf653
 
2bf653
 MPFR_RETURNS_NONNULL static char *
2bf653
-mpfr_get_str_wrapper (mpfr_exp_t *exp, int base, size_t n, const mpfr_t op,
2bf653
+mpfr_get_str_wrapper (mpfr_exp_t *exp, int base, size_t n, mpfr_srcptr op,
2bf653
                       const struct printf_spec spec)
2bf653
 {
2bf653
   size_t ndigits;
2bf653
diff -Naurd mpfr-4.1.0-a/src/version.c mpfr-4.1.0-b/src/version.c
2bf653
--- mpfr-4.1.0-a/src/version.c	2021-02-11 12:46:49.115316335 +0000
2bf653
+++ mpfr-4.1.0-b/src/version.c	2021-02-11 12:48:27.370242746 +0000
2bf653
@@ -25,5 +25,5 @@
2bf653
 const char *
2bf653
 mpfr_get_version (void)
2bf653
 {
2bf653
-  return "4.1.0-p3";
2bf653
+  return "4.1.0-p4";
2bf653
 }
2bf653
diff -Naurd mpfr-4.1.0-a/src/zeta.c mpfr-4.1.0-b/src/zeta.c
2bf653
--- mpfr-4.1.0-a/src/zeta.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/zeta.c	2021-02-11 12:48:27.354242922 +0000
2bf653
@@ -35,7 +35,7 @@
2bf653
    sum(tc[i]*product((s+2j)*(s+2j-1)/n^2,j=1..i-1), i=1..p)*s*n^(-s-1)
2bf653
 */
2bf653
 static void
2bf653
-mpfr_zeta_part_b (mpfr_t b, mpfr_srcptr s, int n, int p, mpfr_t *tc)
2bf653
+mpfr_zeta_part_b (mpfr_ptr b, mpfr_srcptr s, int n, int p, mpfr_t *tc)
2bf653
 {
2bf653
   mpfr_t s1, d, u;
2bf653
   unsigned long n2;
2bf653
@@ -130,7 +130,7 @@
2bf653
           n - an integer
2bf653
    Output: sum - a floating-point number approximating sum(1/i^s, i=1..n-1) */
2bf653
 static void
2bf653
-mpfr_zeta_part_a (mpfr_t sum, mpfr_srcptr s, int n)
2bf653
+mpfr_zeta_part_a (mpfr_ptr sum, mpfr_srcptr s, int n)
2bf653
 {
2bf653
   mpfr_t u, s1;
2bf653
   int i;
2bf653
@@ -158,7 +158,7 @@
2bf653
    Output: z - Zeta(s) rounded to the precision of z with direction rnd_mode
2bf653
 */
2bf653
 static int
2bf653
-mpfr_zeta_pos (mpfr_t z, mpfr_srcptr s, mpfr_rnd_t rnd_mode)
2bf653
+mpfr_zeta_pos (mpfr_ptr z, mpfr_srcptr s, mpfr_rnd_t rnd_mode)
2bf653
 {
2bf653
   mpfr_t b, c, z_pre, f, s1;
2bf653
   double beta, sd, dnep;
2bf653
@@ -356,8 +356,8 @@
2bf653
    At input, p is Pi rounded down.
2bf653
    The comments in the code are for rnd = RNDD. */
2bf653
 static void
2bf653
-mpfr_reflection_overflow (mpfr_t z, mpfr_t s1, const mpfr_t s, mpfr_t y,
2bf653
-                          mpfr_t p, mpfr_rnd_t rnd)
2bf653
+mpfr_reflection_overflow (mpfr_ptr z, mpfr_ptr s1, mpfr_srcptr s, mpfr_ptr y,
2bf653
+                          mpfr_ptr p, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   mpz_t sint;
2bf653
 
2bf653
@@ -432,7 +432,7 @@
2bf653
 }
2bf653
 
2bf653
 int
2bf653
-mpfr_zeta (mpfr_t z, mpfr_srcptr s, mpfr_rnd_t rnd_mode)
2bf653
+mpfr_zeta (mpfr_ptr z, mpfr_srcptr s, mpfr_rnd_t rnd_mode)
2bf653
 {
2bf653
   mpfr_t z_pre, s1, y, p;
2bf653
   long add;
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tcmp2.c mpfr-4.1.0-b/tests/tcmp2.c
2bf653
--- mpfr-4.1.0-a/tests/tcmp2.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tcmp2.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -24,7 +24,7 @@
2bf653
 
2bf653
 /* set bit n of x to b, where bit 0 is the most significant one */
2bf653
 static void
2bf653
-set_bit (mpfr_t x, unsigned int n, int b)
2bf653
+set_bit (mpfr_ptr x, unsigned int n, int b)
2bf653
 {
2bf653
   unsigned l;
2bf653
   mp_size_t xn;
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tdiv.c mpfr-4.1.0-b/tests/tdiv.c
2bf653
--- mpfr-4.1.0-a/tests/tdiv.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tdiv.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -369,7 +369,7 @@
2bf653
 /* given y = o(x/u), x, u, find the inexact flag by
2bf653
    multiplying y by u */
2bf653
 static int
2bf653
-get_inexact (mpfr_t y, mpfr_t x, mpfr_t u)
2bf653
+get_inexact (mpfr_ptr y, mpfr_ptr x, mpfr_ptr u)
2bf653
 {
2bf653
   mpfr_t xx;
2bf653
   int inex;
2bf653
diff -Naurd mpfr-4.1.0-a/tests/teq.c mpfr-4.1.0-b/tests/teq.c
2bf653
--- mpfr-4.1.0-a/tests/teq.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/teq.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -23,7 +23,7 @@
2bf653
 #include "mpfr-test.h"
2bf653
 
2bf653
 static void
2bf653
-teq (mpfr_t x)
2bf653
+teq (mpfr_ptr x)
2bf653
 {
2bf653
   mpfr_t y;
2bf653
   unsigned long k, px, mx;
2bf653
diff -Naurd mpfr-4.1.0-a/tests/terandom_chisq.c mpfr-4.1.0-b/tests/terandom_chisq.c
2bf653
--- mpfr-4.1.0-a/tests/terandom_chisq.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/terandom_chisq.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -26,7 +26,7 @@
2bf653
  * exponential distribution.  We only take differences of this function so the
2bf653
  * offset doesn't matter; here Phi(0) = 0. */
2bf653
 static void
2bf653
-exponential_cumulative (mpfr_t z, mpfr_t x, mpfr_rnd_t rnd)
2bf653
+exponential_cumulative (mpfr_ptr z, mpfr_ptr x, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   mpfr_neg (z, x, rnd);
2bf653
   mpfr_expm1 (z, z, rnd);
2bf653
@@ -43,7 +43,7 @@
2bf653
  * TAOCP, Vol 2, 3.3.1, Table 1.  It more accurate than the similar formula,
2bf653
  * DLMF 8.11.10. */
2bf653
 static void
2bf653
-chisq_prob (mpfr_t q, long nu, mpfr_t chisqp)
2bf653
+chisq_prob (mpfr_ptr q, long nu, mpfr_ptr chisqp)
2bf653
 {
2bf653
   mpfr_t t;
2bf653
   mpfr_rnd_t rnd;
2bf653
@@ -170,7 +170,7 @@
2bf653
  * this function.  low precision means prec = 2, 3, or 4.  High values of
2bf653
  * precision will result in integer overflow. */
2bf653
 static long
2bf653
-sequential (mpfr_t x)
2bf653
+sequential (mpfr_ptr x)
2bf653
 {
2bf653
   long expt, prec;
2bf653
 
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tfmma.c mpfr-4.1.0-b/tests/tfmma.c
2bf653
--- mpfr-4.1.0-a/tests/tfmma.c	2020-03-24 13:47:38.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tfmma.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -24,7 +24,7 @@
2bf653
 
2bf653
 /* check both mpfr_fmma and mpfr_fmms */
2bf653
 static void
2bf653
-random_test (mpfr_t a, mpfr_t b, mpfr_t c, mpfr_t d, mpfr_rnd_t rnd)
2bf653
+random_test (mpfr_ptr a, mpfr_ptr b, mpfr_ptr c, mpfr_ptr d, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   mpfr_t ref, res, ab, cd;
2bf653
   int inex_ref, inex_res;
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tfmod.c mpfr-4.1.0-b/tests/tfmod.c
2bf653
--- mpfr-4.1.0-a/tests/tfmod.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tfmod.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -62,8 +62,8 @@
2bf653
 }
2bf653
 
2bf653
 static void
2bf653
-test_failed (mpfr_t erem, mpfr_t grem, int eret, int gret, mpfr_t x, mpfr_t y,
2bf653
-             mpfr_rnd_t rnd)
2bf653
+test_failed (mpfr_ptr erem, mpfr_ptr grem, int eret, int gret,
2bf653
+             mpfr_ptr x, mpfr_ptr y, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   printf ("error: mpfr_fmod (r, x, y, rnd)\n  x = ");
2bf653
   mpfr_out_str (stdout, 10, 0, x, MPFR_RNDD);
2bf653
@@ -83,7 +83,7 @@
2bf653
 }
2bf653
 
2bf653
 static void
2bf653
-check (mpfr_t r0, mpfr_t x, mpfr_t y, mpfr_rnd_t rnd)
2bf653
+check (mpfr_ptr r0, mpfr_ptr x, mpfr_ptr y, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   int inex0, inex1;
2bf653
   mpfr_t r1;
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tfprintf.c mpfr-4.1.0-b/tests/tfprintf.c
2bf653
--- mpfr-4.1.0-a/tests/tfprintf.c	2020-06-01 10:39:52.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tfprintf.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -65,7 +65,7 @@
2bf653
 const int prec_max_printf = 5000;
2bf653
 
2bf653
 static void
2bf653
-check (FILE *fout, const char *fmt, mpfr_t x)
2bf653
+check (FILE *fout, const char *fmt, mpfr_ptr x)
2bf653
 {
2bf653
   if (mpfr_fprintf (fout, fmt, x) == -1)
2bf653
     {
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tgamma.c mpfr-4.1.0-b/tests/tgamma.c
2bf653
--- mpfr-4.1.0-a/tests/tgamma.c	2020-06-01 00:15:37.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tgamma.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -890,7 +890,7 @@
2bf653
    computing with a working precision p2. Assume that x is not an
2bf653
    integer <= 2. */
2bf653
 static void
2bf653
-exp_lgamma (mpfr_t x, mpfr_prec_t p1, mpfr_prec_t p2)
2bf653
+exp_lgamma (mpfr_ptr x, mpfr_prec_t p1, mpfr_prec_t p2)
2bf653
 {
2bf653
   mpfr_t yd, yu, zd, zu;
2bf653
   int inexd, inexu, sign;
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tnrandom_chisq.c mpfr-4.1.0-b/tests/tnrandom_chisq.c
2bf653
--- mpfr-4.1.0-a/tests/tnrandom_chisq.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tnrandom_chisq.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -26,7 +26,7 @@
2bf653
  * for the normal distribution.  We only take differences of this function so
2bf653
  * the offset doesn't matter; here Phi(0) = 0. */
2bf653
 static void
2bf653
-normal_cumulative (mpfr_t z, mpfr_t x, mpfr_rnd_t rnd)
2bf653
+normal_cumulative (mpfr_ptr z, mpfr_ptr x, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   mpfr_sqrt_ui (z, 2, rnd);
2bf653
   mpfr_div (z, x, z, rnd);
2bf653
@@ -44,7 +44,7 @@
2bf653
  * TAOCP, Vol 2, 3.3.1, Table 1.  It more accurate than the similar formula,
2bf653
  * DLMF 8.11.10. */
2bf653
 static void
2bf653
-chisq_prob (mpfr_t q, long nu, mpfr_t chisqp)
2bf653
+chisq_prob (mpfr_ptr q, long nu, mpfr_ptr chisqp)
2bf653
 {
2bf653
   mpfr_t t;
2bf653
   mpfr_rnd_t rnd;
2bf653
@@ -166,7 +166,7 @@
2bf653
  * this function.  low precision means prec = 2, 3, or 4.  High values of
2bf653
  * precision will result in integer overflow. */
2bf653
 static long
2bf653
-sequential (mpfr_t x)
2bf653
+sequential (mpfr_ptr x)
2bf653
 {
2bf653
   long expt, prec;
2bf653
 
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tprintf.c mpfr-4.1.0-b/tests/tprintf.c
2bf653
--- mpfr-4.1.0-a/tests/tprintf.c	2020-06-01 10:39:52.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tprintf.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -74,7 +74,7 @@
2bf653
 int stdout_redirect;
2bf653
 
2bf653
 static void
2bf653
-check (const char *fmt, mpfr_t x)
2bf653
+check (const char *fmt, mpfr_ptr x)
2bf653
 {
2bf653
   if (mpfr_printf (fmt, x) == -1)
2bf653
     {
2bf653
diff -Naurd mpfr-4.1.0-a/tests/trint.c mpfr-4.1.0-b/tests/trint.c
2bf653
--- mpfr-4.1.0-a/tests/trint.c	2020-02-12 13:04:50.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/trint.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -367,7 +367,7 @@
2bf653
 #endif
2bf653
 
2bf653
 static void
2bf653
-err (const char *str, mp_size_t s, mpfr_t x, mpfr_t y, mpfr_prec_t p,
2bf653
+err (const char *str, mp_size_t s, mpfr_ptr x, mpfr_ptr y, mpfr_prec_t p,
2bf653
      mpfr_rnd_t r, int trint, int inexact)
2bf653
 {
2bf653
   printf ("Error: %s\ns = %u, p = %u, r = %s, trint = %d, inexact = %d\nx = ",
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tsinh_cosh.c mpfr-4.1.0-b/tests/tsinh_cosh.c
2bf653
--- mpfr-4.1.0-a/tests/tsinh_cosh.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tsinh_cosh.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -23,7 +23,7 @@
2bf653
 #include "mpfr-test.h"
2bf653
 
2bf653
 static void
2bf653
-failed (mpfr_t x, mpfr_t esh, mpfr_t gsh, mpfr_t ech, mpfr_t gch)
2bf653
+failed (mpfr_ptr x, mpfr_ptr esh, mpfr_ptr gsh, mpfr_ptr ech, mpfr_ptr gch)
2bf653
 {
2bf653
   printf ("error : mpfr_sinh_cosh (x) x = ");
2bf653
   mpfr_out_str (stdout, 10, 0, x, MPFR_RNDD);
2bf653
@@ -43,7 +43,7 @@
2bf653
 
2bf653
 /* check against sinh, cosh */
2bf653
 static void
2bf653
-check (mpfr_t x, mpfr_rnd_t rnd)
2bf653
+check (mpfr_ptr x, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   mpfr_t s, c, sx, cx;
2bf653
   int isc, is, ic;
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tsqr.c mpfr-4.1.0-b/tests/tsqr.c
2bf653
--- mpfr-4.1.0-a/tests/tsqr.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tsqr.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -33,7 +33,7 @@
2bf653
 
2bf653
 static void
2bf653
 error1 (mpfr_rnd_t rnd, mpfr_prec_t prec,
2bf653
-        mpfr_t in, mpfr_t outmul, mpfr_t outsqr)
2bf653
+        mpfr_t in, mpfr_ptr outmul, mpfr_ptr outsqr)
2bf653
 {
2bf653
   printf("ERROR: for %s and prec=%lu\nINPUT=", mpfr_print_rnd_mode(rnd),
2bf653
          (unsigned long) prec);
2bf653
@@ -44,7 +44,7 @@
2bf653
 }
2bf653
 
2bf653
 static void
2bf653
-error2 (mpfr_rnd_t rnd, mpfr_prec_t prec, mpfr_t in, mpfr_t out,
2bf653
+error2 (mpfr_rnd_t rnd, mpfr_prec_t prec, mpfr_ptr in, mpfr_ptr out,
2bf653
         int inexactmul, int inexactsqr)
2bf653
 {
2bf653
   printf("ERROR: for %s and prec=%lu\nINPUT=", mpfr_print_rnd_mode(rnd),
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tsum.c mpfr-4.1.0-b/tests/tsum.c
2bf653
--- mpfr-4.1.0-a/tests/tsum.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tsum.c	2021-02-11 12:48:27.350242965 +0000
2bf653
@@ -59,7 +59,7 @@
2bf653
 }
2bf653
 
2bf653
 static void
2bf653
-get_exact_sum (mpfr_t sum, mpfr_t *tab, int n)
2bf653
+get_exact_sum (mpfr_ptr sum, mpfr_t *tab, int n)
2bf653
 {
2bf653
   int i;
2bf653
 
2bf653
@@ -1198,7 +1198,7 @@
2bf653
 }
2bf653
 
2bf653
 static int
2bf653
-mpfr_sum_naive (mpfr_t s, mpfr_t *x, int n, mpfr_rnd_t rnd)
2bf653
+mpfr_sum_naive (mpfr_ptr s, mpfr_t *x, int n, mpfr_rnd_t rnd)
2bf653
 {
2bf653
   int ret, i;
2bf653
   switch (n)
2bf653
diff -Naurd mpfr-4.1.0-a/PATCHES mpfr-4.1.0-b/PATCHES
2bf653
--- mpfr-4.1.0-a/PATCHES	2021-02-11 12:50:22.384987438 +0000
2bf653
+++ mpfr-4.1.0-b/PATCHES	2021-02-11 12:50:22.424987002 +0000
2bf653
@@ -0,0 +1 @@
2bf653
+digamma-hugemem
2bf653
diff -Naurd mpfr-4.1.0-a/VERSION mpfr-4.1.0-b/VERSION
2bf653
--- mpfr-4.1.0-a/VERSION	2021-02-11 12:48:27.370242746 +0000
2bf653
+++ mpfr-4.1.0-b/VERSION	2021-02-11 12:50:22.424987002 +0000
2bf653
@@ -1 +1 @@
2bf653
-4.1.0-p4
2bf653
+4.1.0-p5
2bf653
diff -Naurd mpfr-4.1.0-a/src/digamma.c mpfr-4.1.0-b/src/digamma.c
2bf653
--- mpfr-4.1.0-a/src/digamma.c	2020-06-18 17:17:18.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/digamma.c	2021-02-11 12:50:22.412987133 +0000
2bf653
@@ -214,19 +214,27 @@
2bf653
     (("x[%Pu]=%.*Rg rnd=%d", mpfr_get_prec(x), mpfr_log_prec, x, rnd_mode),
2bf653
      ("y[%Pu]=%.*Rg inexact=%d", mpfr_get_prec(y), mpfr_log_prec, y, inex));
2bf653
 
2bf653
-  /* compute a precision q such that x+1 is exact */
2bf653
-  if (MPFR_PREC(x) < MPFR_GET_EXP(x))
2bf653
-    q = MPFR_EXP(x);
2bf653
-  else
2bf653
-    q = MPFR_PREC(x) + 1;
2bf653
-
2bf653
-  /* for very large x, use |digamma(x) - log(x)| < 1/x < 2^(1-EXP(x)) */
2bf653
-  if (MPFR_PREC(y) + 10 < MPFR_EXP(x))
2bf653
+  /* For very large x, use |digamma(x) - log(x)| < 1/x < 2^(1-EXP(x)).
2bf653
+     However, for a fixed value of GUARD, MPFR_CAN_ROUND() might fail
2bf653
+     with probability 1/2^GUARD, in which case the default code will
2bf653
+     fail since it requires x+1 to be exact, thus a huge precision if
2bf653
+     x is huge. There are two workarounds:
2bf653
+     * either perform a Ziv's loop, by increasing GUARD at each step.
2bf653
+       However, this might fail if x is moderately large, in which case
2bf653
+       more terms of the asymptotic expansion would be needed.
2bf653
+     * implement a full asymptotic expansion (with Ziv's loop). */
2bf653
+#define GUARD 30
2bf653
+  if (MPFR_PREC(y) + GUARD < MPFR_EXP(x))
2bf653
     {
2bf653
       /* this ensures EXP(x) >= 3, thus x >= 4, thus log(x) > 1 */
2bf653
-      mpfr_init2 (t, MPFR_PREC(y) + 10);
2bf653
-      mpfr_log (t, x, MPFR_RNDZ);
2bf653
-      if (MPFR_CAN_ROUND (t, MPFR_PREC(y) + 10, MPFR_PREC(y), rnd_mode))
2bf653
+      mpfr_init2 (t, MPFR_PREC(y) + GUARD);
2bf653
+      mpfr_log (t, x, MPFR_RNDN);
2bf653
+      /* |t - digamma(x)| <= 1/2*ulp(t) + |digamma(x) - log(x)|
2bf653
+                          <= 1/2*ulp(t) + 2^(1-EXP(x))
2bf653
+                          <= 1/2*ulp(t) + 2^(-PREC(y)-GUARD)
2bf653
+                          <= ulp(t)
2bf653
+         since |t| >= 1 thus ulp(t) >= 2^(1-PREC(y)-GUARD) */
2bf653
+      if (MPFR_CAN_ROUND (t, MPFR_PREC(y) + GUARD, MPFR_PREC(y), rnd_mode))
2bf653
         {
2bf653
           inex = mpfr_set (y, t, rnd_mode);
2bf653
           mpfr_clear (t);
2bf653
@@ -235,6 +243,21 @@
2bf653
       mpfr_clear (t);
2bf653
     }
2bf653
 
2bf653
+  /* compute a precision q such that x+1 is exact */
2bf653
+  if (MPFR_PREC(x) < MPFR_GET_EXP(x))
2bf653
+    {
2bf653
+      /* The goal of the first assertion is to let the compiler ignore
2bf653
+         the second one when MPFR_EMAX_MAX <= MPFR_PREC_MAX. */
2bf653
+      MPFR_ASSERTD (MPFR_EXP(x) <= MPFR_EMAX_MAX);
2bf653
+      MPFR_ASSERTN (MPFR_EXP(x) <= MPFR_PREC_MAX);
2bf653
+      q = MPFR_EXP(x);
2bf653
+    }
2bf653
+  else
2bf653
+    q = MPFR_PREC(x) + 1;
2bf653
+
2bf653
+  /* FIXME: q can be much too large, e.g. equal to the maximum exponent! */
2bf653
+  MPFR_LOG_MSG (("q=%Pu\n", q));
2bf653
+
2bf653
   mpfr_init2 (x_plus_j, q);
2bf653
 
2bf653
   mpfr_init2 (t, p);
2bf653
diff -Naurd mpfr-4.1.0-a/src/mpfr.h mpfr-4.1.0-b/src/mpfr.h
2bf653
--- mpfr-4.1.0-a/src/mpfr.h	2021-02-11 12:48:27.366242791 +0000
2bf653
+++ mpfr-4.1.0-b/src/mpfr.h	2021-02-11 12:50:22.424987002 +0000
2bf653
@@ -27,7 +27,7 @@
2bf653
 #define MPFR_VERSION_MAJOR 4
2bf653
 #define MPFR_VERSION_MINOR 1
2bf653
 #define MPFR_VERSION_PATCHLEVEL 0
2bf653
-#define MPFR_VERSION_STRING "4.1.0-p4"
2bf653
+#define MPFR_VERSION_STRING "4.1.0-p5"
2bf653
 
2bf653
 /* User macros:
2bf653
    MPFR_USE_FILE:        Define it to make MPFR define functions dealing
2bf653
diff -Naurd mpfr-4.1.0-a/src/version.c mpfr-4.1.0-b/src/version.c
2bf653
--- mpfr-4.1.0-a/src/version.c	2021-02-11 12:48:27.370242746 +0000
2bf653
+++ mpfr-4.1.0-b/src/version.c	2021-02-11 12:50:22.424987002 +0000
2bf653
@@ -25,5 +25,5 @@
2bf653
 const char *
2bf653
 mpfr_get_version (void)
2bf653
 {
2bf653
-  return "4.1.0-p4";
2bf653
+  return "4.1.0-p5";
2bf653
 }
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tdigamma.c mpfr-4.1.0-b/tests/tdigamma.c
2bf653
--- mpfr-4.1.0-a/tests/tdigamma.c	2020-06-18 17:17:18.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tdigamma.c	2021-02-11 12:50:22.412987133 +0000
2bf653
@@ -49,12 +49,54 @@
2bf653
   mpfr_clear (y);
2bf653
 }
2bf653
 
2bf653
+/* With some GMP_CHECK_RANDOMIZE values, test_generic triggers an error
2bf653
+     tests_addsize(): too much memory (576460752303432776 bytes)
2bf653
+  Each time on prec = 200, n = 3, xprec = 140.
2bf653
+  The following test is a more general testcase.
2bf653
+*/
2bf653
+static void
2bf653
+bug20210206 (void)
2bf653
+{
2bf653
+#define NPREC 4
2bf653
+  mpfr_t x, y[NPREC], z;
2bf653
+  mpfr_exp_t emin, emax;
2bf653
+  int i, precx, precy[NPREC] = { 200, 400, 520, 1416 };
2bf653
+
2bf653
+  emin = mpfr_get_emin ();
2bf653
+  emax = mpfr_get_emax ();
2bf653
+  set_emin (MPFR_EMIN_MIN);
2bf653
+  set_emax (MPFR_EMAX_MAX);
2bf653
+
2bf653
+  for (i = 0; i < NPREC; i++)
2bf653
+    mpfr_init2 (y[i], precy[i]);
2bf653
+  mpfr_init2 (z, precy[0]);
2bf653
+
2bf653
+  for (precx = MPFR_PREC_MIN; precx < 150; precx++)
2bf653
+    {
2bf653
+      mpfr_init2 (x, precx);
2bf653
+      mpfr_setmax (x, __gmpfr_emax);
2bf653
+      for (i = 0; i < NPREC; i++)
2bf653
+        mpfr_digamma (y[i], x, MPFR_RNDA);
2bf653
+      mpfr_set (z, y[1], MPFR_RNDA);
2bf653
+      MPFR_ASSERTN (mpfr_equal_p (y[0], z));
2bf653
+      mpfr_clear (x);
2bf653
+    }
2bf653
+
2bf653
+  for (i = 0; i < NPREC; i++)
2bf653
+    mpfr_clear (y[i]);
2bf653
+  mpfr_clear (z);
2bf653
+
2bf653
+  set_emin (emin);
2bf653
+  set_emax (emax);
2bf653
+}
2bf653
+
2bf653
 int
2bf653
 main (int argc, char *argv[])
2bf653
 {
2bf653
   tests_start_mpfr ();
2bf653
 
2bf653
   special ();
2bf653
+  bug20210206 ();
2bf653
 
2bf653
   test_generic (MPFR_PREC_MIN, 200, 20);
2bf653
 
2bf653
diff -Naurd mpfr-4.1.0-a/PATCHES mpfr-4.1.0-b/PATCHES
2bf653
--- mpfr-4.1.0-a/PATCHES	2021-02-11 12:52:52.519350662 +0000
2bf653
+++ mpfr-4.1.0-b/PATCHES	2021-02-11 12:52:52.563350183 +0000
2bf653
@@ -0,0 +1 @@
2bf653
+digamma-interm-zero
2bf653
diff -Naurd mpfr-4.1.0-a/VERSION mpfr-4.1.0-b/VERSION
2bf653
--- mpfr-4.1.0-a/VERSION	2021-02-11 12:50:22.424987002 +0000
2bf653
+++ mpfr-4.1.0-b/VERSION	2021-02-11 12:52:52.563350183 +0000
2bf653
@@ -1 +1 @@
2bf653
-4.1.0-p5
2bf653
+4.1.0-p6
2bf653
diff -Naurd mpfr-4.1.0-a/src/digamma.c mpfr-4.1.0-b/src/digamma.c
2bf653
--- mpfr-4.1.0-a/src/digamma.c	2021-02-11 12:50:22.412987133 +0000
2bf653
+++ mpfr-4.1.0-b/src/digamma.c	2021-02-11 12:52:52.547350357 +0000
2bf653
@@ -296,21 +296,26 @@
2bf653
       errt = mpfr_digamma_approx (t, x_plus_j);
2bf653
       expt = MPFR_GET_EXP (t);
2bf653
       mpfr_sub (t, t, u, MPFR_RNDN);
2bf653
-      if (MPFR_GET_EXP (t) < expt)
2bf653
-        errt += expt - MPFR_EXP(t);
2bf653
-      /* Warning: if u is zero (which happens when x_plus_j >= min at the
2bf653
-         beginning of the while loop above), EXP(u) is not defined.
2bf653
-         In this case we have no error from u. */
2bf653
-      if (MPFR_NOTZERO(u) && MPFR_GET_EXP (t) < MPFR_GET_EXP (u))
2bf653
-        erru += MPFR_EXP(u) - MPFR_EXP(t);
2bf653
-      if (errt > erru)
2bf653
-        errt = errt + 1;
2bf653
-      else if (errt == erru)
2bf653
-        errt = errt + 2;
2bf653
-      else
2bf653
-        errt = erru + 1;
2bf653
-      if (MPFR_CAN_ROUND (t, p - errt, MPFR_PREC(y), rnd_mode))
2bf653
-        break;
2bf653
+      /* Warning! t may be zero (more likely in small precision). Note
2bf653
+         that in this case, this is an exact zero, not an underflow. */
2bf653
+      if (MPFR_NOTZERO(t))
2bf653
+        {
2bf653
+          if (MPFR_GET_EXP (t) < expt)
2bf653
+            errt += expt - MPFR_EXP(t);
2bf653
+          /* Warning: if u is zero (which happens when x_plus_j >= min at the
2bf653
+             beginning of the while loop above), EXP(u) is not defined.
2bf653
+             In this case we have no error from u. */
2bf653
+          if (MPFR_NOTZERO(u) && MPFR_GET_EXP (t) < MPFR_GET_EXP (u))
2bf653
+            erru += MPFR_EXP(u) - MPFR_EXP(t);
2bf653
+          if (errt > erru)
2bf653
+            errt = errt + 1;
2bf653
+          else if (errt == erru)
2bf653
+            errt = errt + 2;
2bf653
+          else
2bf653
+            errt = erru + 1;
2bf653
+          if (MPFR_CAN_ROUND (t, p - errt, MPFR_PREC(y), rnd_mode))
2bf653
+            break;
2bf653
+        }
2bf653
       MPFR_ZIV_NEXT (loop, p);
2bf653
       mpfr_set_prec (t, p);
2bf653
       mpfr_set_prec (u, p);
2bf653
diff -Naurd mpfr-4.1.0-a/src/mpfr.h mpfr-4.1.0-b/src/mpfr.h
2bf653
--- mpfr-4.1.0-a/src/mpfr.h	2021-02-11 12:50:22.424987002 +0000
2bf653
+++ mpfr-4.1.0-b/src/mpfr.h	2021-02-11 12:52:52.559350226 +0000
2bf653
@@ -27,7 +27,7 @@
2bf653
 #define MPFR_VERSION_MAJOR 4
2bf653
 #define MPFR_VERSION_MINOR 1
2bf653
 #define MPFR_VERSION_PATCHLEVEL 0
2bf653
-#define MPFR_VERSION_STRING "4.1.0-p5"
2bf653
+#define MPFR_VERSION_STRING "4.1.0-p6"
2bf653
 
2bf653
 /* User macros:
2bf653
    MPFR_USE_FILE:        Define it to make MPFR define functions dealing
2bf653
diff -Naurd mpfr-4.1.0-a/src/version.c mpfr-4.1.0-b/src/version.c
2bf653
--- mpfr-4.1.0-a/src/version.c	2021-02-11 12:50:22.424987002 +0000
2bf653
+++ mpfr-4.1.0-b/src/version.c	2021-02-11 12:52:52.559350226 +0000
2bf653
@@ -25,5 +25,5 @@
2bf653
 const char *
2bf653
 mpfr_get_version (void)
2bf653
 {
2bf653
-  return "4.1.0-p5";
2bf653
+  return "4.1.0-p6";
2bf653
 }
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tdigamma.c mpfr-4.1.0-b/tests/tdigamma.c
2bf653
--- mpfr-4.1.0-a/tests/tdigamma.c	2021-02-11 12:50:22.412987133 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tdigamma.c	2021-02-11 12:52:52.547350357 +0000
2bf653
@@ -90,6 +90,26 @@
2bf653
   set_emax (emax);
2bf653
 }
2bf653
 
2bf653
+/* another test that fails with GMP_CHECK_RANDOMIZE=1612741376857003
2bf653
+   on revision 14398 */
2bf653
+static void
2bf653
+bug20210208 (void)
2bf653
+{
2bf653
+  mpfr_t x, y;
2bf653
+  int inex;
2bf653
+
2bf653
+  mpfr_init2 (x, 73);
2bf653
+  mpfr_init2 (y, 1);
2bf653
+  mpfr_set_str (x, "1.4613470547060071827450", 10, MPFR_RNDN);
2bf653
+  mpfr_clear_flags ();
2bf653
+  inex = mpfr_digamma (y, x, MPFR_RNDU);
2bf653
+  MPFR_ASSERTN (mpfr_cmp_si_2exp (y, -1, -12) == 0);
2bf653
+  MPFR_ASSERTN (inex > 0);
2bf653
+  MPFR_ASSERTN (__gmpfr_flags == MPFR_FLAGS_INEXACT);
2bf653
+  mpfr_clear (x);
2bf653
+  mpfr_clear (y);
2bf653
+}
2bf653
+
2bf653
 int
2bf653
 main (int argc, char *argv[])
2bf653
 {
2bf653
@@ -97,6 +117,7 @@
2bf653
 
2bf653
   special ();
2bf653
   bug20210206 ();
2bf653
+  bug20210208 ();
2bf653
 
2bf653
   test_generic (MPFR_PREC_MIN, 200, 20);
2bf653
 
2bf653
diff -Naurd mpfr-4.1.0-a/PATCHES mpfr-4.1.0-b/PATCHES
2bf653
--- mpfr-4.1.0-a/PATCHES	2021-02-11 12:53:38.382850990 +0000
2bf653
+++ mpfr-4.1.0-b/PATCHES	2021-02-11 12:53:38.426850512 +0000
2bf653
@@ -0,0 +1 @@
2bf653
+jn-interm-zero
2bf653
diff -Naurd mpfr-4.1.0-a/VERSION mpfr-4.1.0-b/VERSION
2bf653
--- mpfr-4.1.0-a/VERSION	2021-02-11 12:52:52.563350183 +0000
2bf653
+++ mpfr-4.1.0-b/VERSION	2021-02-11 12:53:38.426850512 +0000
2bf653
@@ -1 +1 @@
2bf653
-4.1.0-p6
2bf653
+4.1.0-p7
2bf653
diff -Naurd mpfr-4.1.0-a/src/jyn_asympt.c mpfr-4.1.0-b/src/jyn_asympt.c
2bf653
--- mpfr-4.1.0-a/src/jyn_asympt.c	2020-07-10 10:33:32.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/src/jyn_asympt.c	2021-02-11 12:53:38.410850685 +0000
2bf653
@@ -69,6 +69,8 @@
2bf653
   MPFR_ZIV_INIT (loop, w);
2bf653
   for (;;)
2bf653
     {
2bf653
+      int ok = 1;
2bf653
+
2bf653
       mpfr_set_prec (c, w);
2bf653
       mpfr_init2 (s, w);
2bf653
       mpfr_init2 (P, w);
2bf653
@@ -92,6 +94,13 @@
2bf653
       /* now s approximates sin(z)+cos(z), and c approximates sin(z)-cos(z),
2bf653
          with total absolute error bounded by 2^(1-w). */
2bf653
 
2bf653
+      /* if s or c is zero, MPFR_GET_EXP will fail below */
2bf653
+      if (MPFR_IS_ZERO(s) || MPFR_IS_ZERO(c))
2bf653
+        {
2bf653
+          ok = 0;
2bf653
+          goto clear;
2bf653
+        }
2bf653
+
2bf653
       /* precompute 1/(8|z|) */
2bf653
       mpfr_si_div (iz, MPFR_IS_POS(z) ? 1 : -1, z, MPFR_RNDN);   /* err <= 1 */
2bf653
       mpfr_div_2ui (iz, iz, 3, MPFR_RNDN);
2bf653
@@ -257,6 +266,9 @@
2bf653
       err = (err >= err2) ? err + 1 : err2 + 1;
2bf653
       /* the absolute error on c is bounded by 2^(err - w) */
2bf653
 
2bf653
+      err -= MPFR_GET_EXP (c);
2bf653
+
2bf653
+    clear:
2bf653
       mpfr_clear (s);
2bf653
       mpfr_clear (P);
2bf653
       mpfr_clear (Q);
2bf653
@@ -266,8 +278,7 @@
2bf653
       mpfr_clear (err_s);
2bf653
       mpfr_clear (err_u);
2bf653
 
2bf653
-      err -= MPFR_GET_EXP (c);
2bf653
-      if (MPFR_LIKELY (MPFR_CAN_ROUND (c, w - err, MPFR_PREC(res), r)))
2bf653
+      if (ok && MPFR_LIKELY (MPFR_CAN_ROUND (c, w - err, MPFR_PREC(res), r)))
2bf653
         break;
2bf653
       if (diverge != 0)
2bf653
         {
2bf653
diff -Naurd mpfr-4.1.0-a/src/mpfr.h mpfr-4.1.0-b/src/mpfr.h
2bf653
--- mpfr-4.1.0-a/src/mpfr.h	2021-02-11 12:52:52.559350226 +0000
2bf653
+++ mpfr-4.1.0-b/src/mpfr.h	2021-02-11 12:53:38.422850555 +0000
2bf653
@@ -27,7 +27,7 @@
2bf653
 #define MPFR_VERSION_MAJOR 4
2bf653
 #define MPFR_VERSION_MINOR 1
2bf653
 #define MPFR_VERSION_PATCHLEVEL 0
2bf653
-#define MPFR_VERSION_STRING "4.1.0-p6"
2bf653
+#define MPFR_VERSION_STRING "4.1.0-p7"
2bf653
 
2bf653
 /* User macros:
2bf653
    MPFR_USE_FILE:        Define it to make MPFR define functions dealing
2bf653
diff -Naurd mpfr-4.1.0-a/src/version.c mpfr-4.1.0-b/src/version.c
2bf653
--- mpfr-4.1.0-a/src/version.c	2021-02-11 12:52:52.559350226 +0000
2bf653
+++ mpfr-4.1.0-b/src/version.c	2021-02-11 12:53:38.426850512 +0000
2bf653
@@ -25,5 +25,5 @@
2bf653
 const char *
2bf653
 mpfr_get_version (void)
2bf653
 {
2bf653
-  return "4.1.0-p6";
2bf653
+  return "4.1.0-p7";
2bf653
 }
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tj0.c mpfr-4.1.0-b/tests/tj0.c
2bf653
--- mpfr-4.1.0-a/tests/tj0.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tj0.c	2021-02-11 12:53:38.410850685 +0000
2bf653
@@ -27,6 +27,25 @@
2bf653
 #define REDUCE_EMAX 262143 /* otherwise arg. reduction is too expensive */
2bf653
 #include "tgeneric.c"
2bf653
 
2bf653
+/* bug found in revision 14399 with GMP_CHECK_RANDOMIZE=1612721106588971 */
2bf653
+static void
2bf653
+bug20210208 (void)
2bf653
+{
2bf653
+  mpfr_t x, y;
2bf653
+  int inex;
2bf653
+
2bf653
+  mpfr_init2 (x, 79);
2bf653
+  mpfr_init2 (y, 1);
2bf653
+  mpfr_set_str (x, "2.552495117262005805960565e+02", 10, MPFR_RNDN);
2bf653
+  mpfr_clear_flags ();
2bf653
+  inex = mpfr_j0 (y, x, MPFR_RNDZ);
2bf653
+  MPFR_ASSERTN (mpfr_cmp_si_2exp (y, -1, -5) == 0);
2bf653
+  MPFR_ASSERTN (inex > 0);
2bf653
+  MPFR_ASSERTN (__gmpfr_flags == MPFR_FLAGS_INEXACT);
2bf653
+  mpfr_clear (x);
2bf653
+  mpfr_clear (y);
2bf653
+}
2bf653
+
2bf653
 int
2bf653
 main (int argc, char *argv[])
2bf653
 {
2bf653
@@ -35,6 +54,8 @@
2bf653
 
2bf653
   tests_start_mpfr ();
2bf653
 
2bf653
+  bug20210208 ();
2bf653
+
2bf653
   mpfr_init (x);
2bf653
   mpfr_init (y);
2bf653
 
2bf653
diff -Naurd mpfr-4.1.0-a/PATCHES mpfr-4.1.0-b/PATCHES
2bf653
--- mpfr-4.1.0-a/PATCHES	2021-02-17 17:22:34.594973310 +0000
2bf653
+++ mpfr-4.1.0-b/PATCHES	2021-02-17 17:22:34.702972090 +0000
2bf653
@@ -0,0 +1 @@
2bf653
+digamma-interm-zero2
2bf653
diff -Naurd mpfr-4.1.0-a/VERSION mpfr-4.1.0-b/VERSION
2bf653
--- mpfr-4.1.0-a/VERSION	2021-02-11 12:53:38.426850512 +0000
2bf653
+++ mpfr-4.1.0-b/VERSION	2021-02-17 17:22:34.702972090 +0000
2bf653
@@ -1 +1 @@
2bf653
-4.1.0-p7
2bf653
+4.1.0-p8
2bf653
diff -Naurd mpfr-4.1.0-a/src/digamma.c mpfr-4.1.0-b/src/digamma.c
2bf653
--- mpfr-4.1.0-a/src/digamma.c	2021-02-11 12:52:52.547350357 +0000
2bf653
+++ mpfr-4.1.0-b/src/digamma.c	2021-02-17 17:22:34.690972226 +0000
2bf653
@@ -173,16 +173,19 @@
2bf653
       mpfr_digamma (v, u, MPFR_RNDN);   /* error <= 1/2 ulp */
2bf653
       expv = MPFR_GET_EXP (v);
2bf653
       mpfr_sub (v, v, t, MPFR_RNDN);
2bf653
-      if (MPFR_GET_EXP (v) < MPFR_GET_EXP (t))
2bf653
-        e1 += MPFR_EXP(t) - MPFR_EXP(v); /* scale error for t wrt new v */
2bf653
-      /* now take into account the 1/2 ulp error for v */
2bf653
-      if (expv - MPFR_EXP(v) - 1 > e1)
2bf653
-        e1 = expv - MPFR_EXP(v) - 1;
2bf653
-      else
2bf653
-        e1 ++;
2bf653
-      e1 ++; /* rounding error for mpfr_sub */
2bf653
-      if (MPFR_CAN_ROUND (v, p - e1, MPFR_PREC(y), rnd_mode))
2bf653
-        break;
2bf653
+      if (MPFR_NOTZERO(v))
2bf653
+        {
2bf653
+          if (MPFR_GET_EXP (v) < MPFR_GET_EXP (t))
2bf653
+            e1 += MPFR_EXP(t) - MPFR_EXP(v); /* scale error for t wrt new v */
2bf653
+          /* now take into account the 1/2 ulp error for v */
2bf653
+          if (expv - MPFR_EXP(v) - 1 > e1)
2bf653
+            e1 = expv - MPFR_EXP(v) - 1;
2bf653
+          else
2bf653
+            e1 ++;
2bf653
+          e1 ++; /* rounding error for mpfr_sub */
2bf653
+          if (MPFR_CAN_ROUND (v, p - e1, MPFR_PREC(y), rnd_mode))
2bf653
+            break;
2bf653
+        }
2bf653
       MPFR_ZIV_NEXT (loop, p);
2bf653
       mpfr_set_prec (t, p);
2bf653
       mpfr_set_prec (v, p);
2bf653
@@ -416,10 +419,8 @@
2bf653
         }
2bf653
     }
2bf653
 
2bf653
-  if (MPFR_IS_NEG(x))
2bf653
-    inex = mpfr_digamma_reflection (y, x, rnd_mode);
2bf653
   /* if x < 1/2 we use the reflection formula */
2bf653
-  else if (MPFR_EXP(x) < 0)
2bf653
+  if (MPFR_IS_NEG(x) || MPFR_EXP(x) < 0)
2bf653
     inex = mpfr_digamma_reflection (y, x, rnd_mode);
2bf653
   else
2bf653
     inex = mpfr_digamma_positive (y, x, rnd_mode);
2bf653
diff -Naurd mpfr-4.1.0-a/src/mpfr.h mpfr-4.1.0-b/src/mpfr.h
2bf653
--- mpfr-4.1.0-a/src/mpfr.h	2021-02-11 12:53:38.422850555 +0000
2bf653
+++ mpfr-4.1.0-b/src/mpfr.h	2021-02-17 17:22:34.702972090 +0000
2bf653
@@ -27,7 +27,7 @@
2bf653
 #define MPFR_VERSION_MAJOR 4
2bf653
 #define MPFR_VERSION_MINOR 1
2bf653
 #define MPFR_VERSION_PATCHLEVEL 0
2bf653
-#define MPFR_VERSION_STRING "4.1.0-p7"
2bf653
+#define MPFR_VERSION_STRING "4.1.0-p8"
2bf653
 
2bf653
 /* User macros:
2bf653
    MPFR_USE_FILE:        Define it to make MPFR define functions dealing
2bf653
diff -Naurd mpfr-4.1.0-a/src/version.c mpfr-4.1.0-b/src/version.c
2bf653
--- mpfr-4.1.0-a/src/version.c	2021-02-11 12:53:38.426850512 +0000
2bf653
+++ mpfr-4.1.0-b/src/version.c	2021-02-17 17:22:34.702972090 +0000
2bf653
@@ -25,5 +25,5 @@
2bf653
 const char *
2bf653
 mpfr_get_version (void)
2bf653
 {
2bf653
-  return "4.1.0-p7";
2bf653
+  return "4.1.0-p8";
2bf653
 }
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tdigamma.c mpfr-4.1.0-b/tests/tdigamma.c
2bf653
--- mpfr-4.1.0-a/tests/tdigamma.c	2021-02-11 12:52:52.547350357 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tdigamma.c	2021-02-17 17:22:34.690972226 +0000
2bf653
@@ -110,6 +110,26 @@
2bf653
   mpfr_clear (y);
2bf653
 }
2bf653
 
2bf653
+/* another test that fails with GMP_CHECK_RANDOMIZE=1613197421465830
2bf653
+   on revision 14429 */
2bf653
+static void
2bf653
+bug20210215 (void)
2bf653
+{
2bf653
+  mpfr_t x, y;
2bf653
+  int inex;
2bf653
+
2bf653
+  mpfr_init2 (x, 510);
2bf653
+  mpfr_init2 (y, 4);
2bf653
+  mpfr_set_str (x, "-8.2923051438433494998166335341807999322052669984208422481227138906096000469898717007386115912802685588348601663465077353194268894939972221117314512518182580e+35", 10, MPFR_RNDN);
2bf653
+  mpfr_clear_flags ();
2bf653
+  inex = mpfr_digamma (y, x, MPFR_RNDU);
2bf653
+  MPFR_ASSERTN (mpfr_cmp_ui0 (y, 88) == 0);
2bf653
+  MPFR_ASSERTN (inex > 0);
2bf653
+  MPFR_ASSERTN (__gmpfr_flags == MPFR_FLAGS_INEXACT);
2bf653
+  mpfr_clear (x);
2bf653
+  mpfr_clear (y);
2bf653
+}
2bf653
+
2bf653
 int
2bf653
 main (int argc, char *argv[])
2bf653
 {
2bf653
@@ -118,6 +138,7 @@
2bf653
   special ();
2bf653
   bug20210206 ();
2bf653
   bug20210208 ();
2bf653
+  bug20210215 ();
2bf653
 
2bf653
   test_generic (MPFR_PREC_MIN, 200, 20);
2bf653
 
2bf653
diff -Naurd mpfr-4.1.0-a/PATCHES mpfr-4.1.0-b/PATCHES
2bf653
--- mpfr-4.1.0-a/PATCHES	2021-02-17 17:25:46.396981483 +0000
2bf653
+++ mpfr-4.1.0-b/PATCHES	2021-02-17 17:25:46.440981068 +0000
2bf653
@@ -0,0 +1 @@
2bf653
+jyn_asympt-interm-zero
2bf653
diff -Naurd mpfr-4.1.0-a/VERSION mpfr-4.1.0-b/VERSION
2bf653
--- mpfr-4.1.0-a/VERSION	2021-02-17 17:22:34.702972090 +0000
2bf653
+++ mpfr-4.1.0-b/VERSION	2021-02-17 17:25:46.440981068 +0000
2bf653
@@ -1 +1 @@
2bf653
-4.1.0-p8
2bf653
+4.1.0-p9
2bf653
diff -Naurd mpfr-4.1.0-a/src/jyn_asympt.c mpfr-4.1.0-b/src/jyn_asympt.c
2bf653
--- mpfr-4.1.0-a/src/jyn_asympt.c	2021-02-11 12:53:38.410850685 +0000
2bf653
+++ mpfr-4.1.0-b/src/jyn_asympt.c	2021-02-17 17:25:46.424981219 +0000
2bf653
@@ -69,7 +69,7 @@
2bf653
   MPFR_ZIV_INIT (loop, w);
2bf653
   for (;;)
2bf653
     {
2bf653
-      int ok = 1;
2bf653
+      int ok = 0;
2bf653
 
2bf653
       mpfr_set_prec (c, w);
2bf653
       mpfr_init2 (s, w);
2bf653
@@ -96,10 +96,7 @@
2bf653
 
2bf653
       /* if s or c is zero, MPFR_GET_EXP will fail below */
2bf653
       if (MPFR_IS_ZERO(s) || MPFR_IS_ZERO(c))
2bf653
-        {
2bf653
-          ok = 0;
2bf653
-          goto clear;
2bf653
-        }
2bf653
+        goto clear; /* with ok=0 */
2bf653
 
2bf653
       /* precompute 1/(8|z|) */
2bf653
       mpfr_si_div (iz, MPFR_IS_POS(z) ? 1 : -1, z, MPFR_RNDN);   /* err <= 1 */
2bf653
@@ -227,6 +224,9 @@
2bf653
           mpfr_sub (s, c, s, MPFR_RNDN);
2bf653
 #endif
2bf653
         }
2bf653
+      if (MPFR_IS_ZERO(s))
2bf653
+        goto clear; /* with ok=0 */
2bf653
+      ok = 1;
2bf653
       if ((n & 2) != 0)
2bf653
         mpfr_neg (s, s, MPFR_RNDN);
2bf653
       if (MPFR_GET_EXP (s) > err)
2bf653
diff -Naurd mpfr-4.1.0-a/src/mpfr.h mpfr-4.1.0-b/src/mpfr.h
2bf653
--- mpfr-4.1.0-a/src/mpfr.h	2021-02-17 17:22:34.702972090 +0000
2bf653
+++ mpfr-4.1.0-b/src/mpfr.h	2021-02-17 17:25:46.436981105 +0000
2bf653
@@ -27,7 +27,7 @@
2bf653
 #define MPFR_VERSION_MAJOR 4
2bf653
 #define MPFR_VERSION_MINOR 1
2bf653
 #define MPFR_VERSION_PATCHLEVEL 0
2bf653
-#define MPFR_VERSION_STRING "4.1.0-p8"
2bf653
+#define MPFR_VERSION_STRING "4.1.0-p9"
2bf653
 
2bf653
 /* User macros:
2bf653
    MPFR_USE_FILE:        Define it to make MPFR define functions dealing
2bf653
diff -Naurd mpfr-4.1.0-a/src/version.c mpfr-4.1.0-b/src/version.c
2bf653
--- mpfr-4.1.0-a/src/version.c	2021-02-17 17:22:34.702972090 +0000
2bf653
+++ mpfr-4.1.0-b/src/version.c	2021-02-17 17:25:46.440981068 +0000
2bf653
@@ -25,5 +25,5 @@
2bf653
 const char *
2bf653
 mpfr_get_version (void)
2bf653
 {
2bf653
-  return "4.1.0-p8";
2bf653
+  return "4.1.0-p9";
2bf653
 }
2bf653
diff -Naurd mpfr-4.1.0-a/tests/mpfr-test.h mpfr-4.1.0-b/tests/mpfr-test.h
2bf653
--- mpfr-4.1.0-a/tests/mpfr-test.h	2020-06-29 13:57:32.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/mpfr-test.h	2021-02-17 17:25:46.424981219 +0000
2bf653
@@ -191,6 +191,8 @@
2bf653
 
2bf653
 #define mpfr_cmp0(x,y) (MPFR_ASSERTN (!MPFR_IS_NAN (x) && !MPFR_IS_NAN (y)), mpfr_cmp (x,y))
2bf653
 #define mpfr_cmp_ui0(x,i) (MPFR_ASSERTN (!MPFR_IS_NAN (x)), mpfr_cmp_ui (x,i))
2bf653
+#define mpfr_cmp_si_2exp0(x,i,e) (MPFR_ASSERTN (!MPFR_IS_NAN (x)), \
2bf653
+                                  mpfr_cmp_si_2exp (x,i,e))
2bf653
 
2bf653
 /* define CHECK_EXTERNAL if you want to check mpfr against another library
2bf653
    with correct rounding. You'll probably have to modify mpfr_print_raw()
2bf653
diff -Naurd mpfr-4.1.0-a/tests/tj1.c mpfr-4.1.0-b/tests/tj1.c
2bf653
--- mpfr-4.1.0-a/tests/tj1.c	2020-01-08 18:11:13.000000000 +0000
2bf653
+++ mpfr-4.1.0-b/tests/tj1.c	2021-02-17 17:25:46.424981219 +0000
2bf653
@@ -55,14 +55,14 @@
2bf653
               /* since |x| is just above 2^e, |j1(x)| is just above 2^(e-1),
2bf653
                  thus y should be 2^(e-1) and the inexact flag should be
2bf653
                  of opposite sign of x */
2bf653
-              MPFR_ASSERTN(mpfr_cmp_si_2exp (y, sign, e - 1) == 0);
2bf653
+              MPFR_ASSERTN(mpfr_cmp_si_2exp0 (y, sign, e - 1) == 0);
2bf653
               MPFR_ASSERTN(VSIGN (inex) * sign < 0);
2bf653
             }
2bf653
           else
2bf653
             {
2bf653
               /* here |y| should be 0.5*2^emin and the inexact flag should
2bf653
                  have the sign of x */
2bf653
-              MPFR_ASSERTN(mpfr_cmp_si_2exp (y, sign, e) == 0);
2bf653
+              MPFR_ASSERTN(mpfr_cmp_si_2exp0 (y, sign, e) == 0);
2bf653
               MPFR_ASSERTN(VSIGN (inex) * sign > 0);
2bf653
             }
2bf653
         }
2bf653
@@ -72,6 +72,26 @@
2bf653
   mpfr_clear (y);
2bf653
 }
2bf653
 
2bf653
+/* a test that fails with GMP_CHECK_RANDOMIZE=1613146232984428
2bf653
+   on revision 14429 */
2bf653
+static void
2bf653
+bug20210215 (void)
2bf653
+{
2bf653
+  mpfr_t x, y;
2bf653
+  int inex;
2bf653
+
2bf653
+  mpfr_init2 (x, 221);
2bf653
+  mpfr_init2 (y, 1);
2bf653
+  mpfr_set_str (x, "1.6484611511696130037307738844228498447763863563070374544054791168614e+01", 10, MPFR_RNDN);
2bf653
+  mpfr_clear_flags ();
2bf653
+  inex = mpfr_j1 (y, x, MPFR_RNDZ);
2bf653
+  MPFR_ASSERTN (mpfr_cmp_si_2exp0 (y, -1, -9) == 0);
2bf653
+  MPFR_ASSERTN (inex > 0);
2bf653
+  MPFR_ASSERTN (__gmpfr_flags == MPFR_FLAGS_INEXACT);
2bf653
+  mpfr_clear (x);
2bf653
+  mpfr_clear (y);
2bf653
+}
2bf653
+
2bf653
 int
2bf653
 main (int argc, char *argv[])
2bf653
 {
2bf653
@@ -79,6 +99,8 @@
2bf653
 
2bf653
   tests_start_mpfr ();
2bf653
 
2bf653
+  bug20210215 ();
2bf653
+
2bf653
   test_small ();
2bf653
 
2bf653
   mpfr_init (x);