Commit b9e17a5b authored by Qifan Pan's avatar Qifan Pan Committed by V8 LUCI CQ

[TurboFan] Add benchmark for BigInt multiply

Bug: v8:9407
Change-Id: I55da6d54bf0ad55e7b16cbf997637743d96d03d1
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3785004Reviewed-by: 's avatarNico Hartmann <nicohartmann@chromium.org>
Commit-Queue: Qifan Pan <panq@google.com>
Cr-Commit-Position: refs/heads/main@{#81968}
parent 6848a341
......@@ -7,6 +7,9 @@
// Test configuration.
const TEST_ITERATIONS = 1000;
const SLOW_TEST_ITERATIONS = 50;
const SMALL_BITS_CASES = [32, 64, 128, 256];
const MEDIUM_BITS_CASES = [512, 1024];
const BIG_BITS_CASES = [2048, 4096, 8192];
const BITS_CASES = [32, 64, 128, 256, 512, 1024, 2048, 4096, 8192];
const RANDOM_BIGINTS_MAX_BITS = 64 * 100;
const BIGINT_MAX_BITS = %BigIntMaxLengthBits();
......
// Copyright 2022 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.
"use strict";
d8.file.execute('bigint-util.js');
let initial_product = 0n;
let a = 0n;
let random_bigints = [];
// This dummy ensures that the feedback for benchmark.run() in the Measure
// function from base.js is not monomorphic, thereby preventing the benchmarks
// below from being inlined. This ensures consistent behavior and comparable
// results.
new BenchmarkSuite('Prevent-Inline-Dummy', [10000], [
new Benchmark('Prevent-Inline-Dummy', true, false, 0, () => {})
]);
new BenchmarkSuite('Multiply-TypeError', [10000], [
new Benchmark('Multiply-TypeError', true, false, 0, TestMultiplyTypeError,
SetUpTestMultiplyTypeError)
]);
new BenchmarkSuite('Multiply-One', [1000], [
new Benchmark('Multiply-One', true, false, 0, TestMultiplyOne, SetUpTestMultiplyOne)
]);
// BIT_CASES are divided into three subcases with different references
// to ensure the scores fall into the range of 100-10000
SMALL_BITS_CASES.forEach((d) => {
new BenchmarkSuite(`Multiply-${d}`, [100], [
new Benchmark(`Multiply-${d}`, true, false, 0, TestMultiply,
() => SetUpTestMultiply(d))
]);
});
MEDIUM_BITS_CASES.forEach((d) => {
new BenchmarkSuite(`Multiply-${d}`, [1000], [
new Benchmark(`Multiply-${d}`, true, false, 0, TestMultiply,
() => SetUpTestMultiply(d))
]);
});
BIG_BITS_CASES.forEach((d) => {
new BenchmarkSuite(`Multiply-${d}`, [100000], [
new Benchmark(`Multiply-${d}`, true, false, 0, TestMultiply,
() => SetUpTestMultiply(d))
]);
});
new BenchmarkSuite('Multiply-Random', [10000], [
new Benchmark('Multiply-Random', true, false, 0, TestMultiplyRandom,
SetUpTestMultiplyRandom)
]);
function SetUpTestMultiplyTypeError() {
initial_product = 42n;
}
function TestMultiplyTypeError() {
let product = initial_product;
for (let i = 0; i < SLOW_TEST_ITERATIONS; ++i) {
try {
product = 3 * product;
}
catch(e) {
}
}
return product;
}
function SetUpTestMultiplyOne() {
initial_product = 42n;
}
function TestMultiplyOne() {
let product = initial_product;
for (let i = 0; i < TEST_ITERATIONS; ++i) {
product = 1n * product;
}
return product;
}
function SetUpTestMultiply(bits) {
initial_product = SmallRandomBigIntWithBits(bits);
a = SmallRandomBigIntWithBits(bits);
}
function TestMultiply() {
let product = initial_product;
for (let i = 0; i < SLOW_TEST_ITERATIONS; ++i) {
product = a * product;
}
return product;
}
function SetUpTestMultiplyRandom() {
random_bigints = [];
// RandomBigIntWithBits needs multiples of 4 bits.
const max_in_4bits = RANDOM_BIGINTS_MAX_BITS / 4;
for (let i = 0; i < SLOW_TEST_ITERATIONS; ++i) {
const bits = Math.floor(Math.random() * max_in_4bits) * 4;
const bigint = RandomBigIntWithBits(bits);
random_bigints.push(Math.random() < 0.5 ? -bigint : bigint);
}
}
function TestMultiplyRandom() {
let product = 1n;
for (let i = 0; i < SLOW_TEST_ITERATIONS; ++i) {
product = random_bigints[i] * product;
}
return product;
}
......@@ -159,6 +159,28 @@
{ "name": "Subtract-Random" }
]
},
{
"name": "Multiply",
"main": "run.js",
"flags": ["--allow-natives-syntax"],
"resources": ["multiply.js", "bigint-util.js"],
"test_flags": ["multiply"],
"results_regexp": "^BigInt\\-%s\\(Score\\): (.+)$",
"tests": [
{ "name": "Multiply-TypeError" },
{ "name": "Multiply-One" },
{ "name": "Multiply-32" },
{ "name": "Multiply-64" },
{ "name": "Multiply-128" },
{ "name": "Multiply-256" },
{ "name": "Multiply-512" },
{ "name": "Multiply-1024" },
{ "name": "Multiply-2048" },
{ "name": "Multiply-4096" },
{ "name": "Multiply-8192" },
{ "name": "Multiply-Random" }
]
},
{
"name": "AsUintN",
"main": "run.js",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment