blob: bdc7e44a165e8152702c0dd53336ea278e8ab80f [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.
39static inline int FastD2I(double x);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000040static inline unsigned int FastD2UI(double x);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000041
42
43static inline double FastI2D(int x) {
44 // There is no rounding involved in converting an integer to a
45 // double, so this code should compile to a few instructions without
46 // any FPU pipeline stalls.
47 return static_cast<double>(x);
48}
49
50
51static inline double FastUI2D(unsigned x) {
52 // There is no rounding involved in converting an unsigned integer to a
53 // double, so this code should compile to a few instructions without
54 // any FPU pipeline stalls.
55 return static_cast<double>(x);
56}
57
58
59// This function should match the exact semantics of ECMA-262 9.4.
60static inline double DoubleToInteger(double x);
61
62
63// This function should match the exact semantics of ECMA-262 9.5.
64static inline int32_t DoubleToInt32(double x);
65
66
67// This function should match the exact semantics of ECMA-262 9.6.
68static inline uint32_t DoubleToUint32(double x) {
69 return static_cast<uint32_t>(DoubleToInt32(x));
70}
71
72
73// Returns the value (0 .. 15) of a hexadecimal character c.
74// If c is not a legal hexadecimal character, returns a value < 0.
75int HexValue(uc32 c);
76
77
78// 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
94double StringToDouble(const char* str, int flags, double empty_string_val = 0);
95double StringToDouble(String* str, int flags, double empty_string_val = 0);
96
97// Converts a string into an integer.
98int StringToInt(String* str, int index, int radix, double* value);
99int StringToInt(const char* str, int index, int radix, double* value);
100
101// Converts a double to a string value according to ECMA-262 9.8.1.
102// The buffer should be large enough for any floating point number.
103// 100 characters is enough.
104const char* DoubleToCString(double value, Vector<char> buffer);
105
106// Convert an int to a null-terminated string. The returned string is
107// located inside the buffer, but not necessarily at the start.
108const char* IntToCString(int n, Vector<char> buffer);
109
110// Additional number to string conversions for the number type.
111// The caller is responsible for calling free on the returned pointer.
112char* DoubleToFixedCString(double value, int f);
113char* DoubleToExponentialCString(double value, int f);
114char* DoubleToPrecisionCString(double value, int f);
115char* DoubleToRadixCString(double value, int radix);
116
117} } // namespace v8::internal
118
119#endif // V8_CONVERSIONS_H_