escape-analysis-15.js 506 Bytes
Newer Older
1 2 3 4
// 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.

5
// Flags: --allow-natives-syntax --turbo-escape --no-turbo-load-elimination
6 7 8 9 10 11 12 13 14

function f(i) {
  var o1 = {a: 1, b: 2};
  var o2 = {a: 1, b: 3};
  var o3 = {a: o2.b};
  o3.a = "";
  o2.a = o1;
  if (i == 4) return o3;
}
15
%PrepareFunctionForOptimization(f);
16 17 18 19 20
for (var i = 0; i < 100; ++i){
  f(i%5)
}
%OptimizeFunctionOnNextCall(f);
f(false);