15 #ifndef RAPIDJSON_BIGINTEGER_H_
16 #define RAPIDJSON_BIGINTEGER_H_
18 #include "../rapidjson.h"
20 #if defined(_MSC_VER) && defined(_M_AMD64)
22 #pragma intrinsic(_umul128)
25 RAPIDJSON_NAMESPACE_BEGIN
30 typedef uint64_t
Type;
32 BigInteger(
const BigInteger& rhs) : count_(rhs.count_) {
33 std::memcpy(digits_, rhs.digits_, count_ *
sizeof(
Type));
36 explicit BigInteger(uint64_t u) : count_(1) {
40 BigInteger(
const char* decimals,
size_t length) : count_(1) {
44 const size_t kMaxDigitPerIteration = 19;
45 while (length >= kMaxDigitPerIteration) {
46 AppendDecimal64(decimals + i, decimals + i + kMaxDigitPerIteration);
47 length -= kMaxDigitPerIteration;
48 i += kMaxDigitPerIteration;
52 AppendDecimal64(decimals + i, decimals + i + length);
55 BigInteger& operator=(uint64_t u) {
61 BigInteger& operator+=(uint64_t u) {
62 Type backup = digits_[0];
64 for (
size_t i = 0; i < count_ - 1; i++) {
65 if (digits_[i] >= backup)
67 backup = digits_[i + 1];
72 if (digits_[count_ - 1] < backup)
78 BigInteger& operator*=(uint64_t u) {
79 if (u == 0)
return *
this = 0;
80 if (u == 1)
return *
this;
81 if (*
this == 1)
return *
this = u;
84 for (
size_t i = 0; i < count_; i++) {
86 digits_[i] = MulAdd64(digits_[i], u, k, &hi);
96 BigInteger& operator*=(uint32_t u) {
97 if (u == 0)
return *
this = 0;
98 if (u == 1)
return *
this;
99 if (*
this == 1)
return *
this = u;
102 for (
size_t i = 0; i < count_; i++) {
103 const uint64_t c = digits_[i] >> 32;
104 const uint64_t d = digits_[i] & 0xFFFFFFFF;
105 const uint64_t uc = u * c;
106 const uint64_t ud = u * d;
107 const uint64_t p0 = ud + k;
108 const uint64_t p1 = uc + (p0 >> 32);
109 digits_[i] = (p0 & 0xFFFFFFFF) | (p1 << 32);
119 BigInteger& operator<<=(
size_t shift) {
120 if (IsZero() || shift == 0)
return *
this;
122 size_t offset = shift / kTypeBit;
123 size_t interShift = shift % kTypeBit;
126 if (interShift == 0) {
127 std::memmove(&digits_[count_ - 1 + offset], &digits_[count_ - 1], count_ *
sizeof(
Type));
132 for (
size_t i = count_; i > 0; i--)
133 digits_[i + offset] = (digits_[i] << interShift) | (digits_[i - 1] >> (kTypeBit - interShift));
134 digits_[offset] = digits_[0] << interShift;
140 std::memset(digits_, 0, offset *
sizeof(
Type));
145 bool operator==(
const BigInteger& rhs)
const {
146 return count_ == rhs.count_ && std::memcmp(digits_, rhs.digits_, count_ *
sizeof(
Type)) == 0;
149 bool operator==(
const Type rhs)
const {
150 return count_ == 1 && digits_[0] == rhs;
153 BigInteger& MultiplyPow5(
unsigned exp) {
154 static const uint32_t kPow5[12] = {
160 5 * 5 * 5 * 5 * 5 * 5,
161 5 * 5 * 5 * 5 * 5 * 5 * 5,
162 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5,
163 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5,
164 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5,
165 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5,
166 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5 * 5
168 if (exp == 0)
return *
this;
170 for (; exp >= 13; exp -= 13) *
this *= static_cast<uint32_t>(1220703125u);
171 if (exp > 0) *
this *= kPow5[exp - 1];
177 bool Difference(
const BigInteger& rhs, BigInteger* out)
const {
178 int cmp = Compare(rhs);
180 const BigInteger *a, *b;
182 if (cmp < 0) { a = &rhs; b =
this; ret =
true; }
183 else { a =
this; b = &rhs; ret =
false; }
186 for (
size_t i = 0; i < a->count_; i++) {
187 Type d = a->digits_[i] - borrow;
190 borrow = (d > a->digits_[i]) ? 1 : 0;
199 int Compare(
const BigInteger& rhs)
const {
200 if (count_ != rhs.count_)
201 return count_ < rhs.count_ ? -1 : 1;
203 for (
size_t i = count_; i-- > 0;)
204 if (digits_[i] != rhs.digits_[i])
205 return digits_[i] < rhs.digits_[i] ? -1 : 1;
210 size_t GetCount()
const {
return count_; }
212 bool IsZero()
const {
return count_ == 1 && digits_[0] == 0; }
215 void AppendDecimal64(
const char* begin,
const char* end) {
216 uint64_t u = ParseUint64(begin, end);
220 unsigned exp =
static_cast<unsigned>(end - begin);
221 (MultiplyPow5(exp) <<= exp) += u;
225 void PushBack(
Type digit) {
227 digits_[count_++] = digit;
230 static uint64_t ParseUint64(
const char* begin,
const char* end) {
232 for (
const char* p = begin; p != end; ++p) {
234 r = r * 10u + (unsigned)(*p -
'0');
240 static uint64_t MulAdd64(uint64_t a, uint64_t b, uint64_t k, uint64_t* outHigh) {
241 #if defined(_MSC_VER) && defined(_M_AMD64)
242 uint64_t low = _umul128(a, b, outHigh) + k;
246 #elif (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) && defined(__x86_64__)
247 __extension__
typedef unsigned __int128 uint128;
248 uint128 p =
static_cast<uint128
>(a) * static_cast<uint128>(b);
250 *outHigh =
static_cast<uint64_t
>(p >> 64);
251 return static_cast<uint64_t
>(p);
253 const uint64_t a0 = a & 0xFFFFFFFF, a1 = a >> 32, b0 = b & 0xFFFFFFFF, b1 = b >> 32;
254 uint64_t x0 = a0 * b0, x1 = a0 * b1, x2 = a1 * b0, x3 = a1 * b1;
258 x3 += (
static_cast<uint64_t
>(1) << 32);
259 uint64_t lo = (x1 << 32) + (x0 & 0xFFFFFFFF);
260 uint64_t hi = x3 + (x1 >> 32);
270 static const size_t kBitCount = 3328;
271 static const size_t kCapacity = kBitCount /
sizeof(
Type);
272 static const size_t kTypeBit =
sizeof(
Type) * 8;
274 Type digits_[kCapacity];
279 RAPIDJSON_NAMESPACE_END
281 #endif // RAPIDJSON_BIGINTEGER_H_
#define RAPIDJSON_UINT64_C2(high32, low32)
Construct a 64-bit literal by a pair of 32-bit integer.
Definition: rapidjson.h:261
Type
Type of JSON value.
Definition: rapidjson.h:642
#define RAPIDJSON_ASSERT(x)
Assertion.
Definition: rapidjson.h:344