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 <limits.h> | 5 #include <limits.h> |
6 #include <stdarg.h> | 6 #include <stdarg.h> |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 #include <cmath> | 8 #include <cmath> |
9 | 9 |
10 #include "src/base/logging.h" | 10 #include "src/base/logging.h" |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 DCHECK(requested_exponent < kMaxDecimalExponent + kDecimalExponentDistance); | 149 DCHECK(requested_exponent < kMaxDecimalExponent + kDecimalExponentDistance); |
150 int index = | 150 int index = |
151 (requested_exponent + kCachedPowersOffset) / kDecimalExponentDistance; | 151 (requested_exponent + kCachedPowersOffset) / kDecimalExponentDistance; |
152 CachedPower cached_power = kCachedPowers[index]; | 152 CachedPower cached_power = kCachedPowers[index]; |
153 *power = DiyFp(cached_power.significand, cached_power.binary_exponent); | 153 *power = DiyFp(cached_power.significand, cached_power.binary_exponent); |
154 *found_exponent = cached_power.decimal_exponent; | 154 *found_exponent = cached_power.decimal_exponent; |
155 DCHECK(*found_exponent <= requested_exponent); | 155 DCHECK(*found_exponent <= requested_exponent); |
156 DCHECK(requested_exponent < *found_exponent + kDecimalExponentDistance); | 156 DCHECK(requested_exponent < *found_exponent + kDecimalExponentDistance); |
157 } | 157 } |
158 | 158 |
159 } } // namespace v8::internal | 159 } // namespace internal |
| 160 } // namespace v8 |
OLD | NEW |