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

Unified Diff: test/js-perf-test/SixSpeed/spread/spread__traceur.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__traceur.js
diff --git a/test/js-perf-test/SixSpeed/spread/spread__traceur.js b/test/js-perf-test/SixSpeed/spread/spread__traceur.js
new file mode 100644
index 0000000000000000000000000000000000000000..f1b6cc5dea44d8c013fcb13e4792b03ac8c3109f
--- /dev/null
+++ b/test/js-perf-test/SixSpeed/spread/spread__traceur.js
@@ -0,0 +1,16 @@
+// 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() {
+ var $__0;
+ return ($__0 = Math).max.apply($__0, $traceurRuntime.spread([1, 2, 3]));
+ }
+ test("Spread", "Traceur", fn);
+})(benchTest);

Powered by Google App Engine
This is Rietveld 408576698