2017-10-24 08:39:25 +00:00
|
|
|
// Copyright 2017 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-04-28 14:22:23 +00:00
|
|
|
// Flags: --allow-natives-syntax --turbofan
|
2017-10-24 08:39:25 +00:00
|
|
|
|
|
|
|
function foo(o) { return o.x; }
|
|
|
|
|
2019-05-03 14:32:12 +00:00
|
|
|
%PrepareFunctionForOptimization(foo);
|
2017-10-24 08:39:25 +00:00
|
|
|
assertEquals(undefined, foo({}));
|
|
|
|
assertEquals(undefined, foo(1));
|
|
|
|
assertEquals(undefined, foo({}));
|
|
|
|
assertEquals(undefined, foo(1));
|
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
assertEquals(undefined, foo({}));
|
|
|
|
assertOptimized(foo);
|
|
|
|
assertEquals(undefined, foo(1));
|
|
|
|
assertOptimized(foo);
|