Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: third_party/WebKit/Source/wtf/dtoa/bignum.h

Issue 2764243002: Move files in wtf/ to platform/wtf/ (Part 9). (Closed)
Patch Set: Rebase. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/wtf/dtoa/README ('k') | third_party/WebKit/Source/wtf/dtoa/bignum.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Use of this source code is governed by a BSD-style license that can be
3 // modification, are permitted provided that the following conditions are 3 // found in the LICENSE file.
4 // met:
5 //
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 4
28 #ifndef DOUBLE_CONVERSION_BIGNUM_H_ 5 #include "platform/wtf/dtoa/bignum.h"
29 #define DOUBLE_CONVERSION_BIGNUM_H_
30 6
31 #include "utils.h" 7 // The contents of this header was moved to platform/wtf as part of
32 8 // WTF migration project. See the following post for details:
33 namespace WTF { 9 // https://groups.google.com/a/chromium.org/d/msg/blink-dev/tLdAZCTlcAA/bYXVT8gY CAAJ
34
35 namespace double_conversion {
36
37 class Bignum {
38 public:
39 // 3584 = 128 * 28. We can represent 2^3584 > 10^1000 accurately.
40 // This bignum can encode much bigger numbers, since it contains an
41 // exponent.
42 static const int kMaxSignificantBits = 3584;
43
44 Bignum();
45 void AssignUInt16(uint16_t value);
46 void AssignUInt64(uint64_t value);
47 void AssignBignum(const Bignum& other);
48
49 void AssignDecimalString(Vector<const char> value);
50 void AssignHexString(Vector<const char> value);
51
52 void AssignPowerUInt16(uint16_t base, int exponent);
53
54 void AddUInt16(uint16_t operand);
55 void AddUInt64(uint64_t operand);
56 void AddBignum(const Bignum& other);
57 // Precondition: this >= other.
58 void SubtractBignum(const Bignum& other);
59
60 void Square();
61 void ShiftLeft(int shift_amount);
62 void MultiplyByUInt32(uint32_t factor);
63 void MultiplyByUInt64(uint64_t factor);
64 void MultiplyByPowerOfTen(int exponent);
65 void Times10() { return MultiplyByUInt32(10); }
66 // Pseudocode:
67 // int result = this / other;
68 // this = this % other;
69 // In the worst case this function is in O(this/other).
70 uint16_t DivideModuloIntBignum(const Bignum& other);
71
72 bool ToHexString(char* buffer, int buffer_size) const;
73
74 static int Compare(const Bignum& a, const Bignum& b);
75 static bool Equal(const Bignum& a, const Bignum& b) {
76 return Compare(a, b) == 0;
77 }
78 static bool LessEqual(const Bignum& a, const Bignum& b) {
79 return Compare(a, b) <= 0;
80 }
81 static bool Less(const Bignum& a, const Bignum& b) {
82 return Compare(a, b) < 0;
83 }
84 // Returns Compare(a + b, c);
85 static int PlusCompare(const Bignum& a, const Bignum& b, const Bignum& c);
86 // Returns a + b == c
87 static bool PlusEqual(const Bignum& a, const Bignum& b, const Bignum& c) {
88 return PlusCompare(a, b, c) == 0;
89 }
90 // Returns a + b <= c
91 static bool PlusLessEqual(const Bignum& a, const Bignum& b, const Bignum& c) {
92 return PlusCompare(a, b, c) <= 0;
93 }
94 // Returns a + b < c
95 static bool PlusLess(const Bignum& a, const Bignum& b, const Bignum& c) {
96 return PlusCompare(a, b, c) < 0;
97 }
98
99 private:
100 typedef uint32_t Chunk;
101 typedef uint64_t DoubleChunk;
102
103 static const int kChunkSize = sizeof(Chunk) * 8;
104 static const int kDoubleChunkSize = sizeof(DoubleChunk) * 8;
105 // With bigit size of 28 we loose some bits, but a double still fits easily
106 // into two chunks, and more importantly we can use the Comba multiplication.
107 static const int kBigitSize = 28;
108 static const Chunk kBigitMask = (1 << kBigitSize) - 1;
109 // Every instance allocates kBigitLength chunks on the stack. Bignums cannot
110 // grow. There are no checks if the stack-allocated space is sufficient.
111 static const int kBigitCapacity = kMaxSignificantBits / kBigitSize;
112
113 void EnsureCapacity(int size) {
114 if (size > kBigitCapacity) {
115 UNREACHABLE();
116 }
117 }
118 void Align(const Bignum& other);
119 void Clamp();
120 bool IsClamped() const;
121 void Zero();
122 // Requires this to have enough capacity (no tests done).
123 // Updates used_digits_ if necessary.
124 // shift_amount must be < kBigitSize.
125 void BigitsShiftLeft(int shift_amount);
126 // BigitLength includes the "hidden" digits encoded in the exponent.
127 int BigitLength() const { return used_digits_ + exponent_; }
128 Chunk BigitAt(int index) const;
129 void SubtractTimes(const Bignum& other, int factor);
130
131 Chunk bigits_buffer_[kBigitCapacity];
132 // A vector backed by bigits_buffer_. This way accesses to the array are
133 // checked for out-of-bounds errors.
134 Vector<Chunk> bigits_;
135 int used_digits_;
136 // The Bignum's value equals value(bigits_) * 2^(exponent_ * kBigitSize).
137 int exponent_;
138
139 DISALLOW_COPY_AND_ASSIGN(Bignum);
140 };
141
142 } // namespace double_conversion
143
144 } // namespace WTF
145
146 #endif // DOUBLE_CONVERSION_BIGNUM_H_
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/wtf/dtoa/README ('k') | third_party/WebKit/Source/wtf/dtoa/bignum.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698