blob: 100a1817cf8e0a3a764f39b4ae7244cd4b6cd801 (
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
|
// |jit-test| allow-oom; skip-if: helperThreadCount() == 0 || !hasFunction.oomAfterAllocations
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.offThreadCompileToStencil(lfVarx);
var stencil = lfGlobal.finishOffThreadStencil();
lfGlobal.evalStencil(stencil);
}
} else if (!isNaN(lfVarx)) {
lfRunTypeId = parseInt(lfVarx);
}
}
|