2014-03-18 00:33:01 +04: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.
|
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
// Flags: --allow-natives-syntax --turbofan
|
2014-03-18 00:33:01 +04:00
|
|
|
|
|
|
|
function foo(a) {
|
|
|
|
var sum = 0;
|
|
|
|
for (var i = 0; i < 10; i++) {
|
|
|
|
sum += a[i];
|
|
|
|
|
|
|
|
if (i > 6) {
|
|
|
|
sum -= a[i - 4];
|
|
|
|
sum -= a[i - 5];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sum;
|
|
|
|
}
|
2019-08-16 11:32:46 +02:00
|
|
|
%PrepareFunctionForOptimization(foo);
|
2014-03-18 00:33:01 +04:00
|
|
|
|
|
|
|
var a = new Int32Array(10);
|
|
|
|
|
2019-08-16 11:32:46 +02:00
|
|
|
%PrepareFunctionForOptimization(foo);
|
2014-03-18 00:33:01 +04:00
|
|
|
foo(a);
|
|
|
|
foo(a);
|
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
foo(a);
|
2019-08-16 11:32:46 +02:00
|
|
|
%PrepareFunctionForOptimization(foo);
|
2014-03-18 00:33:01 +04:00
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
foo(a);
|
|
|
|
assertOptimized(foo);
|