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

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: Make the tests actually work 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 "results_regexp": "^%s\\-Templates\\(Score\\): (.+)$", 101 "results_regexp": "^%s\\-Templates\\(Score\\): (.+)$",
102 "total": true, 102 "total": true,
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": ["."],
Michael Achenbach 2016/03/09 08:22:53 This fails on arm + android since it landed. I thi
caitp (gmail) 2016/03/09 11:49:37 oops, I'll fix that
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": "Entries"},
123 {"name": "EntriesMegamorphic"},
124 {"name": "Values"},
125 {"name": "ValuesMegamorphic"}
117 ] 126 ]
118 }, 127 },
119 { 128 {
120 "name": "Scope", 129 "name": "Scope",
121 "path": ["Scope"], 130 "path": ["Scope"],
122 "main": "run.js", 131 "main": "run.js",
123 "resources": ["with.js"], 132 "resources": ["with.js"],
124 "results_regexp": "^%s\\-Scope\\(Score\\): (.+)$", 133 "results_regexp": "^%s\\-Scope\\(Score\\): (.+)$",
125 "tests": [ 134 "tests": [
126 {"name": "With"} 135 {"name": "With"}
(...skipping 23 matching lines...) Expand all
150 {"name": "for-in"}, 159 {"name": "for-in"},
151 {"name": "for-in hasOwnProperty()"}, 160 {"name": "for-in hasOwnProperty()"},
152 {"name": "for (i < Object.keys().length)"}, 161 {"name": "for (i < Object.keys().length)"},
153 {"name": "Object.keys().forEach()"}, 162 {"name": "Object.keys().forEach()"},
154 {"name": "for (i < array.length)"}, 163 {"name": "for (i < array.length)"},
155 {"name": "for (i < length)"} 164 {"name": "for (i < length)"}
156 ] 165 ]
157 } 166 }
158 ] 167 ]
159 } 168 }
OLDNEW
« no previous file with comments | « no previous file | test/js-perf-test/Object/ObjectTests.json » ('j') | test/js-perf-test/Object/entries.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698