From d035af92a1991057eecd06e3c46166913262654a Mon Sep 17 00:00:00 2001 From: daxpedda Date: Wed, 1 Nov 2023 00:19:00 +0100 Subject: [PATCH] Stabilize Wasm target features that are in phase 4 and 5 --- src/attributes/codegen.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/src/attributes/codegen.md b/src/attributes/codegen.md index 7a50fe26f..0d3d6ad2e 100644 --- a/src/attributes/codegen.md +++ b/src/attributes/codegen.md @@ -273,10 +273,20 @@ 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 -------------|------------------- -`simd128` | [WebAssembly simd proposal][simd128] - +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] + +[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 +[sign-ext]: https://github.com/WebAssembly/sign-extension-ops [simd128]: https://github.com/webassembly/simd ### Additional information