blob: 312e6aee5483472cb95bba074f69eb37ae6e2aae [file] [log] [blame]
ager@chromium.org9258b6b2008-09-11 09:11:10 +00001// Copyright 2006-2008 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// 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
kasperl@chromium.org71affb52009-05-26 05:44:31 +000031namespace v8 {
32namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000033
ager@chromium.org3811b432009-10-28 14:53:37 +000034
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000035// The fast double-to-(unsigned-)int conversion routine does not guarantee
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +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.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000039static 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
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000045static inline unsigned int FastD2UI(double x);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +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
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000078// Enumeration for allowing octals and ignoring junk when converting
79// strings to numbers.
80enum ConversionFlags {
81 NO_FLAGS = 0,
82 ALLOW_HEX = 1,
83 ALLOW_OCTALS = 2,
84 ALLOW_TRAILING_JUNK = 4
85};
86
87
88// Convert from Number object to C integer.
89static inline int32_t NumberToInt32(Object* number);
90static inline uint32_t NumberToUint32(Object* number);
91
92
93// Converts a string into a double value according to ECMA-262 9.3.1
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000094double StringToDouble(String* str, int flags, double empty_string_val = 0);
ricow@chromium.org65fae842010-08-25 15:26:24 +000095double StringToDouble(Vector<const char> str,
96 int flags,
97 double empty_string_val = 0);
98// This version expects a zero-terminated character array.
99double StringToDouble(const char* str, int flags, double empty_string_val = 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000100
101// Converts a string into an integer.
lrn@chromium.org25156de2010-04-06 13:10:27 +0000102double StringToInt(String* str, int radix);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000103
104// Converts a double to a string value according to ECMA-262 9.8.1.
105// The buffer should be large enough for any floating point number.
106// 100 characters is enough.
107const char* DoubleToCString(double value, Vector<char> buffer);
108
109// Convert an int to a null-terminated string. The returned string is
110// located inside the buffer, but not necessarily at the start.
111const char* IntToCString(int n, Vector<char> buffer);
112
113// Additional number to string conversions for the number type.
114// The caller is responsible for calling free on the returned pointer.
115char* DoubleToFixedCString(double value, int f);
116char* DoubleToExponentialCString(double value, int f);
117char* DoubleToPrecisionCString(double value, int f);
118char* DoubleToRadixCString(double value, int radix);
119
120} } // namespace v8::internal
121
122#endif // V8_CONVERSIONS_H_