OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <stdarg.h> | 5 #include <stdarg.h> |
6 #include <cmath> | 6 #include <cmath> |
7 | 7 |
8 #include "src/globals.h" | 8 #include "src/v8.h" |
9 #include "src/utils.h" | 9 |
10 #include "src/strtod.h" | |
11 #include "src/bignum.h" | 10 #include "src/bignum.h" |
12 #include "src/cached-powers.h" | 11 #include "src/cached-powers.h" |
13 #include "src/double.h" | 12 #include "src/double.h" |
| 13 #include "src/globals.h" |
| 14 #include "src/strtod.h" |
| 15 #include "src/utils.h" |
14 | 16 |
15 namespace v8 { | 17 namespace v8 { |
16 namespace internal { | 18 namespace internal { |
17 | 19 |
18 // 2^53 = 9007199254740992. | 20 // 2^53 = 9007199254740992. |
19 // Any integer with at most 15 decimal digits will hence fit into a double | 21 // Any integer with at most 15 decimal digits will hence fit into a double |
20 // (which has a 53bit significand) without loss of precision. | 22 // (which has a 53bit significand) without loss of precision. |
21 static const int kMaxExactDoubleIntegerDecimalDigits = 15; | 23 static const int kMaxExactDoubleIntegerDecimalDigits = 15; |
22 // 2^64 = 18446744073709551616 > 10^19 | 24 // 2^64 = 18446744073709551616 > 10^19 |
23 static const int kMaxUint64DecimalDigits = 19; | 25 static const int kMaxUint64DecimalDigits = 19; |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 | 413 |
412 double guess; | 414 double guess; |
413 if (DoubleStrtod(trimmed, exponent, &guess) || | 415 if (DoubleStrtod(trimmed, exponent, &guess) || |
414 DiyFpStrtod(trimmed, exponent, &guess)) { | 416 DiyFpStrtod(trimmed, exponent, &guess)) { |
415 return guess; | 417 return guess; |
416 } | 418 } |
417 return BignumStrtod(trimmed, exponent, guess); | 419 return BignumStrtod(trimmed, exponent, guess); |
418 } | 420 } |
419 | 421 |
420 } } // namespace v8::internal | 422 } } // namespace v8::internal |
OLD | NEW |