summaryrefslogtreecommitdiff
path: root/cmp_ui.c
blob: d75bf54a93c89b4af9738b65b30d78e61b55caf3 (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
/* (c) PolKA project at Inria Lorraine */

#include <stdio.h>
#include "gmp.h"
#include "gmp-impl.h"
#include "longlong.h"
#include "mpfr.h"

/* returns a positive value if b>i*2^f,
           a negative value if b<i*2^f,
           zero if b=i*2^f
*/

int 
#if __STDC__
mpfr_cmp_ui_2exp ( mpfr_srcptr b, unsigned long int i, int f )
#else
mpfr_cmp_ui_2exp (b, i, f)
     mpfr_srcptr b; 
     unsigned long int i; 
     int f; 
#endif
{
  int e, k, bn; mp_limb_t c, *bp;

  if (SIGN(b)<0) return -1;
  else if (!NOTZERO(b)) return((i) ? -1 : 0);
  else { /* b>0 */
    e = EXP(b); /* 2^(e-1) <= b < 2^e */
    if (e>f+mp_bits_per_limb) return 1;

    c = (mp_limb_t) i;
    count_leading_zeros(k, c);
    k = f+mp_bits_per_limb - k; /* 2^(k-1) <= i*2^f < 2^k */
    if (k!=e) return (e-k);

    /* now k=e */
    c <<= (f+mp_bits_per_limb-k);
    bn = (PREC(b)-1)/mp_bits_per_limb;
    bp = MANT(b) + bn;
    if (*bp>c) return 1;
    else if (*bp<c) return -1;

    /* most significant limbs agree, check remaining limbs from b */
    while (--bn>=0)
      if (*--bp) return 1;
    return 0;
  }
}

/* returns a positive value if b>i*2^f,
           a negative value if b<i*2^f,
           zero if b=i*2^f 
*/

int 
#if __STDC__
mpfr_cmp_si_2exp ( mpfr_srcptr b, long int i, int f )
#else
mpfr_cmp_si_2exp(b, i, f)
     mpfr_srcptr b; 
     long int i; 
     int f; 
#endif
{
  int e, k, bn, si; mp_limb_t c, *bp;

  si = (i<0) ? -1 : 1; /* sign of i */
  if (SIGN(b)*i<0) return SIGN(b); /* both signs differ */
  else if (!NOTZERO(b) || (i==0)) { /* one is zero */
    if (i==0) return ((NOTZERO(b)) ? SIGN(b) : 0);
    else return si; /* b is zero */
      
  }
  else { /* b and i are of same sign */
    e = EXP(b); /* 2^(e-1) <= b < 2^e */
    if (e>f+mp_bits_per_limb) return si;

    c = (mp_limb_t) ((i<0) ? -i : i);
    count_leading_zeros(k, c);
    k = f+mp_bits_per_limb - k; /* 2^(k-1) <= i*2^f < 2^k */
    if (k!=e) return (si*(e-k));

    /* now k=e */
    c <<= (f+mp_bits_per_limb-k);
    bn = (PREC(b)-1)/mp_bits_per_limb;
    bp = MANT(b) + bn;
    if (*bp>c) return si;
    else if (*bp<c) return -si;

    /* most significant limbs agree, check remaining limbs from b */
    while (--bn>=0)
      if (*--bp) return si;
    return 0;
  }
}