blob: 00233a882933bcd5f5d16123b73cdc8052d8a1fb [file] [log] [blame]
Ben Murdoch589d6972011-11-30 16:04:58 +00001// Copyright 2011 the V8 project authors. All rights reserved.
Kristian Monsen25f61362010-05-21 11:50:48 +01002// 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#include <math.h>
29
Ben Murdoch589d6972011-11-30 16:04:58 +000030#include "../include/v8stdint.h"
31#include "checks.h"
32#include "utils.h"
33
Kristian Monsen25f61362010-05-21 11:50:48 +010034#include "dtoa.h"
35
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080036#include "bignum-dtoa.h"
Kristian Monsen25f61362010-05-21 11:50:48 +010037#include "double.h"
38#include "fast-dtoa.h"
39#include "fixed-dtoa.h"
40
41namespace v8 {
42namespace internal {
43
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080044static BignumDtoaMode DtoaToBignumDtoaMode(DtoaMode dtoa_mode) {
45 switch (dtoa_mode) {
46 case DTOA_SHORTEST: return BIGNUM_DTOA_SHORTEST;
47 case DTOA_FIXED: return BIGNUM_DTOA_FIXED;
48 case DTOA_PRECISION: return BIGNUM_DTOA_PRECISION;
49 default:
50 UNREACHABLE();
51 return BIGNUM_DTOA_SHORTEST; // To silence compiler.
52 }
53}
54
55
56void DoubleToAscii(double v, DtoaMode mode, int requested_digits,
Kristian Monsen25f61362010-05-21 11:50:48 +010057 Vector<char> buffer, int* sign, int* length, int* point) {
58 ASSERT(!Double(v).IsSpecial());
59 ASSERT(mode == DTOA_SHORTEST || requested_digits >= 0);
60
61 if (Double(v).Sign() < 0) {
62 *sign = 1;
63 v = -v;
64 } else {
65 *sign = 0;
66 }
67
68 if (v == 0) {
69 buffer[0] = '0';
70 buffer[1] = '\0';
71 *length = 1;
72 *point = 1;
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080073 return;
Kristian Monsen25f61362010-05-21 11:50:48 +010074 }
75
76 if (mode == DTOA_PRECISION && requested_digits == 0) {
77 buffer[0] = '\0';
78 *length = 0;
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080079 return;
Kristian Monsen25f61362010-05-21 11:50:48 +010080 }
81
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080082 bool fast_worked;
Kristian Monsen25f61362010-05-21 11:50:48 +010083 switch (mode) {
84 case DTOA_SHORTEST:
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080085 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, length, point);
86 break;
Kristian Monsen25f61362010-05-21 11:50:48 +010087 case DTOA_FIXED:
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080088 fast_worked = FastFixedDtoa(v, requested_digits, buffer, length, point);
89 break;
Kristian Monsen0d5e1162010-09-30 15:31:59 +010090 case DTOA_PRECISION:
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080091 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits,
92 buffer, length, point);
93 break;
94 default:
95 UNREACHABLE();
96 fast_worked = false;
Kristian Monsen25f61362010-05-21 11:50:48 +010097 }
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080098 if (fast_worked) return;
99
100 // If the fast dtoa didn't succeed use the slower bignum version.
101 BignumDtoaMode bignum_mode = DtoaToBignumDtoaMode(mode);
102 BignumDtoa(v, bignum_mode, requested_digits, buffer, length, point);
103 buffer[*length] = '\0';
Kristian Monsen25f61362010-05-21 11:50:48 +0100104}
105
106} } // namespace v8::internal