test-dtoa.cc 11.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
// Copyright 2010 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include <stdlib.h>

30
#include "src/init/v8.h"
31

32
#include "src/numbers/dtoa.h"
33

34
#include "src/base/platform/platform.h"
35
#include "src/numbers/double.h"
36 37 38 39
#include "test/cctest/cctest.h"
#include "test/cctest/gay-fixed.h"
#include "test/cctest/gay-precision.h"
#include "test/cctest/gay-shortest.h"
40

41 42
namespace v8 {
namespace internal {
43
namespace test_dtoa {
44

45 46 47 48 49 50
// Removes trailing '0' digits (modifies {representation}). Can create an empty
// string if all digits are 0.
static void TrimRepresentation(char* representation) {
  size_t len = strlen(representation);
  while (len > 0 && representation[len - 1] == '0') --len;
  representation[len] = '\0';
51 52 53 54 55 56 57 58 59 60 61 62 63
}

static const int kBufferSize = 100;


TEST(DtoaVariousDoubles) {
  char buffer_container[kBufferSize];
  Vector<char> buffer(buffer_container, kBufferSize);
  int length;
  int point;
  int sign;

  DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
64
  CHECK_EQ(0, strcmp("0", buffer.begin()));
65 66 67 68
  CHECK_EQ(1, point);

  DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
  CHECK_EQ(1, length);
69
  CHECK_EQ(0, strcmp("0", buffer.begin()));
70 71 72 73
  CHECK_EQ(1, point);

  DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
  CHECK_EQ(1, length);
74
  CHECK_EQ(0, strcmp("0", buffer.begin()));
75 76 77
  CHECK_EQ(1, point);

  DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
78
  CHECK_EQ(0, strcmp("1", buffer.begin()));
79 80 81 82
  CHECK_EQ(1, point);

  DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point);
  CHECK_GE(3, length - point);
83
  TrimRepresentation(buffer.begin());
84
  CHECK_EQ(0, strcmp("1", buffer.begin()));
85 86 87 88
  CHECK_EQ(1, point);

