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

Side by Side Diff: test/js-perf-test/JSTests.json

Issue 1746383003: [js-perf-test] add microbenchmarks for Object.values(), Object.entries() (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 { 1 {
2 "name": "JSTests", 2 "name": "JSTests",
3 "run_count": 5, 3 "run_count": 5,
4 "run_count_android_arm": 3, 4 "run_count_android_arm": 3,
5 "run_count_android_arm64": 3, 5 "run_count_android_arm64": 3,
6 "timeout": 120, 6 "timeout": 120,
7 "units": "score", 7 "units": "score",
8 "total": true, 8 "total": true,
9 "resources": ["base.js"], 9 "resources": ["base.js"],
10 "tests": [ 10 "tests": [
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "tests": [ 103 "tests": [
104 {"name": "Untagged"}, 104 {"name": "Untagged"},
105 {"name": "LargeUntagged"}, 105 {"name": "LargeUntagged"},
106 {"name": "Tagged"} 106 {"name": "Tagged"}
107 ] 107 ]
108 }, 108 },
109 { 109 {
110 "name": "Object", 110 "name": "Object",
111 "path": ["Object"], 111 "path": ["Object"],
112 "main": "run.js", 112 "main": "run.js",
113 "resources": ["assign.js"], 113 "flags": "--harmony",
114 "resources": [
115 "assign.js",
116 "values.js",
117 "entries.js"
118 ],
114 "results_regexp": "^%s\\-Object\\(Score\\): (.+)$", 119 "results_regexp": "^%s\\-Object\\(Score\\): (.+)$",
115 "tests": [ 120 "tests": [
116 {"name": "Assign"} 121 {"name": "Assign"},
122 {"name": "Values"},
123 {"name": "Entries"}
117 ] 124 ]
118 }, 125 },
119 { 126 {
120 "name": "Scope", 127 "name": "Scope",
121 "path": ["Scope"], 128 "path": ["Scope"],
122 "main": "run.js", 129 "main": "run.js",
123 "resources": ["with.js"], 130 "resources": ["with.js"],
124 "results_regexp": "^%s\\-Scope\\(Score\\): (.+)$", 131 "results_regexp": "^%s\\-Scope\\(Score\\): (.+)$",
125 "tests": [ 132 "tests": [
126 {"name": "With"} 133 {"name": "With"}
(...skipping 23 matching lines...) Expand all
150 {"name": "for-in"}, 157 {"name": "for-in"},
151 {"name": "for-in hasOwnProperty()"}, 158 {"name": "for-in hasOwnProperty()"},
152 {"name": "for (i < Object.keys().length)"}, 159 {"name": "for (i < Object.keys().length)"},
153 {"name": "Object.keys().forEach()"}, 160 {"name": "Object.keys().forEach()"},
154 {"name": "for (i < array.length)"}, 161 {"name": "for (i < array.length)"},
155 {"name": "for (i < length)"} 162 {"name": "for (i < length)"}
156 ] 163 ]
157 } 164 }
158 ] 165 ]
159 } 166 }
OLDNEW
« no previous file with comments | « no previous file | test/js-perf-test/Lodash/entries-lodash.js » ('j') | test/js-perf-test/Lodash/lodash.custom.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698