Skip to content

Commit

Permalink
Merge pull request #1421 from daxpedda/relaxed-simd
Browse files Browse the repository at this point in the history
Stabilize Wasm relaxed SIMD
  • Loading branch information
traviscross committed Aug 8, 2024
2 parents 8c789ff + 21012e8 commit 539f44a
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions src/attributes/codegen.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 539f44a

Please sign in to comment.