Closed
Bug 1763970
Opened 3 years ago
Closed 3 years ago
Assertion failure: graph().osrBlock(), at js/src/jit/WarpBuilder.cpp:298
Categories
(Core :: JavaScript Engine: JIT, defect, P2)
Core
JavaScript Engine: JIT
Tracking
()
RESOLVED
DUPLICATE
of bug 1762769
People
(Reporter: lukas.bernhard, Unassigned)
References
(Blocks 2 open bugs)
Details
Steps to reproduce:
On git commit e14928941e53 spidermonkey crashes with:
Assertion failure: graph().osrBlock(), at js/src/jit/WarpBuilder.cpp:298
Bisecting the issue identifies commit e14928941e538ab39c6c0d84e9836e0eb6cbcc9a related to bug 885514.
obj-x86_64-pc-linux-gnu/dist/bin/js --fast-warmup --no-threads --cpu-count=1 --ion-offthread-compile=off --fuzzing-safe
sample.js
function main() {
try {
}
finally {
let v7 = 0;
while (v7 < 5) {
v7++;
}
try {
throw Uint8Array;
}
catch(v12) {
}
}
for (let v52 = 0; v52 < 100; v52++) { }
}
main();
| Reporter | ||
Updated•3 years ago
|
Comment 1•3 years ago
|
||
Iain can you look at this issue, this sounds like this might potentially be a huge issue and the alternative is to completely disable Ion/Warp.
Comment 2•3 years ago
|
||
This is a duplicate of bug 1762769.
Status: NEW → RESOLVED
Closed: 3 years ago
Flags: needinfo?(iireland)
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•