blob: 9e32a0cdb536126897a23a20824a6f9fdde07597 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2006-2008 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#ifndef V8_CONVERSIONS_H_
29#define V8_CONVERSIONS_H_
30
31namespace v8 {
32namespace internal {
33
Steve Block3ce2e202009-11-05 08:53:23 +000034
Steve Block6ded16b2010-05-10 14:33:55 +010035// The fast double-to-(unsigned-)int conversion routine does not guarantee
Steve Blocka7e24c12009-10-30 11:49:00 +000036// rounding towards zero.
37// The result is unspecified if x is infinite or NaN, or if the rounded
38// integer value is outside the range of type int.
Steve Block6ded16b2010-05-10 14:33:55 +010039static inline int FastD2I(double x) {
40 // The static_cast convertion from double to int used to be slow, but
41 // as new benchmarks show, now it is much faster than lrint().
42 return static_cast<int>(x);
43}
44
45static inline unsigned int FastD2UI(double x);
Steve Blocka7e24c12009-10-30 11:49:00 +000046
47
48static inline double FastI2D(int x) {
49 // There is no rounding involved in converting an integer to a
50 // double, so this code should compile to a few instructions without
51 // any FPU pipeline stalls.
52 return static_cast<double>(x);
53}
54
55
56static inline double FastUI2D(unsigned x) {
57 // There is no rounding involved in converting an unsigned integer to a
58 // double, so this code should compile to a few instructions without
59 // any FPU pipeline stalls.
60 return static_cast<double>(x);
61}
62
63
64// This function should match the exact semantics of ECMA-262 9.4.
65static inline double DoubleToInteger(double x);
66
67
68// This function should match the exact semantics of ECMA-262 9.5.
69static inline int32_t DoubleToInt32(double x);
70
71
72// This function should match the exact semantics of ECMA-262 9.6.
73static inline uint32_t DoubleToUint32(double x) {
74 return static_cast<uint32_t>(DoubleToInt32(x));
75}
76
77
78// Returns the value (0 .. 15) of a hexadecimal character c.
79// If c is not a legal hexadecimal character, returns a value < 0.
80int HexValue(uc32 c);
81
82
83// Enumeration for allowing octals and ignoring junk when converting
84// strings to numbers.
85enum ConversionFlags {
86 NO_FLAGS = 0,
87 ALLOW_HEX = 1,
88 ALLOW_OCTALS = 2,
89 ALLOW_TRAILING_JUNK = 4
90};
91
92
93// Convert from Number object to C integer.
94static inline int32_t NumberToInt32(Object* number);
95static inline uint32_t NumberToUint32(Object* number);
96
97
98// Converts a string into a double value according to ECMA-262 9.3.1
Steve Blocka7e24c12009-10-30 11:49:00 +000099double StringToDouble(String* str, int flags, double empty_string_val = 0);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100100double StringToDouble(Vector<const char> str,
101 int flags,
102 double empty_string_val = 0);
103// This version expects a zero-terminated character array.
104double StringToDouble(const char* str, int flags, double empty_string_val = 0);
Steve Blocka7e24c12009-10-30 11:49:00 +0000105
106// Converts a string into an integer.
Steve Block6ded16b2010-05-10 14:33:55 +0100107double StringToInt(String* str, int radix);
Steve Blocka7e24c12009-10-30 11:49:00 +0000108
109// Converts a double to a string value according to ECMA-262 9.8.1.
110// The buffer should be large enough for any floating point number.
111// 100 characters is enough.
112const char* DoubleToCString(double value, Vector<char> buffer);
113
114// Convert an int to a null-terminated string. The returned string is
115// located inside the buffer, but not necessarily at the start.
116const char* IntToCString(int n, Vector<char> buffer);
117
118// Additional number to string conversions for the number type.
119// The caller is responsible for calling free on the returned pointer.
120char* DoubleToFixedCString(double value, int f);
121char* DoubleToExponentialCString(double value, int f);
122char* DoubleToPrecisionCString(double value, int f);
123char* DoubleToRadixCString(double value, int radix);
124
125} } // namespace v8::internal
126
127#endif // V8_CONVERSIONS_H_