blob: a14dc9ae1b2f04fcf072810e64c842f54081377e [file] [log] [blame]
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +00001// Copyright 2011 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
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +000031#include "scanner-base.h"
32
kasperl@chromium.org71affb52009-05-26 05:44:31 +000033namespace v8 {
34namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000035
ager@chromium.org3811b432009-10-28 14:53:37 +000036
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000037// The fast double-to-(unsigned-)int conversion routine does not guarantee
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000038// rounding towards zero.
39// The result is unspecified if x is infinite or NaN, or if the rounded
40// integer value is outside the range of type int.
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000041static inline int FastD2I(double x) {
42 // The static_cast convertion from double to int used to be slow, but
43 // as new benchmarks show, now it is much faster than lrint().
44 return static_cast<int>(x);
45}
46
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000047static inline unsigned int FastD2UI(double x);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000048
49
50static inline double FastI2D(int x) {
51 // There is no rounding involved in converting an integer to a
52 // double, so this code should compile to a few instructions without
53 // any FPU pipeline stalls.
54 return static_cast<double>(x);
55}
56
57
58static inline double FastUI2D(unsigned x) {
59 // There is no rounding involved in converting an unsigned integer to a
60 // double, so this code should compile to a few instructions without
61 // any FPU pipeline stalls.
62 return static_cast<double>(x);
63}
64
65
66// This function should match the exact semantics of ECMA-262 9.4.
67static inline double DoubleToInteger(double x);
68
69
70// This function should match the exact semantics of ECMA-262 9.5.
71static inline int32_t DoubleToInt32(double x);
72
73
74// This function should match the exact semantics of ECMA-262 9.6.
75static inline uint32_t DoubleToUint32(double x) {
76 return static_cast<uint32_t>(DoubleToInt32(x));
77}
78
79
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000080// Enumeration for allowing octals and ignoring junk when converting
81// strings to numbers.
82enum ConversionFlags {
83 NO_FLAGS = 0,
84 ALLOW_HEX = 1,
85 ALLOW_OCTALS = 2,
86 ALLOW_TRAILING_JUNK = 4
87};
88
89
90// Convert from Number object to C integer.
91static inline int32_t NumberToInt32(Object* number);
92static inline uint32_t NumberToUint32(Object* number);
93
94
95// Converts a string into a double value according to ECMA-262 9.3.1
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +000096double StringToDouble(UnicodeCache* unicode_cache,
97 String* str,
98 int flags,
99 double empty_string_val = 0);
100double StringToDouble(UnicodeCache* unicode_cache,
101 Vector<const char> str,
ricow@chromium.org65fae842010-08-25 15:26:24 +0000102 int flags,
103 double empty_string_val = 0);
104// This version expects a zero-terminated character array.
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +0000105double StringToDouble(UnicodeCache* unicode_cache,
106 const char* str,
107 int flags,
108 double empty_string_val = 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000109
110// Converts a string into an integer.
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +0000111double StringToInt(UnicodeCache* unicode_cache, String* str, int radix);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000112
113// Converts a double to a string value according to ECMA-262 9.8.1.
114// The buffer should be large enough for any floating point number.
115// 100 characters is enough.
116const char* DoubleToCString(double value, Vector<char> buffer);
117
118// Convert an int to a null-terminated string. The returned string is
119// located inside the buffer, but not necessarily at the start.
120const char* IntToCString(int n, Vector<char> buffer);
121
122// Additional number to string conversions for the number type.
123// The caller is responsible for calling free on the returned pointer.
124char* DoubleToFixedCString(double value, int f);
125char* DoubleToExponentialCString(double value, int f);
126char* DoubleToPrecisionCString(double value, int f);
127char* DoubleToRadixCString(double value, int radix);
128
129} } // namespace v8::internal
130
131#endif // V8_CONVERSIONS_H_