blob: 172f3fbc7457af0f4b267a846382e89c66f51ae4 (
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
27
28
29
30
31
32
33
34
|
// |jit-test| allow-oom
if (helperThreadCount() == 0 || !('oomAfterAllocations' in this))
quit();
var lfcode = new Array();
lfcode.push("5");
lfcode.push(`
gczeal(8, 2);
try {
[new String, y]
} catch (e) {}
oomAfterAllocations(50);
try {
(5).replace(r, () => {});
} catch (x) {}
`);
while (true) {
var file = lfcode.shift(); if (file == undefined) { break; }
loadFile(file)
}
function loadFile(lfVarx) {
if (lfVarx.substr(-3) != ".js" && lfVarx.length != 1) {
switch (lfRunTypeId) {
case 5:
var lfGlobal = newGlobal();
for (lfLocal in this) {}
lfGlobal.offThreadCompileScript(lfVarx);
lfGlobal.runOffThreadScript();
}
} else if (!isNaN(lfVarx)) {
lfRunTypeId = parseInt(lfVarx);
}
}
|