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

Unified Diff: test/js-perf-test/SixSpeed/spread/spread__es5.js

Issue 2467483002: Add spread call micro-benchmarks. (Closed)
Patch Set: rename Created 4 years, 1 month 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
Index: test/js-perf-test/SixSpeed/spread/spread__es5.js
diff --git a/test/js-perf-test/SixSpeed/spread/spread__es5.js b/test/js-perf-test/SixSpeed/spread/spread__es5.js
new file mode 100644
index 0000000000000000000000000000000000000000..8b577ddc6b396c303bc4f3cebdeabe200368699e
--- /dev/null
+++ b/test/js-perf-test/SixSpeed/spread/spread__es5.js
@@ -0,0 +1,15 @@
+// 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.
+
+// This benchmark is based on the six-speed benchmark build output.
+// Copyright 2014 Kevin Decker <https://github.com/kpdecker/six-speed/>
+
+"use strict";
+(function(test) {
+ "use strict";
+ function fn() {
+ return Math.max.apply(Math, [1,2,3]);
+ }
+ test("Spread", "ES5", fn);
+})(benchTest);

Powered by Google App Engine
This is Rietveld 408576698