mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
24b8399086
Small --optimization-counter-threshold makes tests very slow, especially on architectures where kernel service runs from kernel and not from app-jit snapshot. TEST=change in tests, *-ia32 bots Fixes https://github.com/dart-lang/sdk/issues/48627 Change-Id: I63e7e201ef9a0e4f645016c39a5be1819b61822d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/263421 Commit-Queue: Alexander Markov <alexmarkov@google.com> Reviewed-by: Ryan Macnak <rmacnak@google.com>
48 lines
1.5 KiB
Dart
48 lines
1.5 KiB
Dart
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// @dart = 2.9
|
|
|
|
// Testing Bigints with and without intrinsics.
|
|
// VMOptions=--intrinsify --no-enable-asserts
|
|
// VMOptions=--intrinsify --enable-asserts
|
|
// VMOptions=--no-intrinsify --enable-asserts
|
|
// VMOptions=--optimization-counter-threshold=20 --no-background-compilation
|
|
|
|
// Test for JavaScript specific BigInt behaviour. Any JavaScript number (double)
|
|
// that is an integral value is a Dart 'int' value, so any BigInt that has a
|
|
// value that is exactly a double integral value should return `true` for
|
|
// [BigInt.isValidInt].
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
int intPow(int a, int p) {
|
|
int result = 1;
|
|
for (int i = 0; i < p; i++) result *= a;
|
|
return result;
|
|
}
|
|
|
|
int pow2_53 = intPow(2, 53);
|
|
|
|
test(int n1, int n2, int shift, [bool expectedIsValidInt = true]) {
|
|
var n = (new BigInt.from(n1) * new BigInt.from(n2)) << shift;
|
|
Expect.equals(expectedIsValidInt, n.isValidInt, '${n}.isValidInt');
|
|
if (n >= new BigInt.from(pow2_53)) {
|
|
var nplus1 = n + BigInt.one;
|
|
Expect.isFalse(nplus1.isValidInt, '${nplus1}.isValidInt');
|
|
}
|
|
}
|
|
|
|
main() {
|
|
test(13, 19, 1);
|
|
test(19997, 19993, 100);
|
|
test(19997, pow2_53 ~/ 19997, 0);
|
|
test(19997, pow2_53 ~/ 19997, 1);
|
|
test(19997, pow2_53 ~/ 19997, 100);
|
|
test(1, 1, 100);
|
|
test(1, 1, 10000, false);
|
|
|
|
// More than 53 bits in product,
|
|
test(pow2_53 ~/ 3, pow2_53 ~/ 5, 0, false);
|
|
}
|