2020-03-05 10:49:19 -08:00
|
|
|
// 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.
|
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
// Flags: --allow-natives-syntax --turbofan --no-always-turbofan
|
2023-10-05 08:46:07 +02:00
|
|
|
// Flags: --turboshaft-enable-debug-features
|
2020-03-05 10:49:19 -08:00
|
|
|
|
|
|
|
function apply(arg) {
|
|
|
|
"use strict";
|
|
|
|
return arg.apply(this, arguments);
|
|
|
|
}
|
|
|
|
|
|
|
|
function bar() {
|
|
|
|
function foo(self, arg) {
|
|
|
|
%TurbofanStaticAssert(arg === 42);
|
|
|
|
return %IsBeingInterpreted();
|
|
|
|
}
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
|
|
|
|
|
|
return apply(foo, 42);
|
|
|
|
}
|
|
|
|
|
|
|
|
%PrepareFunctionForOptimization(bar);
|
|
|
|
%PrepareFunctionForOptimization(apply);
|
|
|
|
assertTrue(bar());
|
|
|
|
assertTrue(bar());
|
2022-04-12 11:10:15 +02:00
|
|
|
%OptimizeFunctionOnNextCall(bar);
|
2020-03-05 10:49:19 -08:00
|
|
|
assertFalse(bar());
|