OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 <cmath> | 5 #include <cmath> |
6 | 6 |
7 #include "include/v8stdint.h" | 7 #include "include/v8stdint.h" |
8 #include "src/checks.h" | 8 #include "src/base/logging.h" |
9 #include "src/utils.h" | 9 #include "src/utils.h" |
10 | 10 |
11 #include "src/bignum-dtoa.h" | 11 #include "src/bignum-dtoa.h" |
12 | 12 |
13 #include "src/bignum.h" | 13 #include "src/bignum.h" |
14 #include "src/double.h" | 14 #include "src/double.h" |
15 | 15 |
16 namespace v8 { | 16 namespace v8 { |
17 namespace internal { | 17 namespace internal { |
18 | 18 |
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
627 delta_minus->Times10(); | 627 delta_minus->Times10(); |
628 delta_plus->AssignBignum(*delta_minus); | 628 delta_plus->AssignBignum(*delta_minus); |
629 } else { | 629 } else { |
630 delta_minus->Times10(); | 630 delta_minus->Times10(); |
631 delta_plus->Times10(); | 631 delta_plus->Times10(); |
632 } | 632 } |
633 } | 633 } |
634 } | 634 } |
635 | 635 |
636 } } // namespace v8::internal | 636 } } // namespace v8::internal |
OLD | NEW |