blob: f850f581f06a573dd954401651aa02b36ed95147 [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
ricow@chromium.org55ee8072011-09-08 16:33:10 +000031#include "utils.h"
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +000032
kasperl@chromium.org71affb52009-05-26 05:44:31 +000033namespace v8 {
34namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000035
ricow@chromium.org55ee8072011-09-08 16:33:10 +000036class UnicodeCache;
37
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +000038// Maximum number of significant digits in decimal representation.
39// The longest possible double in decimal representation is
40// (2^53 - 1) * 2 ^ -1074 that is (2 ^ 53 - 1) * 5 ^ 1074 / 10 ^ 1074
41// (768 digits). If we parse a number whose first digits are equal to a
42// mean of 2 adjacent doubles (that could have up to 769 digits) the result
43// must be rounded to the bigger one unless the tail consists of zeros, so
44// we don't need to preserve all the digits.
45const int kMaxSignificantDigits = 772;
46
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +000047
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +000048inline bool isDigit(int x, int radix) {
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +000049 return (x >= '0' && x <= '9' && x < '0' + radix)
50 || (radix > 10 && x >= 'a' && x < 'a' + radix - 10)
51 || (radix > 10 && x >= 'A' && x < 'A' + radix - 10);
52}
53
54
jkummerow@chromium.orgba72ec82013-07-22 09:21:20 +000055inline bool isBinaryDigit(int x) {
56 return x == '0' || x == '1';
57}
58
59
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +000060// The fast double-to-(unsigned-)int conversion routine does not guarantee
61// rounding towards zero.
62// For NaN and values outside the int range, return INT_MIN or INT_MAX.
63inline int FastD2IChecked(double x) {
64 if (!(x >= INT_MIN)) return INT_MIN; // Negation to catch NaNs.
65 if (x > INT_MAX) return INT_MAX;
66 return static_cast<int>(x);
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +000067}
68
ager@chromium.org3811b432009-10-28 14:53:37 +000069
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000070// The fast double-to-(unsigned-)int conversion routine does not guarantee
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000071// rounding towards zero.
72// The result is unspecified if x is infinite or NaN, or if the rounded
73// integer value is outside the range of type int.
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +000074inline int FastD2I(double x) {
hpayer@chromium.orgea9b8ba2013-12-20 19:22:39 +000075 return static_cast<int32_t>(x);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000076}
77
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +000078inline unsigned int FastD2UI(double x);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000079
80
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +000081inline double FastI2D(int x) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000082 // There is no rounding involved in converting an integer to a
83 // double, so this code should compile to a few instructions without
84 // any FPU pipeline stalls.
85 return static_cast<double>(x);
86}
87
88
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +000089inline double FastUI2D(unsigned x) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000090 // There is no rounding involved in converting an unsigned integer to a
91 // double, so this code should compile to a few instructions without
92 // any FPU pipeline stalls.
93 return static_cast<double>(x);
94}
95
96
97// This function should match the exact semantics of ECMA-262 9.4.
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +000098inline double DoubleToInteger(double x);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000099
100
101// This function should match the exact semantics of ECMA-262 9.5.
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000102inline int32_t DoubleToInt32(double x);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000103
104
105// This function should match the exact semantics of ECMA-262 9.6.
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000106inline uint32_t DoubleToUint32(double x) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000107 return static_cast<uint32_t>(DoubleToInt32(x));
108}
109
110
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000111// Enumeration for allowing octals and ignoring junk when converting
112// strings to numbers.
113enum ConversionFlags {
114 NO_FLAGS = 0,
115 ALLOW_HEX = 1,
jkummerow@chromium.orgba72ec82013-07-22 09:21:20 +0000116 ALLOW_OCTAL = 2,
117 ALLOW_IMPLICIT_OCTAL = 4,
118 ALLOW_BINARY = 8,
119 ALLOW_TRAILING_JUNK = 16
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000120};
121
122
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000123// Converts a string into a double value according to ECMA-262 9.3.1
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +0000124double StringToDouble(UnicodeCache* unicode_cache,
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +0000125 Vector<const char> str,
ricow@chromium.org65fae842010-08-25 15:26:24 +0000126 int flags,
127 double empty_string_val = 0);
danno@chromium.org40cb8782011-05-25 07:58:50 +0000128double StringToDouble(UnicodeCache* unicode_cache,
129 Vector<const uc16> str,
130 int flags,
131 double empty_string_val = 0);
ricow@chromium.org65fae842010-08-25 15:26:24 +0000132// This version expects a zero-terminated character array.
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +0000133double StringToDouble(UnicodeCache* unicode_cache,
134 const char* str,
135 int flags,
136 double empty_string_val = 0);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000137
ricow@chromium.org55ee8072011-09-08 16:33:10 +0000138const int kDoubleToCStringMinBufferSize = 100;
139
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000140// Converts a double to a string value according to ECMA-262 9.8.1.
141// The buffer should be large enough for any floating point number.
142// 100 characters is enough.
143const char* DoubleToCString(double value, Vector<char> buffer);
144
145// Convert an int to a null-terminated string. The returned string is
146// located inside the buffer, but not necessarily at the start.
147const char* IntToCString(int n, Vector<char> buffer);
148
149// Additional number to string conversions for the number type.
150// The caller is responsible for calling free on the returned pointer.
151char* DoubleToFixedCString(double value, int f);
152char* DoubleToExponentialCString(double value, int f);
153char* DoubleToPrecisionCString(double value, int f);
154char* DoubleToRadixCString(double value, int radix);
155
156} } // namespace v8::internal
157
158#endif // V8_CONVERSIONS_H_