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

Side by Side Diff: test/js-perf-test/SixSpeed/super_spread/super_spread.js

Issue 2669553002: Revert of [Test] Do a set number of runs to trigger optimisation for SuperSpread. (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 the V8 project authors. All rights reserved. 1 // Copyright 2017 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This benchmark is based on the six-speed benchmark build output. 5 // This benchmark is based on the six-speed benchmark build output.
6 // Copyright 2014 Kevin Decker <https://github.com/kpdecker/six-speed/> 6 // Copyright 2014 Kevin Decker <https://github.com/kpdecker/six-speed/>
7 7
8 new BenchmarkSuite('SuperSpread-ES5', [1000], [ 8 new BenchmarkSuite('SuperSpread-ES5', [1000], [
9 new Benchmark('ES5', true, true, 150000, ES5), 9 new Benchmark('ES5', false, false, 0, ES5),
10 ]); 10 ]);
11 11
12 new BenchmarkSuite('SuperSpread-Babel', [1000], [ 12 new BenchmarkSuite('SuperSpread-Babel', [1000], [
13 new Benchmark('Babel', true, true, 150000, Babel), 13 new Benchmark('Babel', false, false, 0, Babel),
14 ]); 14 ]);
15 15
16 new BenchmarkSuite('SuperSpread-ES6', [1000], [ 16 new BenchmarkSuite('SuperSpread-ES6', [1000], [
17 new Benchmark('ES6', true, true, 150000, ES6), 17 new Benchmark('ES6', false, false, 0, ES6),
18 ]); 18 ]);
19 19
20 // ---------------------------------------------------------------------------- 20 // ----------------------------------------------------------------------------
21 // Benchmark: ES5 21 // Benchmark: ES5
22 // ---------------------------------------------------------------------------- 22 // ----------------------------------------------------------------------------
23 23
24 function ES5() { 24 function ES5() {
25 'use strict'; 25 'use strict';
26 26
27 function Point(x, y) { 27 function Point(x, y) {
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 } 124 }
125 125
126 class MyPoint extends Point {} 126 class MyPoint extends Point {}
127 127
128 function makePoint(x, y) { 128 function makePoint(x, y) {
129 return new MyPoint(x, y); 129 return new MyPoint(x, y);
130 } 130 }
131 131
132 return makePoint(1, 2); 132 return makePoint(1, 2);
133 } 133 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698