mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 00:11:20 +00:00

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>
30 lines
693 B
JavaScript
30 lines
693 B
JavaScript
// Copyright 2019 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
|
|
// Flags: --no-flush-bytecode --no-stress-flush-code
|
|
|
|
function changeMap(obj) {
|
|
obj.blub = 42;
|
|
}
|
|
|
|
function reducer(acc, val, i, obj) {
|
|
return changeMap(obj);
|
|
}
|
|
|
|
function foo(obj) {
|
|
return obj.reduce(reducer);
|
|
}
|
|
|
|
%NeverOptimizeFunction(reducer);
|
|
%PrepareFunctionForOptimization(foo);
|
|
foo([0, 1, 2]);
|
|
foo([0, 1, 2]);
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
foo([0, 1, 2]);
|
|
%PrepareFunctionForOptimization(foo);
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
foo([0, 1, 2]);
|
|
assertOptimized(foo);
|