forked from calccrypto/uint256_t
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uint128_t.cpp
469 lines (387 loc) · 11.4 KB
/
uint128_t.cpp
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
#include "uint128_t.build"
const uint128_t uint128_0(0);
const uint128_t uint128_1(1);
uint128_t::uint128_t()
: UPPER(0), LOWER(0)
{}
uint128_t::uint128_t(const uint128_t & rhs)
: UPPER(rhs.UPPER), LOWER(rhs.LOWER)
{}
uint128_t::uint128_t(uint128_t && rhs)
: UPPER(std::move(rhs.UPPER)), LOWER(std::move(rhs.LOWER))
{
if (this != &rhs){
rhs.UPPER = 0;
rhs.LOWER = 0;
}
}
uint128_t & uint128_t::operator=(const uint128_t & rhs){
UPPER = rhs.UPPER;
LOWER = rhs.LOWER;
return *this;
}
uint128_t & uint128_t::operator=(uint128_t && rhs){
if (this != &rhs){
UPPER = std::move(rhs.UPPER);
LOWER = std::move(rhs.LOWER);
rhs.UPPER = 0;
rhs.LOWER = 0;
}
return *this;
}
uint128_t::operator bool() const{
return (bool) (UPPER | LOWER);
}
uint128_t::operator uint8_t() const{
return (uint8_t) LOWER;
}
uint128_t::operator uint16_t() const{
return (uint16_t) LOWER;
}
uint128_t::operator uint32_t() const{
return (uint32_t) LOWER;
}
uint128_t::operator uint64_t() const{
return (uint64_t) LOWER;
}
uint128_t uint128_t::operator&(const uint128_t & rhs) const{
return uint128_t(UPPER & rhs.UPPER, LOWER & rhs.LOWER);
}
uint128_t & uint128_t::operator&=(const uint128_t & rhs){
UPPER &= rhs.UPPER;
LOWER &= rhs.LOWER;
return *this;
}
uint128_t uint128_t::operator|(const uint128_t & rhs) const{
return uint128_t(UPPER | rhs.UPPER, LOWER | rhs.LOWER);
}
uint128_t & uint128_t::operator|=(const uint128_t & rhs){
UPPER |= rhs.UPPER;
LOWER |= rhs.LOWER;
return *this;
}
uint128_t uint128_t::operator^(const uint128_t & rhs) const{
return uint128_t(UPPER ^ rhs.UPPER, LOWER ^ rhs.LOWER);
}
uint128_t & uint128_t::operator^=(const uint128_t & rhs){
UPPER ^= rhs.UPPER;
LOWER ^= rhs.LOWER;
return *this;
}
uint128_t uint128_t::operator~() const{
return uint128_t(~UPPER, ~LOWER);
}
uint128_t uint128_t::operator<<(const uint128_t & rhs) const{
const uint64_t shift = rhs.LOWER;
if (((bool) rhs.UPPER) || (shift >= 128)){
return uint128_0;
}
else if (shift == 64){
return uint128_t(LOWER, 0);
}
else if (shift == 0){
return *this;
}
else if (shift < 64){
return uint128_t((UPPER << shift) + (LOWER >> (64 - shift)), LOWER << shift);
}
else if ((128 > shift) && (shift > 64)){
return uint128_t(LOWER << (shift - 64), 0);
}
else{
return uint128_0;
}
}
uint128_t & uint128_t::operator<<=(const uint128_t & rhs){
*this = *this << rhs;
return *this;
}
uint128_t uint128_t::operator>>(const uint128_t & rhs) const{
const uint64_t shift = rhs.LOWER;
if (((bool) rhs.UPPER) || (shift >= 128)){
return uint128_0;
}
else if (shift == 64){
return uint128_t(0, UPPER);
}
else if (shift == 0){
return *this;
}
else if (shift < 64){
return uint128_t(UPPER >> shift, (UPPER << (64 - shift)) + (LOWER >> shift));
}
else if ((128 > shift) && (shift > 64)){
return uint128_t(0, (UPPER >> (shift - 64)));
}
else{
return uint128_0;
}
}
uint128_t & uint128_t::operator>>=(const uint128_t & rhs){
*this = *this >> rhs;
return *this;
}
bool uint128_t::operator!() const{
return !(bool) (UPPER | LOWER);
}
bool uint128_t::operator&&(const uint128_t & rhs) const{
return ((bool) *this && rhs);
}
bool uint128_t::operator||(const uint128_t & rhs) const{
return ((bool) *this || rhs);
}
bool uint128_t::operator==(const uint128_t & rhs) const{
return ((UPPER == rhs.UPPER) && (LOWER == rhs.LOWER));
}
bool uint128_t::operator!=(const uint128_t & rhs) const{
return ((UPPER != rhs.UPPER) | (LOWER != rhs.LOWER));
}
bool uint128_t::operator>(const uint128_t & rhs) const{
if (UPPER == rhs.UPPER){
return (LOWER > rhs.LOWER);
}
return (UPPER > rhs.UPPER);
}
bool uint128_t::operator<(const uint128_t & rhs) const{
if (UPPER == rhs.UPPER){
return (LOWER < rhs.LOWER);
}
return (UPPER < rhs.UPPER);
}
bool uint128_t::operator>=(const uint128_t & rhs) const{
return ((*this > rhs) | (*this == rhs));
}
bool uint128_t::operator<=(const uint128_t & rhs) const{
return ((*this < rhs) | (*this == rhs));
}
uint128_t uint128_t::operator+(const uint128_t & rhs) const{
return uint128_t(UPPER + rhs.UPPER + ((LOWER + rhs.LOWER) < LOWER), LOWER + rhs.LOWER);
}
uint128_t & uint128_t::operator+=(const uint128_t & rhs){
UPPER += rhs.UPPER + ((LOWER + rhs.LOWER) < LOWER);
LOWER += rhs.LOWER;
return *this;
}
uint128_t uint128_t::operator-(const uint128_t & rhs) const{
return uint128_t(UPPER - rhs.UPPER - ((LOWER - rhs.LOWER) > LOWER), LOWER - rhs.LOWER);
}
uint128_t & uint128_t::operator-=(const uint128_t & rhs){
*this = *this - rhs;
return *this;
}
uint128_t uint128_t::operator*(const uint128_t & rhs) const{
// split values into 4 32-bit parts
uint64_t top[4] = {UPPER >> 32, UPPER & 0xffffffff, LOWER >> 32, LOWER & 0xffffffff};
uint64_t bottom[4] = {rhs.UPPER >> 32, rhs.UPPER & 0xffffffff, rhs.LOWER >> 32, rhs.LOWER & 0xffffffff};
uint64_t products[4][4];
// multiply each component of the values
for(int y = 3; y > -1; y--){
for(int x = 3; x > -1; x--){
products[3 - x][y] = top[x] * bottom[y];
}
}
// first row
uint64_t fourth32 = (products[0][3] & 0xffffffff);
uint64_t third32 = (products[0][2] & 0xffffffff) + (products[0][3] >> 32);
uint64_t second32 = (products[0][1] & 0xffffffff) + (products[0][2] >> 32);
uint64_t first32 = (products[0][0] & 0xffffffff) + (products[0][1] >> 32);
// second row
third32 += (products[1][3] & 0xffffffff);
second32 += (products[1][2] & 0xffffffff) + (products[1][3] >> 32);
first32 += (products[1][1] & 0xffffffff) + (products[1][2] >> 32);
// third row
second32 += (products[2][3] & 0xffffffff);
first32 += (products[2][2] & 0xffffffff) + (products[2][3] >> 32);
// fourth row
first32 += (products[3][3] & 0xffffffff);
// move carry to next digit
third32 += fourth32 >> 32;
second32 += third32 >> 32;
first32 += second32 >> 32;
// remove carry from current digit
fourth32 &= 0xffffffff;
third32 &= 0xffffffff;
second32 &= 0xffffffff;
first32 &= 0xffffffff;
// combine components
return uint128_t((first32 << 32) | second32, (third32 << 32) | fourth32);
}
uint128_t & uint128_t::operator*=(const uint128_t & rhs){
*this = *this * rhs;
return *this;
}
std::pair <uint128_t, uint128_t> uint128_t::divmod(const uint128_t & lhs, const uint128_t & rhs) const{
// Save some calculations /////////////////////
if (rhs == uint128_0){
throw std::domain_error("Error: division or modulus by 0");
}
else if (rhs == uint128_1){
return std::pair <uint128_t, uint128_t> (lhs, uint128_0);
}
else if (lhs == rhs){
return std::pair <uint128_t, uint128_t> (uint128_1, uint128_0);
}
else if ((lhs == uint128_0) || (lhs < rhs)){
return std::pair <uint128_t, uint128_t> (uint128_0, lhs);
}
std::pair <uint128_t, uint128_t> qr (uint128_0, uint128_0);
for(uint8_t x = lhs.bits(); x > 0; x--){
qr.first <<= uint128_1;
qr.second <<= uint128_1;
if ((lhs >> (x - 1U)) & 1){
qr.second++;
}
if (qr.second >= rhs){
qr.second -= rhs;
qr.first++;
}
}
return qr;
}
uint128_t uint128_t::operator/(const uint128_t & rhs) const{
return divmod(*this, rhs).first;
}
uint128_t & uint128_t::operator/=(const uint128_t & rhs){
*this = *this / rhs;
return *this;
}
uint128_t uint128_t::operator%(const uint128_t & rhs) const{
return divmod(*this, rhs).second;
}
uint128_t & uint128_t::operator%=(const uint128_t & rhs){
*this = *this % rhs;
return *this;
}
uint128_t & uint128_t::operator++(){
return *this += uint128_1;
}
uint128_t uint128_t::operator++(int){
uint128_t temp(*this);
++*this;
return temp;
}
uint128_t & uint128_t::operator--(){
return *this -= uint128_1;
}
uint128_t uint128_t::operator--(int){
uint128_t temp(*this);
--*this;
return temp;
}
uint128_t uint128_t::operator+() const{
return *this;
}
uint128_t uint128_t::operator-() const{
return ~*this + uint128_1;
}
const uint64_t & uint128_t::upper() const{
return UPPER;
}
const uint64_t & uint128_t::lower() const{
return LOWER;
}
uint8_t uint128_t::bits() const{
uint8_t out = 0;
if (UPPER){
out = 64;
uint64_t up = UPPER;
while (up){
up >>= 1;
out++;
}
}
else{
uint64_t low = LOWER;
while (low){
low >>= 1;
out++;
}
}
return out;
}
std::string uint128_t::str(uint8_t base, const unsigned int & len) const{
if ((base < 2) || (base > 16)){
throw std::invalid_argument("Base must be in the range [2, 16]");
}
std::string out = "";
if (!(*this)){
out = "0";
}
else{
std::pair <uint128_t, uint128_t> qr(*this, uint128_0);
do{
qr = divmod(qr.first, base);
out = "0123456789abcdef"[(uint8_t) qr.second] + out;
} while (qr.first);
}
if (out.size() < len){
out = std::string(len - out.size(), '0') + out;
}
return out;
}
uint128_t operator<<(const bool & lhs, const uint128_t & rhs){
return uint128_t(lhs) << rhs;
}
uint128_t operator<<(const uint8_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) << rhs;
}
uint128_t operator<<(const uint16_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) << rhs;
}
uint128_t operator<<(const uint32_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) << rhs;
}
uint128_t operator<<(const uint64_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) << rhs;
}
uint128_t operator<<(const int8_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) << rhs;
}
uint128_t operator<<(const int16_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) << rhs;
}
uint128_t operator<<(const int32_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) << rhs;
}
uint128_t operator<<(const int64_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) << rhs;
}
uint128_t operator>>(const bool & lhs, const uint128_t & rhs){
return uint128_t(lhs) >> rhs;
}
uint128_t operator>>(const uint8_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) >> rhs;
}
uint128_t operator>>(const uint16_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) >> rhs;
}
uint128_t operator>>(const uint32_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) >> rhs;
}
uint128_t operator>>(const uint64_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) >> rhs;
}
uint128_t operator>>(const int8_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) >> rhs;
}
uint128_t operator>>(const int16_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) >> rhs;
}
uint128_t operator>>(const int32_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) >> rhs;
}
uint128_t operator>>(const int64_t & lhs, const uint128_t & rhs){
return uint128_t(lhs) >> rhs;
}
std::ostream & operator<<(std::ostream & stream, const uint128_t & rhs){
if (stream.flags() & stream.oct){
stream << rhs.str(8);
}
else if (stream.flags() & stream.dec){
stream << rhs.str(10);
}
else if (stream.flags() & stream.hex){
stream << rhs.str(16);
}
return stream;
}