Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Unified Diff: test/js-perf-test/JSTests.json

Issue 1913813003: [js-perf-test] Add microbenchmarks for in operator and Object.prototype.hasOwnProperty(). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressing comments Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/js-perf-test/PropertyQueries/PropertyQueries.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/js-perf-test/JSTests.json
diff --git a/test/js-perf-test/JSTests.json b/test/js-perf-test/JSTests.json
index dc3cb757b9e3c8639174c0cfd5607bd7d73a28e1..2e61826901595abd5dc0fcd64769e17f472cc865 100644
--- a/test/js-perf-test/JSTests.json
+++ b/test/js-perf-test/JSTests.json
@@ -163,6 +163,71 @@
{"name": "for (i < array.length)"},
{"name": "for (i < length)"}
]
+ },
+ {
+ "name": "PropertyQueries",
+ "path": ["PropertyQueries"],
+ "main": "run.js",
+ "resources": ["property-queries.js"],
+ "results_regexp": "^%s\\-PropertyQueries\\(Score\\): (.+)$",
+ "tests": [
+ {"name": "in--query-internalized-prop--fast-obj"},
+ {"name": "in--query-internalized-prop--slow-obj"},
+ {"name": "in--query-internalized-prop--fast-obj-with-slow-proto"},
+ {"name": "in--query-internalized-prop--slow-obj-with-slow-proto"},
+ {"name": "in--query-deinternalized-prop--fast-obj"},
+ {"name": "in--query-deinternalized-prop--slow-obj"},
+ {"name": "in--query-deinternalized-prop--fast-obj-with-slow-proto"},
+ {"name": "in--query-deinternalized-prop--slow-obj-with-slow-proto"},
+ {"name": "in--query-non-existing-internalized-prop--fast-obj"},
+ {"name": "in--query-non-existing-internalized-prop--slow-obj"},
+ {"name": "in--query-non-existing-internalized-prop--fast-obj-with-slow-proto"},
+ {"name": "in--query-non-existing-internalized-prop--slow-obj-with-slow-proto"},
+ {"name": "in--query-non-existing-deinternalized-prop--fast-obj"},
+ {"name": "in--query-non-existing-deinternalized-prop--slow-obj"},
+ {"name": "in--query-non-existing-deinternalized-prop--fast-obj-with-slow-proto"},
+ {"name": "in--query-non-existing-deinternalized-prop--slow-obj-with-slow-proto"},
+ {"name": "in--query-element--fast-obj"},
+ {"name": "in--query-element--slow-obj"},
+ {"name": "in--query-element--fast-obj-with-slow-proto"},
+ {"name": "in--query-element--slow-obj-with-slow-proto"},
+ {"name": "in--query-element-as-string--fast-obj"},
+ {"name": "in--query-element-as-string--slow-obj"},
+ {"name": "in--query-element-as-string--fast-obj-with-slow-proto"},
+ {"name": "in--query-element-as-string--slow-obj-with-slow-proto"},
+ {"name": "in--query-non-existing-element--fast-obj"},
+ {"name": "in--query-non-existing-element--slow-obj"},
+ {"name": "in--query-non-existing-element--fast-obj-with-slow-proto"},
+ {"name": "in--query-non-existing-element--slow-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-internalized-prop--fast-obj"},
+ {"name": "Object.hasOwnProperty--query-internalized-prop--slow-obj"},
+ {"name": "Object.hasOwnProperty--query-internalized-prop--fast-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-internalized-prop--slow-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-deinternalized-prop--fast-obj"},
+ {"name": "Object.hasOwnProperty--query-deinternalized-prop--slow-obj"},
+ {"name": "Object.hasOwnProperty--query-deinternalized-prop--fast-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-deinternalized-prop--slow-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-non-existing-internalized-prop--fast-obj"},
+ {"name": "Object.hasOwnProperty--query-non-existing-internalized-prop--slow-obj"},
+ {"name": "Object.hasOwnProperty--query-non-existing-internalized-prop--fast-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-non-existing-internalized-prop--slow-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-non-existing-deinternalized-prop--fast-obj"},
+ {"name": "Object.hasOwnProperty--query-non-existing-deinternalized-prop--slow-obj"},
+ {"name": "Object.hasOwnProperty--query-non-existing-deinternalized-prop--fast-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-non-existing-deinternalized-prop--slow-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-element--fast-obj"},
+ {"name": "Object.hasOwnProperty--query-element--slow-obj"},
+ {"name": "Object.hasOwnProperty--query-element--fast-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-element--slow-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-element-as-string--fast-obj"},
+ {"name": "Object.hasOwnProperty--query-element-as-string--slow-obj"},
+ {"name": "Object.hasOwnProperty--query-element-as-string--fast-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-element-as-string--slow-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-non-existing-element--fast-obj"},
+ {"name": "Object.hasOwnProperty--query-non-existing-element--slow-obj"},
+ {"name": "Object.hasOwnProperty--query-non-existing-element--fast-obj-with-slow-proto"},
+ {"name": "Object.hasOwnProperty--query-non-existing-element--slow-obj-with-slow-proto"}
+ ]
}
]
}
« no previous file with comments | « no previous file | test/js-perf-test/PropertyQueries/PropertyQueries.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698