You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rather than fully parsing the wasm to validate it via wasmparser::Validator::validate_all and then full re-parsing the Wasm again inside the parse pass when constructing the ModuleInfo tree, we should use the lower-level wasmparser::Validator APIs to validate each parsed payload as we get it during the parse pass.
Also we should do the checking for table-manipulation instructions inside this single pass too.
The text was updated successfully, but these errors were encountered:
Rather than fully parsing the wasm to validate it via
wasmparser::Validator::validate_all
and then full re-parsing the Wasm again inside theparse
pass when constructing theModuleInfo
tree, we should use the lower-levelwasmparser::Validator
APIs to validate each parsed payload as we get it during theparse
pass.Also we should do the checking for table-manipulation instructions inside this single pass too.
The text was updated successfully, but these errors were encountered: