v8/test/mjsunit/regress/regress-4578.js
Seth Brenith 013e37e89f Don't run regress-4578.js with concurrent inlining
Similar to previous bug v8:11771, this test needs deterministic GC
behavior so it is incompatible with concurrent inlining.

Bug: v8:12374, v8:4578
Change-Id: Ib3667744d1032524a0c2e697a970876dfc1677ae
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3272882
Commit-Queue: Seth Brenith <seth.brenith@microsoft.com>
Reviewed-by: Jakob Gruber <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/main@{#77851}
2021-11-11 17:06:21 +00:00

96 lines
2.8 KiB
JavaScript

// Copyright 2021 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 --expose-gc --opt --no-concurrent-inlining
// Flags: --no-stress-opt --no-always-opt --no-assert-types
// This weak ref is for checking whether the closure-allocated object o got
// collected as it should.
var weak;
// Return a function which refers to a variable from its enclosing function.
function makeFn() {
var o = {};
weak = new WeakRef(o);
o.num = 0;
return () => { return ++o.num; };
}
// Simple wrapper function which will cause inlining.
function g(f) {
f();
}
// Optimize g so that it inlines a specific function instance created by makeFn,
// and then drop all user-visible references to that function instance.
(function () {
var fn = makeFn();
%PrepareFunctionForOptimization(g);
%PrepareFunctionForOptimization(fn);
g(fn);
%OptimizeFunctionOnNextCall(g);
g(fn);
})();
// WeakRefs created during the current microtask are strong, so defer the rest.
setTimeout(() => {
// Since the function inlined by g no longer exists, it should deopt and
// release the inner function.
gc();
// Check that the memory leak described in v8:4578 no longer happens.
assertEquals(undefined, weak.deref());
// Next, let's check the opposite case: if an optimized function's Code is
// currently running at the time of gc, then it must keep its deoptimization
// data alive.
// Another simple wrapper function, but this one causes a GC internally.
function h(f) {
gcAndCheckState(); // Non-inlined call
f(); // Inlined call
}
var doCheck = false;
function gcAndCheckState() {
if (!doCheck) return;
// It's possible that h has already deoptimized by this point if
// --stress-incremental-marking caused additional gc cycles.
var optimized = isOptimized(h);
gc();
// If the optimized code for h is still on the stack, then it must not clear
// out its own deoptimization data. Eventually h will deopt due to the wrong
// function being passed, but only after this function has returned.
if (optimized) {
assertNotEquals(undefined, weak.deref());
} else {
assertEquals(undefined, weak.deref());
}
}
// Don't inline gcAndCheckState, to avoid the possibility that its content
// could cause h to deoptimize.
%NeverOptimizeFunction(gcAndCheckState);
// Optimize h to inline a specific function instance, and then drop all
// user-visible references to that inlined function.
(function () {
var fn = makeFn();
%PrepareFunctionForOptimization(h);
%PrepareFunctionForOptimization(fn);
h(fn);
%OptimizeFunctionOnNextCall(h);
h(fn);
})();
// Defer again so the WeakRef can expire.
setTimeout(() => {
doCheck = true;
h(() => {});
}, 0);
}, 0);