-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1668375 - wasm: Decode ref.null in element segments as heap type.…
… r=lth Because we special case the decoding code for element segments, the change to use heap types for ref.null wasn't propagated from OpIter. We should decode as a heap type here. Differential Revision: https://phabricator.services.mozilla.com/D91997
- Loading branch information
Showing
3 changed files
with
67 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// |jit-test| skip-if: !wasmFunctionReferencesEnabled() | ||
|
||
load(libdir + "wasm-binary.js"); | ||
|
||
const v2vSig = {args:[], ret:VoidCode}; | ||
const v2vSigSection = sigSection([v2vSig]); | ||
|
||
function checkInvalid(binary, errorMessage) { | ||
assertErrorMessage(() => new WebAssembly.Module(binary), | ||
WebAssembly.CompileError, | ||
errorMessage); | ||
} | ||
|
||
// The immediate of ref.null is a heap type, not a general reference type | ||
|
||
const invalidRefNullHeapBody = moduleWithSections([ | ||
v2vSigSection, | ||
declSection([0]), | ||
bodySection([ | ||
funcBody({locals:[], body:[ | ||
RefNullCode, | ||
OptRefCode, | ||
AnyFuncCode, | ||
DropCode, | ||
]}) | ||
]) | ||
]); | ||
checkInvalid(invalidRefNullHeapBody, /invalid heap type/); | ||
|
||
const invalidRefNullHeapElem = moduleWithSections([ | ||
generalElemSection([ | ||
{ | ||
flag: PassiveElemExpr, | ||
typeCode: AnyFuncCode, | ||
elems: [ | ||
[RefNullCode, OptRefCode, AnyFuncCode, EndCode] | ||
] | ||
} | ||
]) | ||
]); | ||
checkInvalid(invalidRefNullHeapElem, /invalid heap type/); | ||
|
||
const invalidRefNullHeapGlobal = moduleWithSections([ | ||
globalSection([ | ||
{ | ||
valType: AnyFuncCode, | ||
flag: 0, | ||
initExpr: [RefNullCode, OptRefCode, AnyFuncCode, EndCode] | ||
} | ||
]) | ||
]); | ||
checkInvalid(invalidRefNullHeapGlobal, /invalid heap type/); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters