Add zwasm to the standalone runtimes table - #563
Open
jtakakura wants to merge 3 commits into
Open
Conversation
Adds the zwasm entry (Standalone Runtimes) and its logo (images/zwasm.svg).
jtakakura
marked this pull request as draft
August 22, 2026 07:31
jtakakura
marked this pull request as ready for review
August 22, 2026 07:39
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds zwasm, a WebAssembly runtime written in Zig, to the Standalone Runtimes rows, plus its logo (
images/zwasm.svg).Every cell was measured against zwasm v2.5.0 (default build) rather than transcribed from project docs: the official spec-testsuite lanes run on both engines (interpreter and JIT), plus a minimal self-verifying probe module per feature. Where the engines differ, the cell carries a note naming which engine executes the feature and what the default mode does.
One question for the maintainers — non-blocking: zwasm ships two engines with an
autodefault that routes between them, so a few cells are capability-split rather than flag-gated:simd/relaxedSimd(the JIT executes them; the interpreter accepts the module but traps when a vector instruction executes),multiMemory(interpreter only; the JIT rejects), andthreads(single-threaded host: wait times out, notify returns 0). Existing annotations in the table mostly describe how to enable a feature, though Wasmtime'stailCallnote is a backend-and-architecture condition. Are these cells represented the way you would want, or would you rather see them asfalse, or worded some other way? If they are fine as written, nothing needs to change.Versions are omitted deliberately (plain
true) — per-feature "supported since" versions are not cheaply derivable from the project history.Logo: silhouette derived from the WebAssembly logo mark (CC0-1.0, carlosbaraza/web-assembly-logo), recoloured, with lettering set in Open Sans (OFL-1.1).