045fbe46b1
BUG= R=jarin@chromium.org Review URL: https://codereview.chromium.org/595453002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24117 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
73 lines
1.2 KiB
JavaScript
73 lines
1.2 KiB
JavaScript
// 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.
|
|
|
|
// Flags: --allow-natives-syntax
|
|
|
|
var k = "x";
|
|
var o1 = {x: 10};
|
|
var o2 = {x: 11, y: 20};
|
|
var o3 = {x: 12, y: 20, z: 100};
|
|
|
|
function f(o) {
|
|
var result = 0;
|
|
for (var i = 0; i < 100; i++) {
|
|
result += o[k];
|
|
}
|
|
return result;
|
|
}
|
|
|
|
f(o1);
|
|
f(o1);
|
|
f(o1);
|
|
%OptimizeFunctionOnNextCall(f);
|
|
assertEquals(1000, f(o1));
|
|
|
|
f(o2);
|
|
f(o2);
|
|
f(o2);
|
|
%OptimizeFunctionOnNextCall(f);
|
|
assertEquals(1100, f(o2));
|
|
|
|
f(o3);
|
|
f(o3);
|
|
f(o3);
|
|
%OptimizeFunctionOnNextCall(f);
|
|
assertEquals(1200, f(o3));
|
|
|
|
(function CountOperationDeoptimizationGetter() {
|
|
var global = {};
|
|
global.__defineGetter__("A", function () { return "x"; });
|
|
|
|
function h() {
|
|
return "A";
|
|
}
|
|
|
|
function g(a, b, c) {
|
|
try {
|
|
return a + b.toString() + c;
|
|
} catch (e) { }
|
|
}
|
|
|
|
function test(o) {
|
|
return g(1, o[h()]--, 10);
|
|
}
|
|
|
|
test(global);
|
|
test(global);
|
|
%OptimizeFunctionOnNextCall(test);
|
|
print(test(global));
|
|
})();
|
|
|
|
|
|
(function CountOperationDeoptimizationPoint() {
|
|
function test() {
|
|
this[0, ""]--;
|
|
}
|
|
|
|
test();
|
|
test();
|
|
%OptimizeFunctionOnNextCall(test);
|
|
test();
|
|
})();
|