bigint-unittest.cc 4.49 KB
Newer Older
1 2 3 4 5 6 7
// Copyright 2017 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <cmath>

#include "src/conversions.h"
8
#include "src/heap/factory.h"
9 10
#include "src/isolate.h"
#include "src/objects-inl.h"
11
#include "src/objects/bigint.h"
12 13 14 15 16 17 18 19 20 21 22 23 24
#include "test/unittests/test-utils.h"

#include "testing/gtest/include/gtest/gtest.h"

namespace v8 {
namespace internal {

typedef TestWithIsolate BigIntWithIsolate;

void Compare(Handle<BigInt> x, double value, ComparisonResult expected) {
  CHECK_EQ(expected, BigInt::CompareToDouble(x, value));
}

25 26 27 28 29
Handle<BigInt> NewFromInt(Isolate* isolate, int value) {
  Handle<Smi> smi_value = handle(Smi::FromInt(value), isolate);
  return BigInt::FromNumber(isolate, smi_value).ToHandleChecked();
}

30
TEST_F(BigIntWithIsolate, CompareToDouble) {
31 32 33
  Handle<BigInt> zero = NewFromInt(isolate(), 0);
  Handle<BigInt> one = NewFromInt(isolate(), 1);
  Handle<BigInt> minus_one = NewFromInt(isolate(), -1);
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

  // Non-finite doubles.
  Compare(zero, std::nan(""), ComparisonResult::kUndefined);
  Compare(one, INFINITY, ComparisonResult::kLessThan);
  Compare(one, -INFINITY, ComparisonResult::kGreaterThan);

  // Unequal sign.
  Compare(one, -1, ComparisonResult::kGreaterThan);
  Compare(minus_one, 1, ComparisonResult::kLessThan);

  // Cases involving zero.
  Compare(zero, 0, ComparisonResult::kEqual);
  Compare(zero, -0, ComparisonResult::kEqual);
  Compare(one, 0, ComparisonResult::kGreaterThan);
  Compare(minus_one, 0, ComparisonResult::kLessThan);
  Compare(zero, 1, ComparisonResult::kLessThan);
  Compare(zero, -1, ComparisonResult::kGreaterThan);

  // Small doubles.
  Compare(zero, 0.25, ComparisonResult::kLessThan);
  Compare(one, 0.5, ComparisonResult::kGreaterThan);
  Compare(one, -0.5, ComparisonResult::kGreaterThan);
  Compare(zero, -0.25, ComparisonResult::kGreaterThan);
  Compare(minus_one, -0.5, ComparisonResult::kLessThan);

  // Different bit lengths.
60 61
  Handle<BigInt> four = NewFromInt(isolate(), 4);
  Handle<BigInt> minus_five = NewFromInt(isolate(), -5);
62 63 64 65 66 67 68 69 70 71 72
  Compare(four, 3.9, ComparisonResult::kGreaterThan);
  Compare(four, 1.5, ComparisonResult::kGreaterThan);
  Compare(four, 8, ComparisonResult::kLessThan);
  Compare(four, 16, ComparisonResult::kLessThan);
  Compare(minus_five, -4.9, ComparisonResult::kLessThan);
  Compare(minus_five, -4, ComparisonResult::kLessThan);
  Compare(minus_five, -25, ComparisonResult::kGreaterThan);

  // Same bit length, difference in first digit.
  double big_double = 4428155326412785451008.0;
  Handle<BigInt> big =
73
      BigIntLiteral(isolate(), "0xF10D00000000000000").ToHandleChecked();
74
  Compare(big, big_double, ComparisonResult::kGreaterThan);
75
  big = BigIntLiteral(isolate(), "0xE00D00000000000000").ToHandleChecked();
76 77 78 79
  Compare(big, big_double, ComparisonResult::kLessThan);

  double other_double = -13758438578910658560.0;
  Handle<BigInt> other =
80
      BigIntLiteral(isolate(), "-0xBEEFC1FE00000000").ToHandleChecked();
81
  Compare(other, other_double, ComparisonResult::kGreaterThan);
82
  other = BigIntLiteral(isolate(), "-0xBEEFCBFE00000000").ToHandleChecked();
83 84 85
  Compare(other, other_double, ComparisonResult::kLessThan);

  // Same bit length, difference in non-first digit.
86
  big = BigIntLiteral(isolate(), "0xF00D00000000000001").ToHandleChecked();
87
  Compare(big, big_double, ComparisonResult::kGreaterThan);
88
  big = BigIntLiteral(isolate(), "0xF00A00000000000000").ToHandleChecked();
89 90
  Compare(big, big_double, ComparisonResult::kLessThan);

91
  other = BigIntLiteral(isolate(), "-0xBEEFCAFE00000001").ToHandleChecked();
92 93 94 95 96
  Compare(other, other_double, ComparisonResult::kLessThan);

  // Same bit length, difference in fractional part.
  Compare(one, 1.5, ComparisonResult::kLessThan);
  Compare(minus_one, -1.25, ComparisonResult::kGreaterThan);
97
  big = NewFromInt(isolate(), 0xF00D00);
98 99
  Compare(big, 15731968.125, ComparisonResult::kLessThan);
  Compare(big, 15731967.875, ComparisonResult::kGreaterThan);
100
  big = BigIntLiteral(isolate(), "0x123456789AB").ToHandleChecked();
101 102 103 104 105
  Compare(big, 1250999896491.125, ComparisonResult::kLessThan);

  // Equality!
  Compare(one, 1, ComparisonResult::kEqual);
  Compare(minus_one, -1, ComparisonResult::kEqual);
106
  big = BigIntLiteral(isolate(), "0xF00D00000000000000").ToHandleChecked();
107 108 109
  Compare(big, big_double, ComparisonResult::kEqual);

  Handle<BigInt> two_52 =
110
      BigIntLiteral(isolate(), "0x10000000000000").ToHandleChecked();
111 112 113 114 115
  Compare(two_52, 4503599627370496.0, ComparisonResult::kEqual);
}

}  // namespace internal
}  // namespace v8