aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/math/bigint/divide.cpp
blob: 0dd0eb174fc5e11400ca4674c301d7f5ac6cf975 (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
* Division Algorithm
* (C) 1999-2007,2012,2018 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/

#include <botan/divide.h>
#include <botan/internal/mp_core.h>
#include <botan/internal/mp_madd.h>
#include <botan/internal/ct_utils.h>
#include <botan/internal/bit_ops.h>

namespace Botan {

namespace {

/*
* Handle signed operands, if necessary
*/
void sign_fixup(const BigInt& x, const BigInt& y, BigInt& q, BigInt& r)
   {
   if(x.sign() == BigInt::Negative)
      {
      q.flip_sign();
      if(r.is_nonzero()) { --q; r = y.abs() - r; }
      }
   if(y.sign() == BigInt::Negative)
      q.flip_sign();
   }

inline bool division_check(word q, word y2, word y1,
                           word x3, word x2, word x1)
   {
   /*
   Compute (y3,y2,y1) = (y2,y1) * q
   and return true if (y3,y2,y1) > (x3,x2,x1)
   */

   word y3 = 0;
   y1 = word_madd2(q, y1, &y3);
   y2 = word_madd2(q, y2, &y3);

   const word x[3] = { x1, x2, x3 };
   const word y[3] = { y1, y2, y3 };

   return bigint_ct_is_lt(x, 3, y, 3).is_set();
   }

}

void ct_divide(const BigInt& x, const BigInt& y, BigInt& q_out, BigInt& r_out)
   {
   const size_t x_words = x.sig_words();
   const size_t y_words = y.sig_words();

   const size_t x_bits = x.bits();

   BigInt q(BigInt::Positive, x_words);
   BigInt r(BigInt::Positive, y_words);

   for(size_t i = 0; i != x_bits; ++i)
      {
      const size_t b = x_bits - 1 - i;
      const bool x_b = x.get_bit(b);

      r *= 2;
      r.conditionally_set_bit(0, x_b);

      // y <= r -> r >= y
      const auto r_gte_y = bigint_ct_is_lt(y.data(), y_words, r.data(), r.size(), true);

      q.conditionally_set_bit(b, r_gte_y.is_set());
      bigint_cnd_sub(r_gte_y.value(), r.mutable_data(), r.size(), y.data(), y_words);
      }

   sign_fixup(x, y, q, r);
   r_out = r;
   q_out = q;
   }

/*
* Solve x = q * y + r
*/
void divide(const BigInt& x, const BigInt& y_arg, BigInt& q_out, BigInt& r_out)
   {
   if(y_arg.is_zero())
      throw BigInt::DivideByZero();

   const size_t y_words = y_arg.sig_words();

   BigInt y = y_arg;

   BigInt r = x;
   BigInt q = 0;

   r.set_sign(BigInt::Positive);
   y.set_sign(BigInt::Positive);

   if(r >= y)
      {
      // Calculate shifts needed to normalize y with high bit set
      const size_t shifts = BOTAN_MP_WORD_BITS - high_bit(y.word_at(y_words-1));

      y <<= shifts;
      r <<= shifts;

      // we know y has not changed size, since we only shifted up to set high bit
      const size_t t = y_words - 1;
      const size_t n = r.sig_words() - 1; // r may have changed size however

      BOTAN_ASSERT_NOMSG(n >= t);

      q.grow_to(n - t + 1);

      word* q_words = q.mutable_data();

      BigInt shifted_y = y << (BOTAN_MP_WORD_BITS * (n-t));

      while(r >= shifted_y)
         {
         r -= shifted_y;
         q_words[n-t] += 1;
         }

      for(size_t j = n; j != t; --j)
         {
         const word x_j0  = r.word_at(j);
         const word x_j1 = r.word_at(j-1);
         const word x_j2 = r.word_at(j-2);
         const word y_t0  = y.word_at(t);
         const word y_t1  = y.word_at(t-1);

         word qjt = (x_j0 == y_t0) ? MP_WORD_MAX : bigint_divop(x_j0, x_j1, y_t0);

         while(division_check(qjt, y_t0, y_t1, x_j0, x_j1, x_j2))
            {
            qjt -= 1;
            }

         shifted_y >>= BOTAN_MP_WORD_BITS;
         // Now shifted_y == y << (BOTAN_MP_WORD_BITS * (j-t-1))

         r -= qjt * shifted_y;

         if(r.is_negative())
            {
            // overcorrected
            qjt -= 1;
            r += shifted_y;
            }

         q_words[j-t-1] = qjt;
         }

      r >>= shifts;
      }

   sign_fixup(x, y_arg, q, r);

   r_out = r;
   q_out = q;
   }

}