blob: fd6e44f9dbd96facef203f0f4224abab0f5d2420 (
plain)
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
|
setJitCompilerOption("baseline.warmup.trigger", 9);
setJitCompilerOption("ion.warmup.trigger", 20);
// Prevent the GC from cancelling compilations, when we expect them to succeed.
gczeal(0);
function rcreate_arguments_object_nouse() {
assertRecoveredOnBailout(arguments, true);
}
function rcreate_arguments_object_oneuse() {
assertRecoveredOnBailout(arguments, true);
return arguments[0];
}
function rcreate_arguments_object_oneuse_oob() {
assertRecoveredOnBailout(arguments, true);
return arguments[100];
}
with ({}) {}
for (var i = 0; i < 100; i++) {
rcreate_arguments_object_nouse();
rcreate_arguments_object_oneuse(0);
rcreate_arguments_object_oneuse_oob(0);
}
|