Code coverage tests

This page documents the degree to which the PARI/GP source code is tested by our public test suite, distributed with the source distribution in directory src/test/. This is measured by the gcov utility; we then process gcov output using the lcov frond-end.

We test a few variants depending on Configure flags on the pari.math.u-bordeaux.fr machine (x86_64 architecture), and agregate them in the final report:

The target is to exceed 90% coverage for all mathematical modules (given that branches depending on DEBUGLEVEL or DEBUGMEM are not covered). This script is run to produce the results below.

LCOV - code coverage report
Current view: top level - kernel/none - mp_indep.c (source / functions) Hit Total Coverage
Test: PARI/GP v2.18.1 lcov report (development 30640-c2c58e18c5) Lines: 535 567 94.4 %
Date: 2026-01-27 08:51:18 Functions: 51 52 98.1 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : #line 2 "../src/kernel/none/mp_indep.c"
       2             : /* Copyright (C) 2000  The PARI group.
       3             : 
       4             : This file is part of the PARI/GP package.
       5             : 
       6             : PARI/GP is free software; you can redistribute it and/or modify it under the
       7             : terms of the GNU General Public License as published by the Free Software
       8             : Foundation; either version 2 of the License, or (at your option) any later
       9             : version. It is distributed in the hope that it will be useful, but WITHOUT
      10             : ANY WARRANTY WHATSOEVER.
      11             : 
      12             : Check the License for details. You should have received a copy of it, along
      13             : with the package; see the file 'COPYING'. If not, write to the Free Software
      14             : Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
      15             : 
      16             : /* Find c such that 1=c*b mod 2^BITS_IN_LONG, assuming b odd (unchecked) */
      17             : ulong
      18    60073956 : invmod2BIL(ulong b)
      19             : {
      20             :   static int tab[] = { 0, 0, 0, 8, 0, 8, 0, 0 };
      21    60073956 :   ulong x = b + tab[b & 7]; /* b^(-1) mod 2^4 */
      22             : 
      23             :   /* Newton applied to 1/x - b = 0 */
      24             : #ifdef LONG_IS_64BIT
      25    60073956 :   x = x*(2-b*x); /* one more pass necessary */
      26             : #endif
      27    60073956 :   x = x*(2-b*x);
      28    60073956 :   x = x*(2-b*x); return x*(2-b*x);
      29             : }
      30             : 
      31             : void
      32  1303920922 : affrr(GEN x, GEN y)
      33             : {
      34  1303920922 :   long i, lx, ly = lg(y);
      35  1303920922 :   if (!signe(x))
      36             :   {
      37      116541 :     y[1] = evalexpo(minss(expo(x), -bit_accuracy(ly)));
      38      116541 :     return;
      39             :   }
      40  1303804381 :   y[1] = x[1]; lx = lg(x);
      41  1303804381 :   if (lx <= ly)
      42             :   {
      43  7093268353 :     for (i=2; i<lx; i++) y[i]=x[i];
      44  1252487775 :     for (   ; i<ly; i++) y[i]=0;
      45  1102666270 :     return;
      46             :   }
      47  1094919337 :   for (i=2; i<ly; i++) y[i]=x[i];
      48             :   /* lx > ly: round properly */
      49   201138111 :   if (x[ly] & HIGHBIT) roundr_up_ip(y, ly);
      50             : }
      51             : 
      52             : GEN
      53    54609149 : trunc2nr(GEN x, long n)
      54             : {
      55             :   long ex;
      56    54609149 :   if (!signe(x)) return gen_0;
      57    54215725 :   ex = expo(x) + n; if (ex < 0) return gen_0;
      58    52025069 :   return mantissa2nr(x, ex - bit_prec(x) + 1);
      59             : }
      60             : 
      61             : /* x a t_REAL, x = i/2^e, i a t_INT */
      62             : GEN
      63    50437222 : mantissa_real(GEN x, long *e)
      64             : {
      65    50437222 :   *e = bit_prec(x)-1-expo(x);
      66    50437123 :   return mantissa2nr(x, 0);
      67             : }
      68             : 
      69             : GEN
      70  1085719184 : mului(ulong x, GEN y)
      71             : {
      72  1085719184 :   long s = signe(y);
      73             :   GEN z;
      74             : 
      75  1085719184 :   if (!s || !x) return gen_0;
      76   933636102 :   z = muluispec(x, y+2, lgefint(y)-2);
      77   933316091 :   setsigne(z,s); return z;
      78             : }
      79             : 
      80             : GEN
      81   603868596 : mulsi(long x, GEN y)
      82             : {
      83   603868596 :   long s = signe(y);
      84             :   GEN z;
      85             : 
      86   603868596 :   if (!s || !x) return gen_0;
      87   364844029 :   if (x<0) { s = -s; x = -x; }
      88   364844029 :   z = muluispec((ulong)x, y+2, lgefint(y)-2);
      89   364841595 :   setsigne(z,s); return z;
      90             : }
      91             : 
      92             : GEN
      93   201163927 : mulss(long x, long y)
      94             : {
      95             :   ulong p1;
      96             :   LOCAL_HIREMAINDER;
      97             : 
      98   201163927 :   if (!x || !y) return gen_0;
      99   200827417 :   if (x<0) {
     100      414030 :     x = -x;
     101      414030 :     if (y<0) { y = -y; p1 = mulll(x,y); return uutoi(hiremainder, p1); }
     102      299284 :     p1 = mulll(x,y); return uutoineg(hiremainder, p1);
     103             :   } else {
     104   200413387 :     if (y<0) { y = -y; p1 = mulll(x,y); return uutoineg(hiremainder, p1); }
     105   200369899 :     p1 = mulll(x,y); return uutoi(hiremainder, p1);
     106             :   }
     107             : }
     108             : GEN
     109      732223 : sqrs(long x)
     110             : {
     111             :   ulong p1;
     112             :   LOCAL_HIREMAINDER;
     113             : 
     114      732223 :   if (!x) return gen_0;
     115      730452 :   if (x<0) x = -x;
     116      730452 :   p1 = mulll(x,x); return uutoi(hiremainder, p1);
     117             : }
     118             : GEN
     119  4462646345 : muluu(ulong x, ulong y)
     120             : {
     121             :   ulong p1;
     122             :   LOCAL_HIREMAINDER;
     123             : 
     124  4462646345 :   if (!x || !y) return gen_0;
     125  4463452504 :   p1 = mulll(x,y); return uutoi(hiremainder, p1);
     126             : }
     127             : GEN
     128   591423861 : sqru(ulong x)
     129             : {
     130             :   ulong p1;
     131             :   LOCAL_HIREMAINDER;
     132             : 
     133   591423861 :   if (!x) return gen_0;
     134   591076874 :   p1 = mulll(x,x); return uutoi(hiremainder, p1);
     135             : }
     136             : 
     137             : /* assume x > 1, y != 0. Return u * y with sign s */
     138             : static GEN
     139   683373000 : mulur_2(ulong x, GEN y, long s)
     140             : {
     141   683373000 :   long m, sh, i, lx = lg(y), e = expo(y);
     142   683373000 :   GEN z = cgetg(lx, t_REAL);
     143             :   ulong garde;
     144             :   LOCAL_HIREMAINDER;
     145             : 
     146   682752103 :   y--; garde = mulll(x,y[lx]);
     147  3668877316 :   for (i=lx-1; i>=3; i--) z[i]=addmul(x,y[i]);
     148   682752103 :   z[2]=hiremainder; /* != 0 since y normalized and |x| > 1 */
     149   682752103 :   sh = bfffo(hiremainder); m = BITS_IN_LONG-sh;
     150   682752103 :   if (sh) shift_left(z,z, 2,lx-1, garde,sh);
     151   683908027 :   z[1] = evalsigne(s) | evalexpo(m+e);
     152   685498896 :   if ((garde << sh) & HIGHBIT) roundr_up_ip(z, lx);
     153   685290529 :   return z;
     154             : }
     155             : 
     156             : INLINE GEN
     157      387556 : mul0r(GEN x)
     158             : {
     159      387556 :   long l = realprec(x), e = expo(x);
     160      387556 :   e = (l > 0)? e - l: (e < 0? 2*e: 0);
     161      387556 :   return real_0_bit(e);
     162             : }
     163             : /* lg(x) > 2 */
     164             : INLINE GEN
     165      167718 : div0r(GEN x) {
     166      167718 :   long l = realprec(x), e = expo(x);
     167      167718 :   return real_0_bit(-l - e);
     168             : }
     169             : 
     170             : GEN
     171   109921231 : mulsr(long x, GEN y)
     172             : {
     173             :   long s;
     174             : 
     175   109921231 :   if (!x) return mul0r(y);
     176   109921189 :   s = signe(y);
     177   109921189 :   if (!s)
     178             :   {
     179      186166 :     if (x < 0) x = -x;
     180      186166 :     return real_0_bit( expo(y) + expu(x) );
     181             :   }
     182   109735023 :   if (x==1)  return rcopy(y);
     183   101360294 :   if (x==-1) return negr(y);
     184    98097641 :   if (x < 0)
     185    34993329 :     return mulur_2((ulong)-x, y, -s);
     186             :   else
     187    63104312 :     return mulur_2((ulong)x, y, s);
     188             : }
     189             : 
     190             : GEN
     191   894665800 : mulur(ulong x, GEN y)
     192             : {
     193             :   long s;
     194             : 
     195   894665800 :   if (!x) return mul0r(y);
     196   894665793 :   s = signe(y);
     197   894665793 :   if (!s) return real_0_bit( expo(y) + expu(x) );
     198   887952840 :   if (x==1) return rcopy(y);
     199   585048119 :   return mulur_2(x, y, s);
     200             : }
     201             : 
     202             : INLINE void
     203  3358956226 : mulrrz_end(GEN z, GEN hi, long lz, long sz, long ez, ulong garde)
     204             : {
     205             :   long i;
     206  3358956226 :   if (hi[2] < 0)
     207             :   {
     208  1549545648 :     if (z != hi)
     209  1680527471 :       for (i=2; i<lz ; i++) z[i] = hi[i];
     210  1549545648 :     ez++;
     211             :   }
     212             :   else
     213             :   {
     214  1809410578 :     shift_left(z,hi,2,lz-1, garde, 1);
     215  1812571080 :     garde <<= 1;
     216             :   }
     217  3362116728 :   if (garde & HIGHBIT)
     218             :   { /* round to nearest */
     219  1643567543 :     i = lz; do ((ulong*)z)[--i]++; while (i>1 && z[i]==0);
     220  1626513784 :     if (i == 1) { z[2] = (long)HIGHBIT; ez++; }
     221             :   }
     222  3362116728 :   z[1] = evalsigne(sz)|evalexpo(ez);
     223  3357946630 : }
     224             : /* mulrrz_end for lz = 3, minor simplifications. z[2]=hiremainder from mulll */
     225             : INLINE void
     226   695418811 : mulrrz_3end(GEN z, long sz, long ez, ulong garde)
     227             : {
     228   695418811 :   if (z[2] < 0)
     229             :   { /* z2 < (2^BIL-1)^2 / 2^BIL, hence z2+1 != 0 */
     230   326451969 :     if (garde & HIGHBIT) z[2]++; /* round properly */
     231   326451969 :     ez++;
     232             :   }
     233             :   else
     234             :   {
     235   368966842 :     uel(z,2) = (uel(z,2)<<1) | (garde>>(BITS_IN_LONG-1));
     236   368966842 :     if (garde & (1UL<<(BITS_IN_LONG-2)))
     237             :     {
     238   151792397 :       uel(z,2)++; /* round properly, z2+1 can overflow */
     239   151792397 :       if (!uel(z,2)) { uel(z,2) = HIGHBIT; ez++; }
     240             :     }
     241             :   }
     242   695418811 :   z[1] = evalsigne(sz)|evalexpo(ez);
     243   695391635 : }
     244             : 
     245             : /* set z <-- x^2 != 0, floating point multiplication.
     246             :  * lz = lg(z) = lg(x) */
     247             : INLINE void
     248   522871649 : sqrz_i(GEN z, GEN x, long lz)
     249             : {
     250   522871649 :   long ez = 2*expo(x);
     251             :   long i, j, lzz, p1;
     252             :   ulong garde;
     253             :   GEN x1;
     254             :   LOCAL_HIREMAINDER;
     255             :   LOCAL_OVERFLOW;
     256             : 
     257   522871649 :   if (lz > prec2lg(SQRR_SQRI_LIMIT))
     258             :   {
     259    39975522 :     pari_sp av = avma;
     260    39975522 :     GEN hi = sqrispec_mirror(x+2, lz-2);
     261    40192160 :     mulrrz_end(z, hi, lz, 1, ez, hi[lz]);
     262    40173946 :     set_avma(av); return;
     263             :   }
     264   482811550 :   if (lz == 3)
     265             :   {
     266   106889837 :     garde = mulll(x[2],x[2]);
     267   106889837 :     z[2] = hiremainder;
     268   106889837 :     mulrrz_3end(z, 1, ez, garde);
     269   106878346 :     return;
     270             :   }
     271             : 
     272   375921713 :   lzz = lz-1; p1 = x[lzz];
     273   375921713 :   if (p1)
     274             :   {
     275   341365632 :     (void)mulll(p1,x[3]);
     276   341365632 :     garde = addmul(p1,x[2]);
     277   341365632 :     z[lzz] = hiremainder;
     278             :   }
     279             :   else
     280             :   {
     281    34556081 :     garde = 0;
     282    34556081 :     z[lzz] = 0;
     283             :   }
     284  1775224138 :   for (j=lz-2, x1=x-j; j>=3; j--)
     285             :   {
     286  1399302425 :     p1 = x[j]; x1++;
     287  1399302425 :     if (p1)
     288             :     {
     289  1372866053 :       (void)mulll(p1,x1[lz+1]);
     290  1372866053 :       garde = addll(addmul(p1,x1[lz]), garde);
     291  7065329122 :       for (i=lzz; i>j; i--)
     292             :       {
     293  5692463069 :         hiremainder += overflow;
     294  5692463069 :         z[i] = addll(addmul(p1,x1[i]), z[i]);
     295             :       }
     296  1372866053 :       z[j] = hiremainder+overflow;
     297             :     }
     298    26436372 :     else z[j]=0;
     299             :   }
     300   375921713 :   p1 = x[2]; x1++;
     301   375921713 :   garde = addll(mulll(p1,x1[lz]), garde);
     302  2156052097 :   for (i=lzz; i>2; i--)
     303             :   {
     304  1780130384 :     hiremainder += overflow;
     305  1780130384 :     z[i] = addll(addmul(p1,x1[i]), z[i]);
     306             :   }
     307   375921713 :   z[2] = hiremainder+overflow;
     308   375921713 :   mulrrz_end(z, z, lz, 1, ez, garde);
     309             : }
     310             : 
     311             : /* lz "large" = lg(y) = lg(z), lg(x) > lz if flag = 1 and >= if flag = 0 */
     312             : INLINE void
     313    53633034 : mulrrz_int(GEN z, GEN x, GEN y, long lz, long flag, long sz)
     314             : {
     315    53633034 :   pari_sp av = avma;
     316    53633034 :   GEN hi = muliispec_mirror(y+2, x+2, lz+flag-2, lz-2);
     317    53633034 :   mulrrz_end(z, hi, lz, sz, expo(x)+expo(y), hi[lz]);
     318    53633034 :   set_avma(av);
     319    53633034 : }
     320             : 
     321             : /* lz = 3 */
     322             : INLINE void
     323   589091615 : mulrrz_3(GEN z, GEN x, GEN y, long flag, long sz)
     324             : {
     325             :   ulong garde;
     326             :   LOCAL_HIREMAINDER;
     327   589091615 :   if (flag)
     328             :   {
     329    72685701 :     (void)mulll(x[2],y[3]);
     330    72685701 :     garde = addmul(x[2],y[2]);
     331             :   }
     332             :   else
     333   516405914 :     garde = mulll(x[2],y[2]);
     334   589091615 :   z[2] = hiremainder;
     335   589091615 :   mulrrz_3end(z, sz, expo(x)+expo(y), garde);
     336   589137014 : }
     337             : 
     338             : /* set z <-- x*y, floating point multiplication. Trailing 0s for x are
     339             :  * treated efficiently (important application: mulir).
     340             :  * lz = lg(z) = lg(x) <= ly <= lg(y), sz = signe(z). flag = lg(x) < lg(y) */
     341             : INLINE void
     342  3470607013 : mulrrz_i(GEN z, GEN x, GEN y, long lz, long flag, long sz)
     343             : {
     344             :   long ez, i, j, lzz, p1;
     345             :   ulong garde;
     346             :   GEN y1;
     347             :   LOCAL_HIREMAINDER;
     348             :   LOCAL_OVERFLOW;
     349             : 
     350  3470607013 :   if (x == y) { sqrz_i(z,x,lz); return; }
     351  3470607013 :   if (lz > prec2lg(MULRR_MULII_LIMIT)) { mulrrz_int(z,x,y,lz,flag,sz); return; }
     352  3418816391 :   if (lz == 3) { mulrrz_3(z,x,y,flag,sz); return; }
     353  2829725701 :   ez = expo(x) + expo(y);
     354  2829725701 :   if (flag) { (void)mulll(x[2],y[lz]); garde = hiremainder; } else garde = 0;
     355  2829725701 :   lzz=lz-1; p1=x[lzz];
     356  2829725701 :   if (p1)
     357             :   {
     358  2637216647 :     (void)mulll(p1,y[3]);
     359  2637216647 :     garde = addll(addmul(p1,y[2]), garde);
     360  2637216647 :     z[lzz] = overflow+hiremainder;
     361             :   }
     362   192509054 :   else z[lzz]=0;
     363 13039620287 :   for (j=lz-2, y1=y-j; j>=3; j--)
     364             :   {
     365 10209894586 :     p1 = x[j]; y1++;
     366 10209894586 :     if (p1)
     367             :     {
     368  9914829701 :       (void)mulll(p1,y1[lz+1]);
     369  9914829701 :       garde = addll(addmul(p1,y1[lz]), garde);
     370 60959191967 :       for (i=lzz; i>j; i--)
     371             :       {
     372 51044362266 :         hiremainder += overflow;
     373 51044362266 :         z[i] = addll(addmul(p1,y1[i]), z[i]);
     374             :       }
     375  9914829701 :       z[j] = hiremainder+overflow;
     376             :     }
     377   295064885 :     else z[j]=0;
     378             :   }
     379  2829725701 :   p1 = x[2]; y1++;
     380  2829725701 :   garde = addll(mulll(p1,y1[lz]), garde);
     381 15928637323 :   for (i=lzz; i>2; i--)
     382             :   {
     383 13098911622 :     hiremainder += overflow;
     384 13098911622 :     z[i] = addll(addmul(p1,y1[i]), z[i]);
     385             :   }
     386  2829725701 :   z[2] = hiremainder+overflow;
     387  2829725701 :   mulrrz_end(z, z, lz, sz, ez, garde);
     388             : }
     389             : 
     390             : GEN
     391  3698021062 : mulrr(GEN x, GEN y)
     392             : {
     393             :   long flag, ly, lz, sx, sy;
     394             :   GEN z;
     395             : 
     396  3698021062 :   if (x == y) return sqrr(x);
     397  3696568320 :   sx = signe(x); if (!sx) return real_0_bit(expo(x) + expo(y));
     398  3446927633 :   sy = signe(y); if (!sy) return real_0_bit(expo(x) + expo(y));
     399  3416782201 :   if (sy < 0) sx = -sx;
     400  3416782201 :   lz = lg(x);
     401  3416782201 :   ly = lg(y);
     402  3416782201 :   if (lz > ly) { lz = ly; swap(x, y); flag = 1; } else flag = (lz != ly);
     403  3416782201 :   z = cgetg(lz, t_REAL);
     404  3412775286 :   mulrrz_i(z, x,y, lz,flag, sx);
     405  3419340485 :   return z;
     406             : }
     407             : 
     408             : GEN
     409   553434227 : sqrr(GEN x)
     410             : {
     411   553434227 :   long lz, sx = signe(x);
     412             :   GEN z;
     413             : 
     414   553434227 :   if (!sx) return real_0_bit(2*expo(x));
     415   523363535 :   lz = lg(x); z = cgetg(lz, t_REAL);
     416   522893602 :   sqrz_i(z, x, lz);
     417   523651804 :   return z;
     418             : }
     419             : 
     420             : GEN
     421   949639914 : mulir(GEN x, GEN y)
     422             : {
     423   949639914 :   long sx = signe(x), sy;
     424   949639914 :   if (!sx) return mul0r(y);
     425   949252406 :   if (lgefint(x) == 3) {
     426   842709237 :     GEN z = mulur(uel(x,2), y);
     427   844061324 :     if (sx < 0) togglesign(z);
     428   843840448 :     return z;
     429             :   }
     430   106543169 :   sy = signe(y);
     431   106543169 :   if (!sy) return real_0_bit(expi(x) + expo(y));
     432   105859480 :   if (sy < 0) sx = -sx;
     433             :   {
     434   105859480 :     long lz = lg(y), lx = lgefint(x);
     435   105859480 :     GEN hi, z = cgetg(lz, t_REAL);
     436   105470676 :     pari_sp av = avma;
     437   105470676 :     if (lx < (lz>>1) || (lx < lz && lz > prec2lg(MULRR_MULII_LIMIT)))
     438             :     { /* size mantissa of x < half size of mantissa z, or lx < lz so large
     439             :        * that mulrr will call mulii anyway: mulii */
     440    47814476 :       x = itor(x, lg2prec(lx));
     441    47433209 :       hi = muliispec_mirror(y+2, x+2, lz-2, lx-2);
     442    48990523 :       mulrrz_end(z, hi, lz, sx, expo(x)+expo(y), hi[lz]);
     443             :     }
     444             :     else /* dubious: complete x with 0s and call mulrr */
     445    57628188 :       mulrrz_i(z, itor(x, lg2prec(lz)), y, lz, 0, sx);
     446   106951350 :     set_avma(av); return z;
     447             :   }
     448             : }
     449             : 
     450             : /* x + y*z, generic. If lgefint(z) <= 3, caller should use faster variants  */
     451             : static GEN
     452    90443146 : addmulii_gen(GEN x, GEN y, GEN z, long lz)
     453             : {
     454    90443146 :   long lx = lgefint(x), ly;
     455             :   pari_sp av;
     456             :   GEN t;
     457    90443146 :   if (lx == 2) return mulii(z,y);
     458    87661043 :   ly = lgefint(y);
     459    87661043 :   if (ly == 2) return icopy(x); /* y = 0, wasteful copy */
     460    87051390 :   av = avma; (void)new_chunk(lx+ly+lz); /*HACK*/
     461    87051847 :   t = mulii(z, y);
     462    87045191 :   set_avma(av); return addii(t,x);
     463             : }
     464             : /* x + y*z, lgefint(z) == 3 */
     465             : static GEN
     466   447031042 : addmulii_lg3(GEN x, GEN y, GEN z)
     467             : {
     468   447031042 :   long s = signe(z), lx, ly;
     469   447031042 :   ulong w = z[2];
     470             :   pari_sp av;
     471             :   GEN t;
     472   447031042 :   if (w == 1) return (s > 0)? addii(x,y): subii(x,y); /* z = +- 1 */
     473   369074206 :   lx = lgefint(x);
     474   369074206 :   ly = lgefint(y);
     475   369074206 :   if (lx == 2)
     476             :   { /* x = 0 */
     477    67643251 :     if (ly == 2) return gen_0;
     478    37026736 :     t = muluispec(w, y+2, ly-2);
     479    37026878 :     if (signe(y) < 0) s = -s;
     480    37026878 :     setsigne(t, s); return t;
     481             :   }
     482   301430955 :   if (ly == 2) return icopy(x); /* y = 0, wasteful copy */
     483   262152782 :   av = avma; (void)new_chunk(1+lx+ly);/*HACK*/
     484   262194087 :   t = muluispec(w, y+2, ly-2);
     485   262181337 :   if (signe(y) < 0) s = -s;
     486   262181337 :   setsigne(t, s);
     487   262181337 :   set_avma(av); return addii(x,t);
     488             : }
     489             : /* x + y*z */
     490             : GEN
     491   162842329 : addmulii(GEN x, GEN y, GEN z)
     492             : {
     493   162842329 :   long lz = lgefint(z);
     494   162842329 :   switch(lz)
     495             :   {
     496      743218 :     case 2: return icopy(x); /* z = 0, wasteful copy */
     497   121953227 :     case 3: return addmulii_lg3(x, y, z);
     498    40145884 :     default:return addmulii_gen(x, y, z, lz);
     499             :   }
     500             : }
     501             : /* x + y*z, returns x itself and not a copy when y*z = 0 */
     502             : GEN
     503  1543510337 : addmulii_inplace(GEN x, GEN y, GEN z)
     504             : {
     505             :   long lz;
     506  1543510337 :   if (lgefint(y) == 2) return x;
     507   375283248 :   lz = lgefint(z);
     508   375283248 :   switch(lz)
     509             :   {
     510       17820 :     case 2: return x;
     511   325086412 :     case 3: return addmulii_lg3(x, y, z);
     512    50179016 :     default:return addmulii_gen(x, y, z, lz);
     513             :   }
     514             : }
     515             : 
     516             : /* written by Bruno Haible following an idea of Robert Harley */
     517             : long
     518  2257051368 : vals(ulong z)
     519             : {
     520             :   static char tab[64]={-1,0,1,12,2,6,-1,13,3,-1,7,-1,-1,-1,-1,14,10,4,-1,-1,8,-1,-1,25,-1,-1,-1,-1,-1,21,27,15,31,11,5,-1,-1,-1,-1,-1,9,-1,-1,24,-1,-1,20,26,30,-1,-1,-1,-1,23,-1,19,29,-1,22,18,28,17,16,-1};
     521             : #ifdef LONG_IS_64BIT
     522             :   long s;
     523             : #endif
     524             : 
     525  2257051368 :   if (!z) return -1;
     526             : #ifdef LONG_IS_64BIT
     527  2022635296 :   if (! (z&0xffffffff)) { s = 32; z >>=32; } else s = 0;
     528             : #endif
     529  2257051368 :   z |= ~z + 1;
     530  2257051368 :   z += z << 4;
     531  2257051368 :   z += z << 6;
     532  2257051368 :   z ^= z << 16; /* or  z -= z<<16 */
     533             : #ifdef LONG_IS_64BIT
     534  2022635296 :   return s + tab[(z&0xffffffff)>>26];
     535             : #else
     536   234416072 :   return tab[z>>26];
     537             : #endif
     538             : }
     539             : 
     540             : GEN
     541         175 : divsi(long x, GEN y)
     542             : {
     543         175 :   long p1, s = signe(y);
     544             :   LOCAL_HIREMAINDER;
     545             : 
     546         175 :   if (!s) pari_err_INV("divsi",gen_0);
     547         175 :   if (!x || lgefint(y)>3 || ((long)y[2])<0) return gen_0;
     548         175 :   hiremainder=0; p1=divll(labs(x),y[2]);
     549         175 :   if (x<0) { hiremainder = -((long)hiremainder); p1 = -p1; }
     550         175 :   if (s<0) p1 = -p1;
     551         175 :   return stoi(p1);
     552             : }
     553             : 
     554             : GEN
     555     3453776 : divir(GEN x, GEN y)
     556             : {
     557             :   GEN z;
     558     3453776 :   long ly = lg(y), lx = lgefint(x);
     559             :   pari_sp av;
     560             : 
     561     3453776 :   if (ly == 2) pari_err_INV("divir",y);
     562     3453777 :   if (lx == 2) return div0r(y);
     563     3286059 :   if (lx == 3) {
     564     1940458 :     z = divur(x[2], y);
     565     1940455 :     if (signe(x) < 0) togglesign(z);
     566     1940455 :     return z;
     567             :   }
     568     1345601 :   z = cgetg(ly, t_REAL); av = avma;
     569     1345601 :   affrr(divrr(itor(x, lg2prec(ly+1)), y), z);
     570     1345601 :   set_avma(av); return z;
     571             : }
     572             : 
     573             : GEN
     574     2406063 : divur(ulong x, GEN y)
     575             : {
     576             :   pari_sp av;
     577     2406063 :   long p = realprec(y);
     578             :   GEN z;
     579             : 
     580     2406063 :   if (p == 0) pari_err_INV("divur",y);
     581     2406063 :   if (!x) return div0r(y);
     582     2406063 :   if (p > INVNEWTON_LIMIT) {
     583         183 :     av = avma; z = invr(y);
     584         183 :     if (x == 1) return z;
     585         183 :     return gc_leaf(av, mulur(x, z));
     586             :   }
     587     2405880 :   z = cgetr(p); av = avma;
     588     2405869 :   affrr(divrr(utor(x, p + BITS_IN_LONG), y), z);
     589     2405878 :   set_avma(av); return z;
     590             : }
     591             : 
     592             : GEN
     593         798 : divsr(long x, GEN y)
     594             : {
     595             :   pari_sp av;
     596         798 :   long p = realprec(y);
     597             :   GEN z;
     598             : 
     599         798 :   if (p == 0) pari_err_INV("divsr",y);
     600         798 :   if (!x) return div0r(y);
     601         798 :   if (p > INVNEWTON_LIMIT) {
     602           0 :     av = avma; z = invr(y);
     603           0 :     if (x == 1) return z;
     604           0 :     if (x ==-1) { togglesign(z); return z; }
     605           0 :     return gc_leaf(av, mulsr(x, z));
     606             :   }
     607         798 :   z = cgetr(p); av = avma;
     608         798 :   affrr(divrr(stor(x,p + BITS_IN_LONG), y), z);
     609         798 :   set_avma(av); return z;
     610             : }
     611             : 
     612             : /* returns 1/y, assume y != 0 */
     613             : static GEN
     614    59548370 : invr_basecase(GEN y)
     615             : {
     616    59548370 :   long p = realprec(y);
     617    59548370 :   GEN z = cgetr(p);
     618    59540681 :   pari_sp av = avma;
     619    59540681 :   affrr(divrr(real_1(p + BITS_IN_LONG), y), z);
     620    59548037 :   set_avma(av); return z;
     621             : }
     622             : /* returns 1/b, Newton iteration */
     623             : GEN
     624    59549204 : invr(GEN b)
     625             : {
     626    59549204 :   const long s = 6;
     627    59549204 :   long i, p, l = lg(b);
     628             :   GEN x, a;
     629             :   ulong mask;
     630             : 
     631    59549204 :   if (l <= maxss(prec2lg(INVNEWTON_LIMIT), (1L<<s) + 2)) {
     632    59546731 :     if (l == 2) pari_err_INV("invr",b);
     633    59546731 :     return invr_basecase(b);
     634             :   }
     635        1959 :   mask = quadratic_prec_mask(l-2);
     636       13713 :   for(i=0, p=1; i<s; i++) { p <<= 1; if (mask & 1) p--; mask >>= 1; }
     637        1959 :   x = cgetg(l, t_REAL);
     638        1959 :   a = rcopy(b); a[1] = _evalexpo(0) | evalsigne(1);
     639        1959 :   affrr(invr_basecase(rtor(a, lg2prec(p+2))), x);
     640        4890 :   while (mask > 1)
     641             :   {
     642        2931 :     p <<= 1; if (mask & 1) p--;
     643        2931 :     mask >>= 1;
     644        2931 :     setlg(a, p + 2);
     645        2931 :     setlg(x, p + 2);
     646             :     /* TODO: mulrr(a,x) should be a half product (the higher half is known).
     647             :      * mulrr(x, ) already is */
     648        2931 :     affrr(addrr(x, mulrr(x, subsr(1, mulrr(a,x)))), x);
     649        2931 :     set_avma((pari_sp)a);
     650             :   }
     651        1959 :   x[1] = (b[1] & SIGNBITS) | evalexpo(expo(x)-expo(b));
     652        1959 :   set_avma((pari_sp)x); return x;
     653             : }
     654             : 
     655             : GEN
     656  2954972017 : modii(GEN x, GEN y)
     657             : {
     658  2954972017 :   switch(signe(x))
     659             :   {
     660   470392978 :     case 0: return gen_0;
     661  1969815354 :     case 1: return remii(x,y);
     662   514763685 :     default:
     663             :     {
     664   514763685 :       pari_sp av = avma;
     665   514763685 :       (void)new_chunk(lgefint(y));
     666   517453480 :       x = remii(x,y); set_avma(av);
     667   517494635 :       if (x==gen_0) return x;
     668   478042803 :       return subiispec(y+2,x+2,lgefint(y)-2,lgefint(x)-2);
     669             :     }
     670             :   }
     671             : }
     672             : 
     673             : GEN
     674     9502748 : divrs(GEN x, long y)
     675             : {
     676             :   GEN z;
     677     9502748 :   if (y < 0)
     678             :   {
     679     5445214 :     z = divru(x, (ulong)-y);
     680     5445208 :     togglesign(z);
     681             :   }
     682             :   else
     683     4057534 :     z = divru(x, (ulong)y);
     684     9502737 :   return z;
     685             : }
     686             : 
     687             : GEN
     688  1065490648 : divru(GEN x, ulong y)
     689             : {
     690  1065490648 :   long i, lx, sh, e, s = signe(x);
     691             :   ulong garde;
     692             :   GEN z;
     693             :   LOCAL_HIREMAINDER;
     694             : 
     695  1065490648 :   if (!y) pari_err_INV("divru",gen_0);
     696  1065588587 :   if (!s) return real_0_bit(expo(x) - expu(y));
     697  1064963084 :   if (!(y & (y-1))) /* power of 2 */
     698             :   {
     699    88788178 :     if (y == 1) return rcopy(x);
     700    86174815 :     return shiftr(x, -expu(y));
     701             :   }
     702   976174906 :   e = expo(x);
     703   976174906 :   lx = lg(x);
     704   976174906 :   z = cgetg(lx, t_REAL);
     705   975453180 :   if (lx == 3)
     706             :   {
     707   155504868 :     if (y <= uel(x,2))
     708             :     {
     709   155504664 :       hiremainder = 0;
     710   155504664 :       z[2] = divll(x[2],y);
     711             :       /* we may have hiremainder != 0 ==> garde */
     712   155504664 :       garde = divll(0,y);
     713             :     }
     714             :     else
     715             :     {
     716         204 :       hiremainder = x[2];
     717         204 :       z[2] = divll(0,y);
     718         204 :       garde = hiremainder;
     719         204 :       e -= BITS_IN_LONG;
     720             :     }
     721             :   }
     722             :   else
     723             :   {
     724   819948312 :     ulong yp = get_Fl_red(y);
     725   820669795 :     if (y <= uel(x,2))
     726             :     {
     727   820683649 :       hiremainder = 0;
     728  7159123560 :       for (i=2; i<lx; i++) z[i] = divll_pre(x[i],y,yp);
     729             :       /* we may have hiremainder != 0 ==> garde */
     730   824598377 :       garde = divll_pre(0,y,yp);
     731             :     }
     732             :     else
     733             :     {
     734        3232 :       long l = lx-1;
     735        3232 :       hiremainder = x[2];
     736       56829 :       for (i=2; i<l; i++) z[i] = divll_pre(x[i+1],y,yp);
     737        3232 :       z[i] = divll_pre(0,y,yp);
     738        3766 :       garde = hiremainder;
     739        3766 :       e -= BITS_IN_LONG;
     740             :     }
     741             :   }
     742   978735575 :   sh=bfffo(z[2]); /* z[2] != 0 */
     743   978735575 :   if (sh) shift_left(z,z, 2,lx-1, garde,sh);
     744   978780128 :   z[1] = evalsigne(s) | evalexpo(e-sh);
     745   977659810 :   if ((garde << sh) & HIGHBIT) roundr_up_ip(z, lx);
     746   977561580 :   return z;
     747             : }
     748             : 
     749             : GEN
     750   128530817 : truedvmdii(GEN x, GEN y, GEN *z)
     751             : {
     752             :   pari_sp av;
     753             :   GEN r, q;
     754   128530817 :   if (!is_bigint(y)) return truedvmdis(x, itos(y), z);
     755     4205278 :   if (z == ONLY_REM) return modii(x,y);
     756             : 
     757     4205278 :   av = avma;
     758     4205278 :   q = dvmdii(x,y,&r); /* assume that r is last on stack */
     759     4205278 :   switch(signe(r))
     760             :   {
     761      699862 :     case 0:
     762      699862 :       if (z) *z = gen_0;
     763      699862 :       return q;
     764     2475739 :     case 1:
     765     2475739 :       if (z) *z = r; else cgiv(r);
     766     2475739 :       return q;
     767     1029677 :     case -1: break;
     768             :   }
     769     1029677 :   q = addis(q, -signe(y));
     770     1029677 :   if (!z) return gc_INT(av, q);
     771             : 
     772      853579 :   *z = subiispec(y+2,r+2, lgefint(y)-2,lgefint(r)-2);
     773      853579 :   return gc_all_unsafe(av,(pari_sp)r,2,&q,z);
     774             : }
     775             : GEN
     776   126411668 : truedvmdis(GEN x, long y, GEN *z)
     777             : {
     778   126411668 :   pari_sp av = avma;
     779             :   long r;
     780             :   GEN q;
     781             : 
     782   126411668 :   if (z == ONLY_REM) return modis(x, y);
     783   126411668 :   q = divis_rem(x,y,&r);
     784             : 
     785   126388174 :   if (r >= 0)
     786             :   {
     787   115209239 :     if (z) *z = utoi(r);
     788   115209062 :     return q;
     789             :   }
     790    11178935 :   q = gc_INT(av, addis(q, (y < 0)? 1: -1));
     791    11191372 :   if (z) *z = utoi(r + labs(y));
     792    11191358 :   return q;
     793             : }
     794             : GEN
     795     6202031 : truedvmdsi(long x, GEN y, GEN *z)
     796             : {
     797             :   long q, r;
     798     6202031 :   if (z == ONLY_REM) return modsi(x, y);
     799     6202031 :   q = sdivsi_rem(x,y,&r);
     800     6202031 :   if (r >= 0) {
     801     6202031 :     if (z) *z = utoi(r);
     802     6202031 :     return stoi(q);
     803             :   }
     804           0 :   q = q - signe(y);
     805           0 :   if (!z) return stoi(q);
     806             : 
     807           0 :   *z = subiuspec(y+2,(ulong)-r, lgefint(y)-2);
     808           0 :   return stoi(q);
     809             : }
     810             : 
     811             : /* 2^n = shifti(gen_1, n) */
     812             : GEN
     813    96083193 : int2n(long n) {
     814             :   long i, m, l;
     815             :   GEN z;
     816    96083193 :   if (n < 0) return gen_0;
     817    96070132 :   if (n == 0) return gen_1;
     818             : 
     819    92589731 :   l = dvmdsBIL(n, &m) + 3;
     820    92589891 :   z = cgetipos(l);
     821   503651631 :   for (i = 2; i < l; i++) z[i] = 0;
     822    92579875 :   *int_MSW(z) = 1UL << m; return z;
     823             : }
     824             : /* To avoid problems when 2^(BIL-1) < n. Overflow cleanly, where int2n
     825             :  * returns gen_0 */
     826             : GEN
     827    24477285 : int2u(ulong n) {
     828             :   ulong i, m, l;
     829             :   GEN z;
     830    24477285 :   if (n == 0) return gen_1;
     831             : 
     832    24477285 :   l = dvmduBIL(n, &m) + 3;
     833    24477449 :   z = cgetipos(l);
     834    49336984 :   for (i = 2; i < l; i++) z[i] = 0;
     835    24476843 :   *int_MSW(z) = 1UL << m; return z;
     836             : }
     837             : /* 2^n - 1 */
     838             : GEN
     839        8762 : int2um1(ulong n) {
     840             :   ulong i, m, l;
     841             :   GEN z;
     842        8762 :   if (n == 0) return gen_0;
     843             : 
     844        8762 :   l = dvmduBIL(n, &m);
     845        8762 :   l += m? 3: 2;
     846        8762 :   z = cgetipos(l);
     847       17664 :   for (i = 2; i < l; i++) z[i] = ~0UL;
     848        8762 :   if (m) *int_MSW(z) = (1UL << m) - 1;
     849        8762 :   return z;
     850             : }
     851             : 
     852             : GEN
     853  2057115308 : shifti(GEN x, long n)
     854             : {
     855  2057115308 :   long s = signe(x);
     856             :   GEN y;
     857             : 
     858  2057115308 :   if(s == 0) return gen_0;
     859  1769621574 :   y = shiftispec(x + 2, lgefint(x) - 2, n);
     860  1769530612 :   if (signe(y)) setsigne(y, s);
     861  1769530612 :   return y;
     862             : }
     863             : 
     864             : /* actual operations will take place on a+2 and b+2: we strip the codewords */
     865             : GEN
     866 20525011745 : mulii(GEN a,GEN b)
     867             : {
     868             :   long sa,sb;
     869             :   GEN z;
     870             : 
     871 20525011745 :   sa=signe(a); if (!sa) return gen_0;
     872 13870780069 :   sb=signe(b); if (!sb) return gen_0;
     873 10191889385 :   if (sb<0) sa = -sa;
     874 10191889385 :   z = muliispec(a+2,b+2, lgefint(a)-2,lgefint(b)-2);
     875 10223929489 :   setsigne(z,sa); return z;
     876             : }
     877             : 
     878             : GEN
     879  1853563745 : sqri(GEN a) { return sqrispec(a+2, lgefint(a)-2); }
     880             : 
     881             : /* sqrt()'s result may be off by 1 when a is not representable exactly as a
     882             :  * double [64bit machine] */
     883             : ulong
     884   228927988 : usqrt(ulong a)
     885             : {
     886   228927988 :   ulong x = (ulong)sqrt((double)a);
     887             : #ifdef LONG_IS_64BIT
     888   195548599 :   if (x > LOWMASK || x*x > a) x--;
     889             : #endif
     890   228927988 :   return x;
     891             : }
     892             : 
     893             : /********************************************************************/
     894             : /**                                                                **/
     895             : /**              EXPONENT / CONVERSION t_REAL --> double           **/
     896             : /**                                                                **/
     897             : /********************************************************************/
     898             : 
     899             : #ifdef LONG_IS_64BIT
     900             : long
     901    21911080 : dblexpo(double x)
     902             : {
     903             :   union { double f; ulong i; } fi;
     904    21911080 :   const int mant_len = 52;  /* mantissa bits (excl. hidden bit) */
     905    21911080 :   const int exp_mid = 0x3ff;/* exponent bias */
     906             : 
     907    21911080 :   if (x==0.) return -exp_mid;
     908    21911068 :   fi.f = x;
     909    21911068 :   return ((fi.i & (HIGHBIT-1)) >> mant_len) - exp_mid;
     910             : }
     911             : 
     912             : ulong
     913           0 : dblmantissa(double x)
     914             : {
     915             :   union { double f; ulong i; } fi;
     916           0 :   const int expo_len = 11; /* number of bits of exponent */
     917             : 
     918           0 :   if (x==0.) return 0;
     919           0 :   fi.f = x;
     920           0 :   return (fi.i << expo_len) | HIGHBIT;
     921             : }
     922             : 
     923             : GEN
     924     9873852 : dbltor(double x)
     925             : {
     926             :   GEN z;
     927             :   long e;
     928             :   union { double f; ulong i; } fi;
     929     9873852 :   const int mant_len = 52;  /* mantissa bits (excl. hidden bit) */
     930     9873852 :   const int exp_mid = 0x3ff;/* exponent bias */
     931     9873852 :   const int expo_len = 11; /* number of bits of exponent */
     932             : 
     933     9873852 :   if (x==0.) return real_0_bit(-exp_mid);
     934     9868238 :   fi.f = x; z = cgetr(DEFAULTPREC);
     935             :   {
     936     9866445 :     const ulong a = fi.i;
     937             :     ulong A;
     938     9866445 :     e = ((a & (HIGHBIT-1)) >> mant_len) - exp_mid;
     939     9866445 :     if (e == exp_mid+1) pari_err_OVERFLOW("dbltor [NaN or Infinity]");
     940     9866548 :     A = a << expo_len;
     941     9866548 :     if (e == -exp_mid)
     942             :     { /* unnormalized values */
     943           0 :       int sh = bfffo(A);
     944           0 :       e -= sh-1;
     945           0 :       z[2] = A << sh;
     946             :     }
     947             :     else
     948     9866548 :       z[2] = HIGHBIT | A;
     949     9866548 :     z[1] = _evalexpo(e) | evalsigne(x<0? -1: 1);
     950             :   }
     951     9866548 :   return z;
     952             : }
     953             : 
     954             : double
     955   228125825 : rtodbl(GEN x)
     956             : {
     957   228125825 :   long ex,s=signe(x);
     958             :   ulong a;
     959             :   union { double f; ulong i; } fi;
     960   228125825 :   const int mant_len = 52;  /* mantissa bits (excl. hidden bit) */
     961   228125825 :   const int exp_mid = 0x3ff;/* exponent bias */
     962   228125825 :   const int expo_len = 11; /* number of bits of exponent */
     963             : 
     964   228125825 :   if (!s || (ex=expo(x)) < - exp_mid) return 0.0;
     965             : 
     966             :   /* start by rounding to closest */
     967   201061858 :   a = (x[2] & (HIGHBIT-1)) + 0x400;
     968   201061858 :   if (a & HIGHBIT) { ex++; a=0; }
     969   201061858 :   if (ex >= exp_mid) pari_err_OVERFLOW("t_REAL->double conversion");
     970   201058967 :   fi.i = ((ex + exp_mid) << mant_len) | (a >> expo_len);
     971   201058967 :   if (s<0) fi.i |= HIGHBIT;
     972   201058967 :   return fi.f;
     973             : }
     974             : 
     975             : #else /* LONG_IS_64BIT */
     976             : 
     977             : #if   PARI_DOUBLE_FORMAT == 1
     978             : #  define INDEX0 1
     979             : #  define INDEX1 0
     980             : #elif PARI_DOUBLE_FORMAT == 0
     981             : #  define INDEX0 0
     982             : #  define INDEX1 1
     983             : #endif
     984             : 
     985             : long
     986     3727289 : dblexpo(double x)
     987             : {
     988             :   union { double f; ulong i[2]; } fi;
     989     3727289 :   const int mant_len = 52;  /* mantissa bits (excl. hidden bit) */
     990     3727289 :   const int exp_mid = 0x3ff;/* exponent bias */
     991     3727289 :   const int shift = mant_len-32;
     992             : 
     993     3727289 :   if (x==0.) return -exp_mid;
     994     3727287 :   fi.f = x;
     995             :   {
     996     3727287 :     const ulong a = fi.i[INDEX0];
     997     3727287 :     return ((a & (HIGHBIT-1)) >> shift) - exp_mid;
     998             :   }
     999             : }
    1000             : 
    1001             : ulong
    1002           0 : dblmantissa(double x)
    1003             : {
    1004             :   union { double f; ulong i[2]; } fi;
    1005           0 :   const int expo_len = 11; /* number of bits of exponent */
    1006             : 
    1007           0 :   if (x==0.) return 0;
    1008           0 :   fi.f = x;
    1009             :   {
    1010           0 :     const ulong a = fi.i[INDEX0];
    1011           0 :     const ulong b = fi.i[INDEX1];
    1012           0 :     return HIGHBIT | b >> (BITS_IN_LONG-expo_len) | (a << expo_len);
    1013             :   }
    1014             : }
    1015             : 
    1016             : GEN
    1017     1842360 : dbltor(double x)
    1018             : {
    1019             :   GEN z;
    1020             :   long e;
    1021             :   union { double f; ulong i[2]; } fi;
    1022     1842360 :   const int mant_len = 52;  /* mantissa bits (excl. hidden bit) */
    1023     1842360 :   const int exp_mid = 0x3ff;/* exponent bias */
    1024     1842360 :   const int expo_len = 11; /* number of bits of exponent */
    1025     1842360 :   const int shift = mant_len-32;
    1026             : 
    1027     1842360 :   if (x==0.) return real_0_bit(-exp_mid);
    1028     1841437 :   fi.f = x; z = cgetr(DEFAULTPREC);
    1029             :   {
    1030     1841437 :     const ulong a = fi.i[INDEX0];
    1031     1841437 :     const ulong b = fi.i[INDEX1];
    1032             :     ulong A, B;
    1033     1841437 :     e = ((a & (HIGHBIT-1)) >> shift) - exp_mid;
    1034     1841437 :     if (e == exp_mid+1) pari_err_OVERFLOW("dbltor [NaN or Infinity]");
    1035     1841437 :     A = b >> (BITS_IN_LONG-expo_len) | (a << expo_len);
    1036     1841437 :     B = b << expo_len;
    1037     1841437 :     if (e == -exp_mid)
    1038             :     { /* unnormalized values */
    1039             :       int sh;
    1040           0 :       if (A)
    1041             :       {
    1042           0 :         sh = bfffo(A);
    1043           0 :         e -= sh-1;
    1044           0 :         z[2] = (A << sh) | (B >> (32-sh));
    1045           0 :         z[3] = B << sh;
    1046             :       }
    1047             :       else
    1048             :       {
    1049           0 :         sh = bfffo(B); /* B != 0 */
    1050           0 :         e -= sh-1 + 32;
    1051           0 :         z[2] = B << sh;
    1052           0 :         z[3] = 0;
    1053             :       }
    1054             :     }
    1055             :     else
    1056             :     {
    1057     1841437 :       z[3] = B;
    1058     1841437 :       z[2] = HIGHBIT | A;
    1059             :     }
    1060     1841437 :     z[1] = _evalexpo(e) | evalsigne(x<0? -1: 1);
    1061             :   }
    1062     1841437 :   return z;
    1063             : }
    1064             : 
    1065             : double
    1066    39787233 : rtodbl(GEN x)
    1067             : {
    1068    39787233 :   long ex,s=signe(x),lx=lg(x);
    1069             :   ulong a,b,k;
    1070             :   union { double f; ulong i[2]; } fi;
    1071    39787233 :   const int mant_len = 52;  /* mantissa bits (excl. hidden bit) */
    1072    39787233 :   const int exp_mid = 0x3ff;/* exponent bias */
    1073    39787233 :   const int expo_len = 11; /* number of bits of exponent */
    1074    39787233 :   const int shift = mant_len-32;
    1075             : 
    1076    39787233 :   if (!s || (ex=expo(x)) < - exp_mid) return 0.0;
    1077             : 
    1078             :   /* start by rounding to closest */
    1079    35024861 :   a = x[2] & (HIGHBIT-1);
    1080    35024861 :   if (lx > 3)
    1081             :   {
    1082    34897758 :     b = x[3] + 0x400UL; if (b < 0x400UL) a++;
    1083    34897758 :     if (a & HIGHBIT) { ex++; a=0; }
    1084             :   }
    1085      127103 :   else b = 0;
    1086    35024861 :   if (ex >= exp_mid) pari_err_OVERFLOW("t_REAL->double conversion");
    1087    35024861 :   ex += exp_mid;
    1088    35024861 :   k = (a >> expo_len) | (ex << shift);
    1089    35024861 :   if (s<0) k |= HIGHBIT;
    1090    35024861 :   fi.i[INDEX0] = k;
    1091    35024861 :   fi.i[INDEX1] = (a << (BITS_IN_LONG-expo_len)) | (b >> expo_len);
    1092    35024861 :   return fi.f;
    1093             : }
    1094             : #endif /* LONG_IS_64BIT */
    1095             : 

Generated by: LCOV version 1.16