2017-04-10 11:07:57 +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.
|
|
|
|
|
2017-04-28 13:33:43 +00:00
|
|
|
// Flags: --allow-natives-syntax --opt --turbo --no-always-opt
|
2017-04-10 11:07:57 +00:00
|
|
|
|
|
|
|
function foo() {}
|
|
|
|
|
|
|
|
assertEquals(0, %GetOptimizationCount(foo));
|
|
|
|
assertEquals(0, %GetDeoptCount(foo));
|
|
|
|
|
|
|
|
foo();
|
|
|
|
foo();
|
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
foo();
|
|
|
|
|
|
|
|
assertOptimized(foo);
|
|
|
|
assertEquals(1, %GetOptimizationCount(foo));
|
|
|
|
assertEquals(0, %GetDeoptCount(foo));
|
|
|
|
|
|
|
|
// Unlink the function.
|
|
|
|
%DeoptimizeFunction(foo);
|
|
|
|
|
|
|
|
assertUnoptimized(foo);
|
|
|
|
assertEquals(1, %GetOptimizationCount(foo));
|
|
|
|
assertEquals(1, %GetDeoptCount(foo));
|
|
|
|
|
|
|
|
foo();
|
|
|
|
|
|
|
|
assertUnoptimized(foo);
|
|
|
|
assertEquals(1, %GetOptimizationCount(foo));
|
|
|
|
assertEquals(1, %GetDeoptCount(foo));
|