[test] Add micro benchmark for Object.create
BUG= Review-Url: https://codereview.chromium.org/2378613002 Cr-Commit-Position: refs/heads/master@{#39807}
This commit is contained in:
parent
c5c117a70d
commit
24e29f28ba
@ -15,12 +15,14 @@
|
||||
"flags": ["--harmony"],
|
||||
"resources": [
|
||||
"assign.js",
|
||||
"values.js",
|
||||
"entries.js"
|
||||
"create.js",
|
||||
"entries.js",
|
||||
"values.js"
|
||||
],
|
||||
"results_regexp": "^%s\\-Object\\(Score\\): (.+)$",
|
||||
"tests": [
|
||||
{"name": "Assign"},
|
||||
{"name": "Create"},
|
||||
{"name": "Entries"},
|
||||
{"name": "EntriesMegamorphic"},
|
||||
{"name": "Values"},
|
||||
|
70
test/js-perf-test/Object/create.js
Normal file
70
test/js-perf-test/Object/create.js
Normal file
@ -0,0 +1,70 @@
|
||||
// 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.
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
function shallowClone(object) {
|
||||
return Object.create(object.__proto__,
|
||||
Object.getOwnPropertyDescriptors(object));
|
||||
}
|
||||
|
||||
function makeSlowCopy(object) {
|
||||
object = shallowClone(object);
|
||||
object.__foo__ = 1;
|
||||
delete object.__foo__;
|
||||
return object;
|
||||
}
|
||||
|
||||
function convertToPropertyDescriptors(dict) {
|
||||
for (var key in dict) {
|
||||
var propertiesObject = dict[key];
|
||||
dict[key] = Object.getOwnPropertyDescriptors(propertiesObject);
|
||||
}
|
||||
return dict;
|
||||
}
|
||||
|
||||
var properties_5 = { a:1, b:2, c:3, d:4, e:5 };
|
||||
var TEST_PROPERTIES = convertToPropertyDescriptors({
|
||||
empty: {},
|
||||
array_5: [1, 2, 3, 4, 5],
|
||||
properties_5: properties_5,
|
||||
properties_10: { a:1, b:2, c:3, d:4, e:5, f:6, g:7, h:8, i:9, j:10 },
|
||||
properties_dict: makeSlowCopy(properties_5)
|
||||
});
|
||||
|
||||
var TEST_PROTOTYPES = {
|
||||
null: null,
|
||||
empty: {},
|
||||
'Object.prototype': Object.prototype,
|
||||
'Array.prototype': Array.prototype
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
var testFunction = () => {
|
||||
return Object.create(prototype, properties);
|
||||
}
|
||||
|
||||
function createTestFunction(prototype, properties) {
|
||||
// Force a new function for each test-object to avoid side-effects due to ICs.
|
||||
var random_comment = "\n// random comment" + Math.random() + "\n";
|
||||
return eval(random_comment + testFunction.toString());
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
var benchmarks = []
|
||||
|
||||
for (var proto_name in TEST_PROTOTYPES) {
|
||||
var prototype = TEST_PROTOTYPES[proto_name];
|
||||
for (var prop_name in TEST_PROPERTIES) {
|
||||
var properties = TEST_PROPERTIES[prop_name];
|
||||
var name = 'Create proto:' + proto_name + " properties:" + prop_name;
|
||||
benchmarks.push(
|
||||
new Benchmark(name, false, false, 0,
|
||||
createTestFunction(prototype, properties)));
|
||||
}
|
||||
}
|
||||
|
||||
new BenchmarkSuite('Create', [1000], benchmarks);
|
@ -6,8 +6,9 @@
|
||||
load('../base.js');
|
||||
|
||||
load('assign.js');
|
||||
load('values.js');
|
||||
load('create.js');
|
||||
load('entries.js');
|
||||
load('values.js');
|
||||
|
||||
var success = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user