1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// |jit-test| --fast-warmup
function foo(args) {
with ({}) {}
return args.length;
}
function inner() {
return arguments;
}
function outer0() {
trialInline();
var args = Array.prototype.slice.call(inner(), -2);
return foo(args);
}
function outer1() {
trialInline();
var args = Array.prototype.slice.call(inner(1), -2);
return foo(args);
}
function outer2() {
trialInline();
var args = Array.prototype.slice.call(inner(1, 2), -2);
return foo(args);
}
function outer3() {
trialInline();
var args = Array.prototype.slice.call(inner(1, 2, 3), -2);
return foo(args);
}
function outer4() {
trialInline();
var args = Array.prototype.slice.call(inner(1, 2, 3, 4), -2);
return foo(args);
}
with ({}) {}
for (var i = 0; i < 50; i++) {
assertEq(outer0(), 0);
assertEq(outer1(), 1);
assertEq(outer2(), 2);
assertEq(outer3(), 2);
assertEq(outer4(), 2);
}
|