v8/test/mjsunit/compiler/promise-resolve-stable-maps.js
Camillo Bruni e3e8ea5d65 [flags] Rename --opt to --turbofan
To be consistent with the all the other tiers and avoid confusion, we
rename --opt to ---turbofan, and --always-opt to --always-turbofan.

Change-Id: Ie23dc8282b3fb4cf2fbf73b6c3d5264de5d09718
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3610431
Reviewed-by: Leszek Swirski <leszeks@chromium.org>
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Reviewed-by: Jakob Linke <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/main@{#80336}
2022-05-03 12:10:30 +00:00

78 lines
2.2 KiB
JavaScript

// Copyright 2018 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.
// Flags: --allow-natives-syntax --turbofan --noalways-turbofan
// Test that JSResolvePromise takes a proper stability dependency
// on the resolutions map if the infer receiver maps are unreliable
// (as is the case for HeapConstants).
(function() {
// We need an object literal which gets a stable map initially.
function makeObjectWithStableMap() {
return {a:1, b:1, c:1};
}
const a = makeObjectWithStableMap();
function foo() {
return Promise.resolve(a);
}
%PrepareFunctionForOptimization(foo);
assertInstanceof(foo(), Promise);
assertInstanceof(foo(), Promise);
%OptimizeFunctionOnNextCall(foo);
assertInstanceof(foo(), Promise);
assertOptimized(foo);
// Now invalidate the stability of a's map.
const b = makeObjectWithStableMap();
b.d = 1;
if (%IsDictPropertyConstTrackingEnabled()) {
// TODO(v8:11457) In this mode we weren't able to inline the access, yet, so
// it stays optimized. See related TODO in
// JSNativeContextSpecialization::ReduceJSResolvePromise.
return;
}
// This should deoptimize foo.
assertUnoptimized(foo);
})();
// Same test with async functions.
(function() {
// We need an object literal which gets a stable map initially,
// it needs to be different from the above, otherwise the map
// is already not stable when we get here.
function makeObjectWithStableMap() {
return {x:1, y:1};
}
const a = makeObjectWithStableMap();
async function foo() {
return a;
}
%PrepareFunctionForOptimization(foo);
assertInstanceof(foo(), Promise);
assertInstanceof(foo(), Promise);
%OptimizeFunctionOnNextCall(foo);
assertInstanceof(foo(), Promise);
assertOptimized(foo);
// Now invalidate the stability of a's map.
const b = makeObjectWithStableMap();
b.z = 1;
if (%IsDictPropertyConstTrackingEnabled()) {
// TODO(v8:11457) In this mode we weren't able to inline the access, yet, so
// it stays optimized. See related TODO in
// JSNativeContextSpecialization::ReduceJSResolvePromise.
return;
}
// This should deoptimize foo.
assertUnoptimized(foo);
})();