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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added
Added Wasm reinterpret operators to wasmi_core::wasm API.
Changed
Marked Module::new_streaming[_unchecked] API deprecated. #1540
Reason for the deprecation:
The streaming Wasm module creation is not a great fit for Wasmi's target usage.
No users are known that depend on this functionality - please inform us if you do!
Streaming Wasm module creating has a performance overhead when not needed.
Changed CompilationMode default to CompilationMode::LazyTranslation. #1530
With this default Wasm is still validated eagerly but tranlated to Wasmi IR lazily.
This gives the best of both worlds: fast startup times while avoiding partial validation.