Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/design/coreclr/jit/wasm-baseline-features.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# WebAssembly baseline features

The following list of WASM features (https://webassembly.org/features/) will be considered "baseline" for ReadyToRun code, meaning it will not be possible to turn them off and the assumption of them being available will be hardcoded into RyuJit and Crossgen2.

The names and semantics of these features are taken from https://github.com/WebAssembly/tool-conventions/blob/main/Linking.md#target-features-section.

See also: https://webassembly.org/features/.

The `caniuse.com` website can also be used to check the avalability of features, for example: `https://caniuse.com/?search=nontrapping`.

## .NET 11

- `mutable-globals`
- `sign-ext`
- `nontrapping-fptoint`
- `exception-handling` (with exnref)
- `reference-types` (dependency of `exception-handling` with exnref)
- `simd128`
- `extended-constant-expressions` (possible dependency for R2R modules)