2014-09-04 11:27:20 +00:00
|
|
|
// Copyright 2014 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
|
2014-09-04 11:27:20 +00:00
|
|
|
|
|
|
|
function foo() {
|
|
|
|
return "fooed";
|
|
|
|
}
|
|
|
|
|
2019-03-01 10:19:54 +00:00
|
|
|
%PrepareFunctionForOptimization(foo);
|
2014-09-04 11:27:20 +00:00
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
assertEquals("fooed", foo());
|
|
|
|
assertOptimized(foo);
|
2015-01-19 15:51:50 +00:00
|
|
|
|
|
|
|
function bar() {
|
|
|
|
return "bared";
|
|
|
|
}
|
|
|
|
|
2019-03-01 10:19:54 +00:00
|
|
|
%PrepareFunctionForOptimization(bar);
|
2015-01-19 15:51:50 +00:00
|
|
|
assertEquals("bared", bar());
|
|
|
|
%OptimizeFunctionOnNextCall(bar);
|
|
|
|
assertEquals("bared", bar());
|
|
|
|
assertOptimized(bar);
|