2016-12-20 10:30:52 +00:00
|
|
|
// Copyright 2016 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-06-22 13:46:04 +00:00
|
|
|
// Flags: --allow-natives-syntax --turbo-escape
|
2016-12-20 10:30:52 +00:00
|
|
|
|
|
|
|
function foo() {
|
|
|
|
var o = {x:0};
|
|
|
|
for (var i = 0; o.x < 1;) {
|
|
|
|
o.x++;
|
|
|
|
i+= 1;
|
|
|
|
}
|
|
|
|
function bar() {i};
|
|
|
|
return o.x;
|
|
|
|
}
|
2019-03-01 10:19:54 +00:00
|
|
|
%PrepareFunctionForOptimization(foo);
|
2016-12-20 10:30:52 +00:00
|
|
|
foo();
|
|
|
|
foo();
|
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
foo();
|