902d21dd66
Previously StringToList use the length of the original string, which is not the right value: we expect the length of the new array to be the number of characters (codepoints). Bug: v8:7980 Change-Id: I2efca5715323c4399cb45c53871ae349207f3458 Reviewed-on: https://chromium-review.googlesource.com/c/1297320 Commit-Queue: Georg Neis <neis@chromium.org> Reviewed-by: Georg Neis <neis@chromium.org> Cr-Commit-Position: refs/heads/master@{#56944}
209 lines
5.5 KiB
JavaScript
209 lines
5.5 KiB
JavaScript
// Copyright 2016 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.
|
|
|
|
new BenchmarkSuite('Spread_OneByteShort', [1000], [
|
|
new Benchmark('test', false, false, 0,
|
|
Spread_OneByteShort, Spread_OneByteShortSetup,
|
|
Spread_OneByteShortTearDown),
|
|
]);
|
|
|
|
var result;
|
|
var string;
|
|
function Spread_OneByteShortSetup() {
|
|
result = undefined;
|
|
string = "Alphabet-Soup";
|
|
}
|
|
|
|
function Spread_OneByteShort() {
|
|
result = [...string];
|
|
}
|
|
|
|
function Spread_OneByteShortTearDown() {
|
|
var expected = "A|l|p|h|a|b|e|t|-|S|o|u|p";
|
|
assert(Array.isArray(result));
|
|
assertEquals(expected, result.join("|"));
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
new BenchmarkSuite('Spread_TwoByteShort', [1000], [
|
|
new Benchmark('test', false, false, 0,
|
|
Spread_TwoByteShort, Spread_TwoByteShortSetup,
|
|
Spread_TwoByteShortTearDown),
|
|
]);
|
|
|
|
function Spread_TwoByteShortSetup() {
|
|
result = undefined;
|
|
string = "\u5FCD\u8005\u306E\u653B\u6483";
|
|
}
|
|
|
|
function Spread_TwoByteShort() {
|
|
result = [...string];
|
|
}
|
|
|
|
function Spread_TwoByteShortTearDown() {
|
|
var expected = "\u5FCD|\u8005|\u306E|\u653B|\u6483";
|
|
assert(Array.isArray(result));
|
|
assertEquals(expected, result.join("|"));
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
new BenchmarkSuite('Spread_WithSurrogatePairsShort', [1000], [
|
|
new Benchmark('test', false, false, 0,
|
|
Spread_WithSurrogatePairsShort,
|
|
Spread_WithSurrogatePairsShortSetup,
|
|
Spread_WithSurrogatePairsShortTearDown),
|
|
]);
|
|
|
|
function Spread_WithSurrogatePairsShortSetup() {
|
|
result = undefined;
|
|
string = "\uD83C\uDF1F\u5FCD\u8005\u306E\u653B\u6483\uD83C\uDF1F";
|
|
}
|
|
|
|
function Spread_WithSurrogatePairsShort() {
|
|
result = [...string];
|
|
}
|
|
|
|
function Spread_WithSurrogatePairsShortTearDown() {
|
|
var expected =
|
|
"\uD83C\uDF1F|\u5FCD|\u8005|\u306E|\u653B|\u6483|\uD83C\uDF1F";
|
|
assert(Array.isArray(result));
|
|
assertEquals(expected, result.join("|"));
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
new BenchmarkSuite('ForOf_OneByteShort', [1000], [
|
|
new Benchmark('test', false, false, 0,
|
|
ForOf_OneByteShort, ForOf_OneByteShortSetup,
|
|
ForOf_OneByteShortTearDown),
|
|
]);
|
|
|
|
function ForOf_OneByteShortSetup() {
|
|
result = undefined;
|
|
string = "Alphabet-Soup";
|
|
}
|
|
|
|
function ForOf_OneByteShort() {
|
|
result = "";
|
|
for (var c of string) result += c;
|
|
}
|
|
|
|
function ForOf_OneByteShortTearDown() {
|
|
assertEquals(string, result);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
new BenchmarkSuite('ForOf_TwoByteShort', [1000], [
|
|
new Benchmark('test', false, false, 0,
|
|
ForOf_TwoByteShort, ForOf_TwoByteShortSetup,
|
|
ForOf_TwoByteShortTearDown),
|
|
]);
|
|
|
|
function ForOf_TwoByteShortSetup() {
|
|
result = undefined;
|
|
string = "\u5FCD\u8005\u306E\u653B\u6483";
|
|
}
|
|
|
|
function ForOf_TwoByteShort() {
|
|
result = "";
|
|
for (var c of string) result += c;
|
|
}
|
|
|
|
function ForOf_TwoByteShortTearDown() {
|
|
assertEquals(string, result);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
new BenchmarkSuite('ForOf_WithSurrogatePairsShort', [1000], [
|
|
new Benchmark('test', false, false, 0,
|
|
ForOf_WithSurrogatePairsShort,
|
|
ForOf_WithSurrogatePairsShortSetup,
|
|
ForOf_WithSurrogatePairsShortTearDown),
|
|
]);
|
|
|
|
function ForOf_WithSurrogatePairsShortSetup() {
|
|
result = undefined;
|
|
string = "\uD83C\uDF1F\u5FCD\u8005\u306E\u653B\u6483\uD83C\uDF1F";
|
|
}
|
|
|
|
function ForOf_WithSurrogatePairsShort() {
|
|
result = "";
|
|
for (var c of string) result += c;
|
|
}
|
|
|
|
function ForOf_WithSurrogatePairsShortTearDown() {
|
|
assertEquals(string, result);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
new BenchmarkSuite('ForOf_OneByteLong', [1000], [
|
|
new Benchmark('test', false, false, 0,
|
|
ForOf_OneByteLong, ForOf_OneByteLongSetup,
|
|
ForOf_OneByteLongTearDown),
|
|
]);
|
|
|
|
function ForOf_OneByteLongSetup() {
|
|
result = undefined;
|
|
string = "Alphabet-Soup|".repeat(128);
|
|
}
|
|
|
|
function ForOf_OneByteLong() {
|
|
result = "";
|
|
for (var c of string) result += c;
|
|
}
|
|
|
|
function ForOf_OneByteLongTearDown() {
|
|
assertEquals(string, result);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
new BenchmarkSuite('ForOf_TwoByteLong', [1000], [
|
|
new Benchmark('test', false, false, 0,
|
|
ForOf_OneByteLong, ForOf_OneByteLongSetup,
|
|
ForOf_OneByteLongTearDown),
|
|
]);
|
|
|
|
function ForOf_TwoByteLongSetup() {
|
|
result = undefined;
|
|
string = "\u5FCD\u8005\u306E\u653B\u6483".repeat(128);
|
|
}
|
|
|
|
function ForOf_TwoByteLong() {
|
|
result = "";
|
|
for (var c of string) result += c;
|
|
}
|
|
|
|
function ForOf_TwoByteLongTearDown() {
|
|
assertEquals(string, result);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
new BenchmarkSuite('ForOf_WithSurrogatePairsLong', [1000], [
|
|
new Benchmark('test', false, false, 0,
|
|
ForOf_WithSurrogatePairsLong, ForOf_WithSurrogatePairsLongSetup,
|
|
ForOf_WithSurrogatePairsLongTearDown),
|
|
]);
|
|
|
|
function ForOf_WithSurrogatePairsLongSetup() {
|
|
result = undefined;
|
|
string = "\uD83C\uDF1F\u5FCD\u8005\u306E\u653B\u6483\uD83C\uDF1F|"
|
|
.repeat(128);
|
|
}
|
|
|
|
function ForOf_WithSurrogatePairsLong() {
|
|
result = "";
|
|
for (var c of string) result += c;
|
|
}
|
|
|
|
function ForOf_WithSurrogatePairsLongTearDown() {
|
|
assertEquals(string, result);
|
|
}
|