71dd648fb7
Skip unhandled promises for AsyncAwait performance test. Bug: v8:1099632 Change-Id: I21d69d5700860f0b05fb8c6c90ea85dc28cb3890 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2274606 Reviewed-by: Michael Stanton <mvstanton@chromium.org> Commit-Queue: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/master@{#68631}
52 lines
1.1 KiB
JavaScript
52 lines
1.1 KiB
JavaScript
// 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.
|
|
|
|
new BenchmarkSuite('BaselineNaivePromises', [1000], [
|
|
new Benchmark('Basic', false, false, 0, Basic, Setup),
|
|
]);
|
|
|
|
var a,b,c,d,e,f,g,h,i,j,x;
|
|
|
|
function Setup() {
|
|
x = Promise.resolve();
|
|
|
|
j = function j(p) { return p; };
|
|
i = function i(p) {
|
|
return p.then(j)
|
|
.then(j)
|
|
.then(j)
|
|
.then(j)
|
|
.then(j)
|
|
.then(j)
|
|
.then(j)
|
|
.then(j)
|
|
.then(j)
|
|
.then(j);
|
|
};
|
|
h = function h(p) { return p; };
|
|
g = function g(p) { return p; };
|
|
f = function f(p) { return p; };
|
|
e = function e(p) { return p; };
|
|
d = function d(p) { return p; };
|
|
c = function c(p) { return p; };
|
|
b = function b(p) { return p; };
|
|
a = function a(p) { return p; };
|
|
|
|
%PerformMicrotaskCheckpoint();
|
|
}
|
|
|
|
function Basic() {
|
|
x.then(j)
|
|
.then(i)
|
|
.then(h)
|
|
.then(g)
|
|
.then(f)
|
|
.then(e)
|
|
.then(d)
|
|
.then(c)
|
|
.then(b)
|
|
.then(a);
|
|
%PerformMicrotaskCheckpoint();
|
|
}
|