From 21012e88c9407fb5937fa922e35c3bf59da6ca83 Mon Sep 17 00:00:00 2001 From: daxpedda Date: Wed, 1 Nov 2023 00:22:44 +0100 Subject: [PATCH] Stabilize Wasm relaxed SIMD --- src/attributes/codegen.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/attributes/codegen.md b/src/attributes/codegen.md index e7de84311..0ccc01361 100644 --- a/src/attributes/codegen.md +++ b/src/attributes/codegen.md @@ -273,19 +273,21 @@ attempting to use instructions unsupported by the Wasm engine will fail at load time without the risk of being interpreted in a way different from what the compiler expected. -Feature | Description -----------------------|------------------- -`bulk-memory` | [WebAssembly bulk memory operations proposal][bulk-memory] -`extended-const` | [WebAssembly extended const expressions proposal][extended-const] -`mutable-globals` | [WebAssembly mutable global proposal][mutable-globals] -`nontrapping-fptoint` | [WebAssembly non-trapping float-to-int conversion proposal][nontrapping-fptoint] -`sign-ext` | [WebAssembly sign extension operators Proposal][sign-ext] -`simd128` | [WebAssembly simd proposal][simd128] +Feature | Implicitly Enables | Description +----------------------|---------------------|------------------- +`bulk-memory` | | [WebAssembly bulk memory operations proposal][bulk-memory] +`extended-const` | | [WebAssembly extended const expressions proposal][extended-const] +`mutable-globals` | | [WebAssembly mutable global proposal][mutable-globals] +`nontrapping-fptoint` | | [WebAssembly non-trapping float-to-int conversion proposal][nontrapping-fptoint] +`relaxed-simd` | `simd128` | [WebAssembly relaxed simd proposal][relaxed-simd] +`sign-ext` | | [WebAssembly sign extension operators Proposal][sign-ext] +`simd128` | | [WebAssembly simd proposal][simd128] [bulk-memory]: https://github.com/WebAssembly/bulk-memory-operations [extended-const]: https://github.com/WebAssembly/extended-const [mutable-globals]: https://github.com/WebAssembly/mutable-global [nontrapping-fptoint]: https://github.com/WebAssembly/nontrapping-float-to-int-conversions +[relaxed-simd]: https://github.com/WebAssembly/relaxed-simd [sign-ext]: https://github.com/WebAssembly/sign-extension-ops [simd128]: https://github.com/webassembly/simd