  DoubleToAscii(1.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
  CHECK_GE(3, length);
89
  TrimRepresentation(buffer.begin());
90
  CHECK_EQ(0, strcmp("1", buffer.begin()));
91 92 93
  CHECK_EQ(1, point);

  DoubleToAscii(1.5, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
94
  CHECK_EQ(0, strcmp("15", buffer.begin()));
95 96 97 98
  CHECK_EQ(1, point);

  DoubleToAscii(1.5, DTOA_FIXED, 10, buffer, &sign, &length, &point);
  CHECK_GE(10, length - point);
99
  TrimRepresentation(buffer.begin());
100
  CHECK_EQ(0, strcmp("15", buffer.begin()));
101 102 103 104
  CHECK_EQ(1, point);

  DoubleToAscii(1.5, DTOA_PRECISION, 10, buffer, &sign, &length, &point);
  CHECK_GE(10, length);
105
  TrimRepresentation(buffer.begin());
106
  CHECK_EQ(0, strcmp("15", buffer.begin()));
107 108 109 110
  CHECK_EQ(1, point);

  double min_double = 5e-324;
  DoubleToAscii(min_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
111
  CHECK_EQ(0, strcmp("5", buffer.begin()));
112 113 114 115
  CHECK_EQ(-323, point);

  DoubleToAscii(min_double, DTOA_FIXED, 5, buffer, &sign, &length, &point);
  CHECK_GE(5, length - point);
116
  TrimRepresentation(buffer.begin());
117
  CHECK_EQ(0, strcmp("", buffer.begin()));
118 119 120 121
  CHECK_GE(-5, point);

  DoubleToAscii(min_double, DTOA_PRECISION, 5, buffer, &sign, &length, &point);
  CHECK_GE(5, length);
122
  TrimRepresentation(buffer.begin());
123
  CHECK_EQ(0, strcmp("49407", buffer.begin()));
124 125 126 127
  CHECK_EQ(-323, point);

  double max_double = 1.7976931348623157e308;
  DoubleToAscii(max_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
128
  CHECK_EQ(0, strcmp("17976931348623157", buffer.begin()));
129 130 131 132
  CHECK_EQ(309, point);

  DoubleToAscii(max_double, DTOA_PRECISION, 7, buffer, &sign, &length, &point);
  CHECK_GE(7, length);
133
  TrimRepresentation(buffer.begin());
134
  CHECK_EQ(0, strcmp("1797693", buffer.begin()));
135 136 137
  CHECK_EQ(309, point);

  DoubleToAscii(4294967272.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
138
  CHECK_EQ(0, strcmp("4294967272", buffer.begin()));
139 140 141 142
  CHECK_EQ(10, point);

  DoubleToAscii(4294967272.0, DTOA_FIXED, 5, buffer, &sign, &length, &point);
  CHECK_GE(5, length - point);
143
  TrimRepresentation(buffer.begin());
144
  CHECK_EQ(0, strcmp("4294967272", buffer.begin()));
145 146 147 148 149 150
  CHECK_EQ(10, point);


  DoubleToAscii(4294967272.0, DTOA_PRECISION, 14,
                buffer, &sign, &length, &point);
  CHECK_GE(14, length);
151
  TrimRepresentation(buffer.begin());
152
  CHECK_EQ(0, strcmp("4294967272", buffer.begin()));
153 154 155 156
  CHECK_EQ(10, point);

  DoubleToAscii(4.1855804968213567e298, DTOA_SHORTEST, 0,
                buffer, &sign, &length, &point);
157
  CHECK_EQ(0, strcmp("4185580496821357", buffer.begin()));
158 159 160 161 162
  CHECK_EQ(299, point);

  DoubleToAscii(4.1855804968213567e298, DTOA_PRECISION, 20,
                buffer, &sign, &length, &point);
  CHECK_GE(20, length);
163
  TrimRepresentation(buffer.begin());
164
  CHECK_EQ(0, strcmp("41855804968213567225", buffer.begin()));
165 166 167 168
  CHECK_EQ(299, point);

  DoubleToAscii(5.5626846462680035e-309, DTOA_SHORTEST, 0,
                buffer, &sign, &length, &point);
169
  CHECK_EQ(0, strcmp("5562684646268003", buffer.begin()));
170 171 172 173 174
  CHECK_EQ(-308, point);

  DoubleToAscii(5.5626846462680035e-309, DTOA_PRECISION, 1,
                buffer, &sign, &length, &point);
  CHECK_GE(1, length);
175
  TrimRepresentation(buffer.begin());
176
  CHECK_EQ(0, strcmp("6", buffer.begin()));
177 178 179 180 181
  CHECK_EQ(-308, point);

  DoubleToAscii(-2147483648.0, DTOA_SHORTEST, 0,
                buffer, &sign, &length, &point);
  CHECK_EQ(1, sign);
182
  CHECK_EQ(0, strcmp("2147483648", buffer.begin()));
183 184 185 186 187
  CHECK_EQ(10, point);


  DoubleToAscii(-2147483648.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
  CHECK_GE(2, length - point);
188
  TrimRepresentation(buffer.begin());
189
  CHECK_EQ(1, sign);
190
  CHECK_EQ(0, strcmp("2147483648", buffer.begin()));
191 192 193 194 195
  CHECK_EQ(10, point);

  DoubleToAscii(-2147483648.0, DTOA_PRECISION, 5,
                buffer, &sign, &length, &point);
  CHECK_GE(5, length);
196
  TrimRepresentation(buffer.begin());
197
  CHECK_EQ(1, sign);
198
  CHECK_EQ(0, strcmp("21475", buffer.begin()));
199 200 201 202 203
  CHECK_EQ(10, point);

  DoubleToAscii(-3.5844466002796428e+298, DTOA_SHORTEST, 0,
                buffer, &sign, &length, &point);
  CHECK_EQ(1, sign);
204
  CHECK_EQ(0, strcmp("35844466002796428", buffer.begin()));
205 206 207 208 209 210
  CHECK_EQ(299, point);

  DoubleToAscii(-3.5844466002796428e+298, DTOA_PRECISION, 10,
                buffer, &sign, &length, &point);
  CHECK_EQ(1, sign);
  CHECK_GE(10, length);
211
  TrimRepresentation(buffer.begin());
212
  CHECK_EQ(0, strcmp("35844466", buffer.begin()));
213 214 215 216 217
  CHECK_EQ(299, point);

  uint64_t smallest_normal64 = V8_2PART_UINT64_C(0x00100000, 00000000);
  double v = Double(smallest_normal64).value();
  DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
218
  CHECK_EQ(0, strcmp("22250738585072014", buffer.begin()));
219 220 221 222
  CHECK_EQ(-307, point);

  DoubleToAscii(v, DTOA_PRECISION, 20, buffer, &sign, &length, &point);
  CHECK_GE(20, length);
223
  TrimRepresentation(buffer.begin());
224
  CHECK_EQ(0, strcmp("22250738585072013831", buffer.begin()));
225 226 227 228 229
  CHECK_EQ(-307, point);

  uint64_t largest_denormal64 = V8_2PART_UINT64_C(0x000FFFFF, FFFFFFFF);
  v = Double(largest_denormal64).value();
  DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
230
  CHECK_EQ(0, strcmp("2225073858507201", buffer.begin()));
231 232 233 234
  CHECK_EQ(-307, point);

  DoubleToAscii(v, DTOA_PRECISION, 20, buffer, &sign, &length, &point);
  CHECK_GE(20, length);
235
  TrimRepresentation(buffer.begin());
236
  CHECK_EQ(0, strcmp("2225073858507200889", buffer.begin()));
237 238 239 240 241
  CHECK_EQ(-307, point);

  DoubleToAscii(4128420500802942e-24, DTOA_SHORTEST, 0,
                buffer, &sign, &length, &point);
  CHECK_EQ(0, sign);
242
  CHECK_EQ(0, strcmp("4128420500802942", buffer.begin()));
243 244 245 246
  CHECK_EQ(-8, point);

  v = -3.9292015898194142585311918e-10;
  DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
247
  CHECK_EQ(0, strcmp("39292015898194143", buffer.begin()));
248 249 250 251

  v = 4194304.0;
  DoubleToAscii(v, DTOA_FIXED, 5, buffer, &sign, &length, &point);
  CHECK_GE(5, length - point);
252
  TrimRepresentation(buffer.begin());
253
  CHECK_EQ(0, strcmp("4194304", buffer.begin()));
254 255 256 257

  v = 3.3161339052167390562200598e-237;
  DoubleToAscii(v, DTOA_PRECISION, 19, buffer, &sign, &length, &point);
  CHECK_GE(19, length);
258
  TrimRepresentation(buffer.begin());
259
  CHECK_EQ(0, strcmp("3316133905216739056", buffer.begin()));
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
  CHECK_EQ(-236, point);
}


TEST(DtoaGayShortest) {
  char buffer_container[kBufferSize];
  Vector<char> buffer(buffer_container, kBufferSize);
  int sign;
  int length;
  int point;

  Vector<const PrecomputedShortest> precomputed =
      PrecomputedShortestRepresentations();
  for (int i = 0; i < precomputed.length(); ++i) {
    const PrecomputedShortest current_test = precomputed[i];
    double v = current_test.v;
    DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
    CHECK_EQ(0, sign);  // All precomputed numbers are positive.
    CHECK_EQ(current_test.decimal_point, point);
279
    CHECK_EQ(0, strcmp(current_test.representation, buffer.begin()));
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
  }
}


TEST(DtoaGayFixed) {
  char buffer_container[kBufferSize];
  Vector<char> buffer(buffer_container, kBufferSize);
  int sign;
  int length;
  int point;

  Vector<const PrecomputedFixed> precomputed =
      PrecomputedFixedRepresentations();
  for (int i = 0; i < precomputed.length(); ++i) {
    const PrecomputedFixed current_test = precomputed[i];
    double v = current_test.v;
    int number_digits = current_test.number_digits;
    DoubleToAscii(v, DTOA_FIXED, number_digits, buffer, &sign, &length, &point);
    CHECK_EQ(0, sign);  // All precomputed numbers are positive.
    CHECK_EQ(current_test.decimal_point, point);
    CHECK_GE(number_digits, length - point);
301
    TrimRepresentation(buffer.begin());
302
    CHECK_EQ(0, strcmp(current_test.representation, buffer.begin()));
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
  }
}


TEST(DtoaGayPrecision) {
  char buffer_container[kBufferSize];
  Vector<char> buffer(buffer_container, kBufferSize);
  int sign;
  int length;
  int point;

  Vector<const PrecomputedPrecision> precomputed =
      PrecomputedPrecisionRepresentations();
  for (int i = 0; i < precomputed.length(); ++i) {
    const PrecomputedPrecision current_test = precomputed[i];
    double v = current_test.v;
    int number_digits = current_test.number_digits;
    DoubleToAscii(v, DTOA_PRECISION, number_digits,
                  buffer, &sign, &length, &point);
    CHECK_EQ(0, sign);  // All precomputed numbers are positive.
    CHECK_EQ(current_test.decimal_point, point);
    CHECK_GE(number_digits, length);
325
    TrimRepresentation(buffer.begin());
326
    CHECK_EQ(0, strcmp(current_test.representation, buffer.begin()));
327 328
  }
}
329

330
}  // namespace test_dtoa
331 332
}  // namespace internal
}  // namespace v8