summaryrefslogtreecommitdiff
path: root/mpz/get_d.c
blob: 7a17c86515bc36aaf9adbf5aba3e8ce2185211d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* double mpz_get_d (mpz_t src) -- Return the double approximation to SRC.

Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc.

This file is part of the GNU MP Library.

The GNU MP Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.

The GNU MP Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
License for more details.

You should have received a copy of the GNU Lesser General Public License
along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA. */

#include "gmp.h"
#include "gmp-impl.h"
#include "longlong.h"


/* FIXME: Would prefer to inline this on all compilers, not just those with
   "inline".  */
static inline int
mpn_zero_p (mp_srcptr p, mp_size_t n)
{
  mp_size_t i;

  for (i = 0; i < n; i++)
    if (p[i] != 0)
      return 0;

  return 1;
}


double
mpz_get_d (mpz_srcptr src)
{
  double res;
  mp_size_t size;
  int negative;
  mp_ptr qp;
  mp_limb_t hz, lz;
  int cnt;

  size = SIZ(src);
  if (size == 0)
    return 0.0;

  negative = size < 0;
  size = ABS (size);
  qp = PTR(src);

  if (size == 1)
    {
      res = qp[size - 1];
    }
  else if (size == 2)
    {
      res = MP_BASE_AS_DOUBLE * qp[size - 1] + qp[size - 2];
    }
  else
    {
      count_leading_zeros (cnt, qp[size - 1]);

#if BITS_PER_MP_LIMB == 32
      if (cnt == 0)
	{
	  hz = qp[size - 1];
	  lz = qp[size - 2];
	}
      else
	{
	  hz = (qp[size - 1] << cnt) | (qp[size - 2] >> BITS_PER_MP_LIMB - cnt);
	  lz = (qp[size - 2] << cnt) | (qp[size - 3] >> BITS_PER_MP_LIMB - cnt);
	}
#if _GMP_IEEE_FLOATS
      /* Take bits from less significant limbs, but only if they may affect
	 the result.  */
      if ((lz & 0x7ff) == 0x400)
	{
	  if (cnt != 0)
	    lz += ((qp[size - 3] << cnt) != 0 || ! mpn_zero_p (qp, size - 3));
	  else
	    lz += (! mpn_zero_p (qp, size - 2));
	}
#endif
      res = MP_BASE_AS_DOUBLE * hz + lz;
      res = __gmp_scale2 (res, (size - 2) * BITS_PER_MP_LIMB - cnt);
#endif
#if BITS_PER_MP_LIMB == 64
      if (cnt == 0)
	hz = qp[size - 1];
      else
	hz = (qp[size - 1] << cnt) | (qp[size - 2] >> BITS_PER_MP_LIMB - cnt);
#if _GMP_IEEE_FLOATS
      if ((hz & 0x7ff) == 0x400)
	{
	  if (cnt != 0)
	    hz += ((qp[size - 2] << cnt) != 0 || ! mpn_zero_p (qp, size - 2));
	  else
	    hz += (! mpn_zero_p (qp, size - 1));
	}
#endif
      res = hz;
      res = __gmp_scale2 (res, (size - 1) * BITS_PER_MP_LIMB - cnt);
#endif
    }

  return negative ? -res : res;
}