forked from wbhart/mpir
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcmp_d.c
136 lines (110 loc) · 3.51 KB
/
cmp_d.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/* mpz_cmp_d -- compare absolute values of mpz and double.
Copyright 2001, 2002, 2003 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., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA. */
#include "config.h"
#if HAVE_FLOAT_H
#include <float.h> /* for DBL_MAX */
#endif
#include "mpir.h"
#include "gmp-impl.h"
#define RETURN_CMP(zl, dl) \
do { \
zlimb = (zl); \
dlimb = (dl); \
if (zlimb != dlimb) \
return (zlimb >= dlimb ? ret : -ret); \
} while (0)
#define RETURN_NONZERO(ptr, size, val) \
do { \
mp_size_t __i; \
for (__i = (size)-1; __i >= 0; __i--) \
if ((ptr)[__i] != 0) \
return val; \
return 0; \
} while (0)
int
mpz_cmp_d (mpz_srcptr z, double d)
{
mp_limb_t darray[LIMBS_PER_DOUBLE], zlimb, dlimb;
mp_srcptr zp;
mp_size_t zsize;
int dexp, ret;
/* d=NaN is an invalid operation, there's no sensible return value.
d=Inf or -Inf is always bigger than z. */
DOUBLE_NAN_INF_ACTION (d, __gmp_invalid_operation (), goto z_zero);
/* 1. Either operand zero. */
zsize = SIZ(z);
if (d == 0.0)
return zsize;
if (zsize == 0)
{
z_zero:
return (d < 0.0 ? 1 : -1);
}
/* 2. Opposite signs. */
if (zsize >= 0)
{
if (d < 0.0)
return 1; /* >=0 cmp <0 */
ret = 1;
}
else
{
if (d >= 0.0)
return -1; /* <0 cmp >=0 */
ret = -1;
d = -d;
zsize = -zsize;
}
/* 3. Small d, knowing abs(z) >= 1. */
if (d < 1.0)
return ret;
dexp = __gmp_extract_double (darray, d);
ASSERT (dexp >= 1);
/* 4. Check for different high limb positions. */
if (zsize != dexp)
return (zsize >= dexp ? ret : -ret);
/* 5. Limb data. */
zp = PTR(z);
#if LIMBS_PER_DOUBLE == 2
RETURN_CMP (zp[zsize-1], darray[1]);
if (zsize == 1)
return (darray[0] != 0 ? -ret : 0);
RETURN_CMP (zp[zsize-2], darray[0]);
RETURN_NONZERO (zp, zsize-2, ret);
#endif
#if LIMBS_PER_DOUBLE == 3
RETURN_CMP (zp[zsize-1], darray[2]);
if (zsize == 1)
return ((darray[0] | darray[1]) != 0 ? -ret : 0);
RETURN_CMP (zp[zsize-2], darray[1]);
if (zsize == 2)
return (darray[0] != 0 ? -ret : 0);
RETURN_CMP (zp[zsize-3], darray[0]);
RETURN_NONZERO (zp, zsize-3, ret);
#endif
#if LIMBS_PER_DOUBLE >= 4
{
int i;
for (i = 1; i <= LIMBS_PER_DOUBLE; i++)
{
RETURN_CMP (zp[zsize-i], darray[LIMBS_PER_DOUBLE-i]);
if (i >= zsize)
RETURN_NONZERO (darray, LIMBS_PER_DOUBLE-i, -ret);
}
RETURN_NONZERO (zp, zsize-LIMBS_PER_DOUBLE, ret);
}
#endif
}