Chromium Code Reviews| 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 #ifndef V8_CONVERSIONS_INL_H_ | 5 #ifndef V8_CONVERSIONS_INL_H_ |
| 6 #define V8_CONVERSIONS_INL_H_ | 6 #define V8_CONVERSIONS_INL_H_ |
| 7 | 7 |
| 8 #include <float.h> // Required for DBL_MAX and on Win32 for finite() | 8 #include <float.h> // Required for DBL_MAX and on Win32 for finite() |
| 9 #include <limits.h> // Required for INT_MAX etc. | 9 #include <limits.h> // Required for INT_MAX etc. |
| 10 #include <stdarg.h> | 10 #include <stdarg.h> |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 60 #endif | 60 #endif |
| 61 // Copy least significant 32 bits of mantissa. | 61 // Copy least significant 32 bits of mantissa. |
| 62 memcpy(&result, mantissa_ptr, sizeof(result)); | 62 memcpy(&result, mantissa_ptr, sizeof(result)); |
| 63 return negative ? ~result + 1 : result; | 63 return negative ? ~result + 1 : result; |
| 64 } | 64 } |
| 65 // Large number (outside uint32 range), Infinity or NaN. | 65 // Large number (outside uint32 range), Infinity or NaN. |
| 66 return 0x80000000u; // Return integer indefinite. | 66 return 0x80000000u; // Return integer indefinite. |
| 67 } | 67 } |
| 68 | 68 |
| 69 | 69 |
| 70 inline float DoubleToFloat32(double x) { | |
|
titzer
2014/09/22 11:24:54
I think you will need to assign the result to a vo
Benedikt Meurer
2014/09/22 11:37:53
Done.
| |
| 71 // TODO(yanggou): This static_cast is implementation-defined behaviour in C++, | |
| 72 // so we may need to do the conversion manually instead to match the spec. | |
| 73 return static_cast<float>(x); | |
| 74 } | |
| 75 | |
| 76 | |
| 70 inline double DoubleToInteger(double x) { | 77 inline double DoubleToInteger(double x) { |
| 71 if (std::isnan(x)) return 0; | 78 if (std::isnan(x)) return 0; |
| 72 if (!std::isfinite(x) || x == 0) return x; | 79 if (!std::isfinite(x) || x == 0) return x; |
| 73 return (x >= 0) ? std::floor(x) : std::ceil(x); | 80 return (x >= 0) ? std::floor(x) : std::ceil(x); |
| 74 } | 81 } |
| 75 | 82 |
| 76 | 83 |
| 77 int32_t DoubleToInt32(double x) { | 84 int32_t DoubleToInt32(double x) { |
| 78 int32_t i = FastD2I(x); | 85 int32_t i = FastD2I(x); |
| 79 if (FastI2D(i) == x) return i; | 86 if (FastI2D(i) == x) return i; |
| (...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 677 SLOW_DCHECK(buffer_pos < kBufferSize); | 684 SLOW_DCHECK(buffer_pos < kBufferSize); |
| 678 buffer[buffer_pos] = '\0'; | 685 buffer[buffer_pos] = '\0'; |
| 679 | 686 |
| 680 double converted = Strtod(Vector<const char>(buffer, buffer_pos), exponent); | 687 double converted = Strtod(Vector<const char>(buffer, buffer_pos), exponent); |
| 681 return (sign == NEGATIVE) ? -converted : converted; | 688 return (sign == NEGATIVE) ? -converted : converted; |
| 682 } | 689 } |
| 683 | 690 |
| 684 } } // namespace v8::internal | 691 } } // namespace v8::internal |
| 685 | 692 |
| 686 #endif // V8_CONVERSIONS_INL_H_ | 693 #endif // V8_CONVERSIONS_INL_H_ |
| OLD | NEW |