PR-URL: https://github.com/nodejs/node/pull/44741 Fixes: https://github.com/nodejs/node/issues/44650 Fixes: https://github.com/nodejs/node/issues/37472 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
95 lines
1.7 KiB
JavaScript
95 lines
1.7 KiB
JavaScript
// Copyright 2022 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 --maglev
|
|
|
|
function factory() {
|
|
var x = 1;
|
|
x = 2;
|
|
return function foo() {
|
|
return x;
|
|
}
|
|
}
|
|
|
|
let foo = factory();
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
assertEquals(2, foo());
|
|
assertEquals(2, foo());
|
|
|
|
%OptimizeMaglevOnNextCall(foo);
|
|
assertEquals(2, foo());
|
|
|
|
|
|
function nested_factory() {
|
|
var x = 1;
|
|
x = 2;
|
|
return (function() {
|
|
var z = 3;
|
|
return function foo(){
|
|
// Add two values from different contexts to force an
|
|
// LdaImmutableCurrentContextSlot
|
|
return x+z;
|
|
}
|
|
})();
|
|
}
|
|
|
|
foo = nested_factory();
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
assertEquals(5, foo());
|
|
assertEquals(5, foo());
|
|
|
|
%OptimizeMaglevOnNextCall(foo);
|
|
assertEquals(5, foo());
|
|
|
|
|
|
|
|
function nested_factory_mutable() {
|
|
var x = 1;
|
|
x = 2;
|
|
return (function() {
|
|
var z = 3;
|
|
z = 4;
|
|
return function foo(){
|
|
// Add two values from different contexts to force an
|
|
// LdaImmutableCurrentContextSlot
|
|
return x+z;
|
|
}
|
|
})();
|
|
}
|
|
|
|
foo = nested_factory_mutable();
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
assertEquals(6, foo());
|
|
assertEquals(6, foo());
|
|
|
|
%OptimizeMaglevOnNextCall(foo);
|
|
assertEquals(6, foo());
|
|
|
|
|
|
|
|
function nested_factory_immutable() {
|
|
var x = 1;
|
|
return (function() {
|
|
var z = 3;
|
|
z = 4;
|
|
return function foo(){
|
|
// Add two values from different contexts to force an
|
|
// LdaImmutableCurrentContextSlot
|
|
return x+z;
|
|
}
|
|
})();
|
|
}
|
|
|
|
foo = nested_factory_immutable();
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
assertEquals(5, foo());
|
|
assertEquals(5, foo());
|
|
|
|
%OptimizeMaglevOnNextCall(foo);
|
|
assertEquals(5, foo());
|