v8  3.14.5(node0.10.28)
V8 is Google's open source JavaScript engine
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
conversions.h
Go to the documentation of this file.
1 // Copyright 2011 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 
31 #include "utils.h"
32 
33 namespace v8 {
34 namespace internal {
35 
36 class UnicodeCache;
37 
38 // 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.
45 const int kMaxSignificantDigits = 772;
46 
47 
48 inline bool isDigit(int x, int radix) {
49  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 
55 // The fast double-to-(unsigned-)int conversion routine does not guarantee
56 // rounding towards zero.
57 // For NaN and values outside the int range, return INT_MIN or INT_MAX.
58 inline int FastD2IChecked(double x) {
59  if (!(x >= INT_MIN)) return INT_MIN; // Negation to catch NaNs.
60  if (x > INT_MAX) return INT_MAX;
61  return static_cast<int>(x);
62 }
63 
64 
65 // The fast double-to-(unsigned-)int conversion routine does not guarantee
66 // rounding towards zero.
67 // The result is unspecified if x is infinite or NaN, or if the rounded
68 // integer value is outside the range of type int.
69 inline int FastD2I(double x) {
70  return static_cast<int>(x);
71 }
72 
73 inline unsigned int FastD2UI(double x);
74 
75 
76 inline double FastI2D(int x) {
77  // There is no rounding involved in converting an integer to a
78  // double, so this code should compile to a few instructions without
79  // any FPU pipeline stalls.
80  return static_cast<double>(x);
81 }
82 
83 
84 inline double FastUI2D(unsigned x) {
85  // There is no rounding involved in converting an unsigned integer to a
86  // double, so this code should compile to a few instructions without
87  // any FPU pipeline stalls.
88  return static_cast<double>(x);
89 }
90 
91 
92 // This function should match the exact semantics of ECMA-262 9.4.
93 inline double DoubleToInteger(double x);
94 
95 
96 // This function should match the exact semantics of ECMA-262 9.5.
97 inline int32_t DoubleToInt32(double x);
98 
99 
100 // This function should match the exact semantics of ECMA-262 9.6.
101 inline uint32_t DoubleToUint32(double x) {
102  return static_cast<uint32_t>(DoubleToInt32(x));
103 }
104 
105 
106 // Enumeration for allowing octals and ignoring junk when converting
107 // strings to numbers.
109  NO_FLAGS = 0,
113 };
114 
115 
116 // Converts a string into a double value according to ECMA-262 9.3.1
117 double StringToDouble(UnicodeCache* unicode_cache,
118  Vector<const char> str,
119  int flags,
120  double empty_string_val = 0);
121 double StringToDouble(UnicodeCache* unicode_cache,
122  Vector<const uc16> str,
123  int flags,
124  double empty_string_val = 0);
125 // This version expects a zero-terminated character array.
126 double StringToDouble(UnicodeCache* unicode_cache,
127  const char* str,
128  int flags,
129  double empty_string_val = 0);
130 
132 
133 // Converts a double to a string value according to ECMA-262 9.8.1.
134 // The buffer should be large enough for any floating point number.
135 // 100 characters is enough.
136 const char* DoubleToCString(double value, Vector<char> buffer);
137 
138 // Convert an int to a null-terminated string. The returned string is
139 // located inside the buffer, but not necessarily at the start.
140 const char* IntToCString(int n, Vector<char> buffer);
141 
142 // Additional number to string conversions for the number type.
143 // The caller is responsible for calling free on the returned pointer.
144 char* DoubleToFixedCString(double value, int f);
145 char* DoubleToExponentialCString(double value, int f);
146 char* DoubleToPrecisionCString(double value, int f);
147 char* DoubleToRadixCString(double value, int radix);
148 
149 } } // namespace v8::internal
150 
151 #endif // V8_CONVERSIONS_H_
double DoubleToInteger(double x)
int int32_t
Definition: unicode.cc:47
bool isDigit(int x, int radix)
Definition: conversions.h:48
double StringToDouble(UnicodeCache *unicode_cache, const char *str, int flags, double empty_string_val)
Definition: conversions.cc:41
const int kDoubleToCStringMinBufferSize
Definition: conversions.h:131
const char * IntToCString(int n, Vector< char > buffer)
Definition: conversions.cc:123
int FastD2IChecked(double x)
Definition: conversions.h:58
const char * DoubleToCString(double v, Vector< char > buffer)
Definition: conversions.cc:68
unsigned int FastD2UI(double x)
double FastUI2D(unsigned x)
Definition: conversions.h:84
const int kMaxSignificantDigits
Definition: conversions.h:45
uint32_t DoubleToUint32(double x)
Definition: conversions.h:101
char * DoubleToPrecisionCString(double value, int p)
Definition: conversions.cc:292
int32_t DoubleToInt32(double x)
double FastI2D(int x)
Definition: conversions.h:76
char * DoubleToExponentialCString(double value, int f)
Definition: conversions.cc:247
char * DoubleToRadixCString(double value, int radix)
Definition: conversions.cc:362
activate correct semantics for inheriting readonliness enable harmony semantics for typeof enable harmony enable harmony proxies enable all harmony harmony_scoping harmony_proxies harmony_scoping tracks arrays with only smi values automatically unbox arrays of doubles use crankshaft use hydrogen range analysis use hydrogen global value numbering use function inlining maximum number of AST nodes considered for a single inlining loop invariant code motion print statistics for hydrogen trace generated IR for specified phases trace register allocator trace range analysis trace representation types environment for every instruction put a break point before deoptimizing polymorphic inlining perform array bounds checks elimination use dead code elimination trace on stack replacement optimize closures cache optimized code for closures functions with arguments object loop weight for representation inference allow uint32 values on optimize frames if they are used only in safe operations track parallel recompilation enable all profiler experiments number of stack frames inspected by the profiler call recompile stub directly when self optimizing trigger profiler ticks based on counting instead of timing weight back edges by jump distance for interrupt triggering percentage of ICs that must have type info to allow optimization watch_ic_patching retry_self_opt interrupt_at_exit extra verbose compilation tracing generate extra emit comments in code disassembly enable use of SSE3 instructions if available enable use of CMOV instruction if available enable use of SAHF instruction if enable use of VFP3 instructions if available this implies enabling ARMv7 and VFP2 enable use of VFP2 instructions if available enable use of SDIV and UDIV instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of MIPS FPU instructions if expose natives in global object expose gc extension number of stack frames to capture disable builtin natives files print a stack trace if an assertion failure occurs use random jit cookie to mask large constants trace lazy optimization use adaptive optimizations prepare for turning on always opt minimum length for automatic enable preparsing maximum number of optimization attempts before giving up cache prototype transitions automatically set the debug break flag when debugger commands are in the queue always cause a debug break before aborting maximum length of function source code printed in a stack trace max size of the new max size of the old max size of executable always perform global GCs print one trace line following each garbage collection do not print trace line after scavenger collection print more details following each garbage collection print amount of external allocated memory after each time it is adjusted flush code that we expect not to use again before full gc do incremental marking steps track object counts and memory usage use caching Perform compaction on every full GC Never perform compaction on full GC testing only Compact code space on full incremental collections Default seed for initializing random allows verbose printing trace parsing and preparsing Check icache flushes in ARM and MIPS simulator Stack alingment in bytes in print stack trace when throwing exceptions randomize hashes to avoid predictable hash Fixed seed to use to hash property activate a timer that switches between V8 threads testing_bool_flag float flag Seed used for threading test randomness A filename with extra code to be included in the Print usage including flags
Definition: flags.cc:495
int FastD2I(double x)
Definition: conversions.h:69
char * DoubleToFixedCString(double value, int f)
Definition: conversions.cc:143