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

Issue 9536016: Implement BigintOperations::ToDecimalCString. (Closed)

Created:
8 years, 9 months ago by floitsch
Modified:
8 years, 8 months ago
Reviewers:
sra1, cshapiro, siva
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Implement BigintOperations::ToDecimalCString. Committed: https://code.google.com/p/dart/source/detail?r=5068

Patch Set 1 #

Patch Set 2 : Cosmetic change (in comment). #

Total comments: 12

Patch Set 3 : Address comments and deal better with overflows. #

Total comments: 4

Patch Set 4 : Address comments. #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+114 lines, -21 lines) Patch
M runtime/vm/bigint_operations.h View 1 chunk +3 lines, -0 lines 0 comments Download
M runtime/vm/bigint_operations.cc View 1 2 3 2 chunks +87 lines, -0 lines 2 comments Download
M runtime/vm/bigint_operations_test.cc View 6 chunks +22 lines, -15 lines 0 comments Download
M runtime/vm/object.cc View 1 2 3 1 chunk +1 line, -3 lines 0 comments Download
M runtime/vm/object_test.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M tests/co19/co19-runtime.status View 1 2 3 1 chunk +0 lines, -2 lines 0 comments Download

Messages

Total messages: 8 (0 generated)
floitsch
8 years, 9 months ago (2012-02-29 16:26:25 UTC) #1
floitsch
8 years, 9 months ago (2012-03-01 09:54:30 UTC) #2
siva
lgtm https://chromiumcodereview.appspot.com/9536016/diff/2001/runtime/vm/bigint_operations.cc File runtime/vm/bigint_operations.cc (right): https://chromiumcodereview.appspot.com/9536016/diff/2001/runtime/vm/bigint_operations.cc#newcode342 runtime/vm/bigint_operations.cc:342: // We guard against overflows by using 64 ...
8 years, 9 months ago (2012-03-02 19:31:45 UTC) #3
floitsch
PTAL. I'm now testing beforehand if there can be an overflow. Since this should never ...
8 years, 9 months ago (2012-03-05 14:28:15 UTC) #4
siva
lgtm https://chromiumcodereview.appspot.com/9536016/diff/7001/runtime/vm/bigint_operations.cc File runtime/vm/bigint_operations.cc (right): https://chromiumcodereview.appspot.com/9536016/diff/7001/runtime/vm/bigint_operations.cc#newcode363 runtime/vm/bigint_operations.cc:363: int64_t bit_length = length * kDigitBitSize; ASSERT(bit_length > ...
8 years, 9 months ago (2012-03-07 01:05:04 UTC) #5
floitsch
https://chromiumcodereview.appspot.com/9536016/diff/7001/runtime/vm/bigint_operations.cc File runtime/vm/bigint_operations.cc (right): https://chromiumcodereview.appspot.com/9536016/diff/7001/runtime/vm/bigint_operations.cc#newcode363 runtime/vm/bigint_operations.cc:363: int64_t bit_length = length * kDigitBitSize; On 2012/03/07 01:05:04, ...
8 years, 9 months ago (2012-03-07 08:25:48 UTC) #6
sra1
https://chromiumcodereview.appspot.com/9536016/diff/13001/runtime/vm/bigint_operations.cc File runtime/vm/bigint_operations.cc (right): https://chromiumcodereview.appspot.com/9536016/diff/13001/runtime/vm/bigint_operations.cc#newcode381 runtime/vm/bigint_operations.cc:381: const int kPowerOfTen = 8; It is funny that ...
8 years, 8 months ago (2012-04-02 20:03:29 UTC) #7
floitsch
8 years, 8 months ago (2012-04-03 11:20:52 UTC) #8
https://chromiumcodereview.appspot.com/9536016/diff/13001/runtime/vm/bigint_o...
File runtime/vm/bigint_operations.cc (right):

https://chromiumcodereview.appspot.com/9536016/diff/13001/runtime/vm/bigint_o...
runtime/vm/bigint_operations.cc:381: const int kPowerOfTen = 8;
On 2012/04/02 20:03:29, sra1 wrote:
> It is funny that the constant called power-of-ten is not a power of 10. 
> Compare: const int kTwo = 3;
> 
> I would call these kChunkDivisor and kChunkDigits

done in https://chromiumcodereview.appspot.com/9959095/

Powered by Google App Engine
This is Rietveld 408576698