2018-08-27 07:54:04 +00:00
|
|
|
// Copyright 2018 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.
|
|
|
|
|
|
|
|
// Comparing different copy schemes against spread initial literals.
|
|
|
|
// Benchmarks for large packed arrays.
|
|
|
|
|
2018-10-15 15:42:31 +00:00
|
|
|
const largeArray = Array.from(Array(1e5).keys());
|
2018-08-27 07:54:04 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Benchmark: Spread
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function SpreadLarge() {
|
|
|
|
var newArr = [...largeArray];
|
|
|
|
// basic sanity check
|
|
|
|
if (newArr.length != largeArray.length) throw 666;
|
|
|
|
return newArr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Benchmark: ForLength
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function ForLengthLarge() {
|
|
|
|
var newArr = new Array(largeArray.length);
|
|
|
|
for (let i = 0; i < largeArray.length; i++) {
|
|
|
|
newArr[i] = largeArray[i];
|
|
|
|
}
|
|
|
|
// basic sanity check
|
|
|
|
if (newArr.length != largeArray.length) throw 666;
|
|
|
|
return newArr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Benchmark: ForLengthEmpty
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function ForLengthEmptyLarge() {
|
|
|
|
var newArr = [];
|
|
|
|
for (let i = 0; i < largeArray.length; i++) {
|
|
|
|
newArr[i] = largeArray[i];
|
|
|
|
}
|
|
|
|
// basic sanity check
|
|
|
|
if (newArr.length != largeArray.length) throw 666;
|
|
|
|
return newArr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Benchmark: Slice
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function SliceLarge() {
|
|
|
|
var newArr = largeArray.slice();
|
|
|
|
// basic sanity check
|
|
|
|
if (newArr.length != largeArray.length) throw 666;
|
|
|
|
return newArr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Benchmark: Slice0
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function Slice0Large() {
|
|
|
|
var newArr = largeArray.slice(0);
|
|
|
|
// basic sanity check
|
|
|
|
if (newArr.length != largeArray.length) throw 666;
|
|
|
|
return newArr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Benchmark: ConcatReceive
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function ConcatReceiveLarge() {
|
|
|
|
var newArr = largeArray.concat();
|
|
|
|
// basic sanity check
|
|
|
|
if (newArr.length != largeArray.length) throw 666;
|
|
|
|
return newArr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Benchmark: ConcatArg
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function ConcatArgLarge() {
|
|
|
|
var newArr = [].concat(largeArray);
|
|
|
|
// basic sanity check
|
|
|
|
if (newArr.length != largeArray.length) throw 666;
|
|
|
|
return newArr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Benchmark: ForOfPush
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function ForOfPushLarge() {
|
|
|
|
var newArr = [];
|
|
|
|
for (let x of largeArray) {
|
|
|
|
newArr.push(x)
|
|
|
|
}
|
|
|
|
// basic sanity check
|
|
|
|
if (newArr.length != largeArray.length) throw 666;
|
|
|
|
return newArr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Benchmark: MapId
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function MapIdLarge() {
|
|
|
|
var newArr = largeArray.map(x => x);
|
|
|
|
// basic sanity check
|
|
|
|
if (newArr.length != largeArray.length) throw 666;
|
|
|
|
return newArr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Setup and Run
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2021-06-01 12:46:36 +00:00
|
|
|
d8.file.execute('../base.js');
|
2018-08-27 07:54:04 +00:00
|
|
|
|
|
|
|
var success = true;
|
|
|
|
|
|
|
|
function PrintResult(name, result) {
|
2018-08-28 09:57:57 +00:00
|
|
|
print(name + '-ArrayLiteralInitialSpreadLargePacked(Score): ' + result);
|
2018-08-27 07:54:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function PrintError(name, error) {
|
|
|
|
PrintResult('Error: ' + name, error);
|
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
|
2018-08-29 14:09:56 +00:00
|
|
|
// Run the benchmark (5 x 100) iterations instead of 1 second.
|
2018-08-27 07:54:04 +00:00
|
|
|
function CreateBenchmark(name, f) {
|
2018-08-29 14:09:56 +00:00
|
|
|
new BenchmarkSuite(name, [1000], [ new Benchmark(name, false, false, 5, f) ]);
|
2018-08-27 07:54:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CreateBenchmark('Spread', SpreadLarge);
|
|
|
|
CreateBenchmark('ForLength', ForLengthLarge);
|
|
|
|
CreateBenchmark('ForLengthEmpty', ForLengthEmptyLarge);
|
|
|
|
CreateBenchmark('Slice', SliceLarge);
|
|
|
|
CreateBenchmark('Slice0', Slice0Large);
|
|
|
|
CreateBenchmark('ConcatReceive', ConcatReceiveLarge);
|
|
|
|
CreateBenchmark('ConcatArg', ConcatArgLarge);
|
2018-08-29 14:09:56 +00:00
|
|
|
// The following benchmarks are so slow that they will time out.
|
|
|
|
// CreateBenchmark('ForOfPush', ForOfPushLarge);
|
|
|
|
// CreateBenchmark('MapId', MapIdLarge);
|
2018-08-27 07:54:04 +00:00
|
|
|
|
|
|
|
BenchmarkSuite.config.doWarmup = true;
|
|
|
|
BenchmarkSuite.config.doDeterministic = true;
|
|
|
|
BenchmarkSuite.RunSuites({NotifyResult: PrintResult, NotifyError: PrintError});
|