Closed
Bug 1791992
Opened 3 years ago
Closed 3 years ago
Assertion failure: mRawPtr != nullptr in js::wasm::CompileIntrinsicModule
Categories
(Core :: JavaScript: WebAssembly, task, P3)
Core
JavaScript: WebAssembly
Tracking
()
RESOLVED
FIXED
107 Branch
| Tracking | Status | |
|---|---|---|
| firefox107 | --- | fixed |
People
(Reporter: saelo, Assigned: rhunt)
References
Details
Attachments
(1 file)
The following program triggers a debug assertion failure in debug builds from latest HEAD:
function main() {
let v1 = 255;
do {
try {
const v3 = this.oomAtAllocation(v1);
const v4 = this;
const v6 = {};
const v8 = new Proxy(this,v6);
const v10 = v8 >= 9007199254740990n;
const v11 = this.wasmIntrinsicI8VecMul();
} catch(v12) {
}
const v13 = v1++;
} while (0 < v1);
gc();
}
main();
// CRASH INFO
// ==========
// TERMSIG: 11
// STDERR:
// Assertion failure: mRawPtr != nullptr (You can't dereference a NULL RefPtr with operator*().), at /home/builder/firefox/obj-fuzzbuild/dist/include/mozilla/RefPtr.h:358
// #01: ???[./spidermonkey/js +0x2ca327c]
// #02: ???[./spidermonkey/js +0x1ec646a]
// #03: ??? (???:???)
Here is the stacktrace from gdb:
#0 0x0000555558ae5216 in RefPtr<js::wasm::ShareableBytes const>::operator* (this=0x7fffffff8460) at obj-debug/dist/include/mozilla/RefPtr.h:357
#1 0x0000555558b56dce in js::wasm::CompileIntrinsicModule (cx=0x7ffff772fc00, ids=..., sharedMemory=js::wasm::Shareable::False, result=...) at js/src/wasm/WasmIntrinsic.cpp:219
#2 0x0000555557b9f516 in WasmIntrinsicI8VecMul (cx=0x7ffff772fc00, argc=0, vp=0x7fffffff9a70) at js/src/builtin/TestingFunctions.cpp:1974
#3 0x000016ec68f092be in ?? ()
# ...
#7 0x0000000000000000 in ?? ()
Updated•3 years ago
|
Component: JavaScript Engine → JavaScript: WebAssembly
Flags: needinfo?(rhunt)
| Assignee | ||
Comment 1•3 years ago
|
||
Updated•3 years ago
|
Assignee: nobody → rhunt
Status: NEW → ASSIGNED
| Assignee | ||
Comment 2•3 years ago
|
||
Our OOM handling was incomplete in this function. This is limited to only the JS shell.
Severity: -- → S4
Flags: needinfo?(rhunt)
Priority: -- → P3
Pushed by rhunt@eqrion.net:
https://hg.mozilla.org/integration/autoland/rev/4ecf57a3aaa6
wasm: Fix OOM handling in CompileIntrinsicModule. r=yury
Comment 5•3 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 3 years ago
status-firefox107:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 107 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•