Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions proposals/simd/BinarySIMD.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ The `v8x16.shuffle` instruction has 16 bytes after `simdop`.
| `i32x4.widen_high_i16x8_s` | `0xcf`| - |
| `i32x4.widen_low_i16x8_u` | `0xd0`| - |
| `i32x4.widen_high_i16x8_u` | `0xd1`| - |
| `i16x8.load8x8_u` | `0xd2`| m:memarg |
| `i16x8.load8x8_s` | `0xd3`| m:memarg |
| `i32x4.load16x4_u` | `0xd4`| m:memarg |
| `i32x4.load16x4_s` | `0xd5`| m:memarg |
| `i64x2.load32x2_u` | `0xd6`| m:memarg |
| `i64x2.load32x2_s` | `0xd7`| m:memarg |
| `i16x8.load8x8_s` | `0xd2`| m:memarg |
| `i16x8.load8x8_u` | `0xd3`| m:memarg |
| `i32x4.load16x4_s` | `0xd4`| m:memarg |
| `i32x4.load16x4_u` | `0xd5`| m:memarg |
| `i64x2.load32x2_s` | `0xd6`| m:memarg |
| `i64x2.load32x2_u` | `0xd7`| m:memarg |
6 changes: 3 additions & 3 deletions proposals/simd/ImplementationStatus.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,12 @@
| `f64x2.convert_i64x2_u` | `-munimplemented-simd128` | | :heavy_check_mark: | :heavy_check_mark: |
| `v8x16.swizzle` | | | :heavy_check_mark: | |
| `v8x16.shuffle` | | | :heavy_check_mark: | :heavy_check_mark: |
| `i16x8.load8x8_u` | | | | |
| `i16x8.load8x8_s` | | | | |
| `i32x4.load16x4_u` | | | | |
| `i16x8.load8x8_u` | | | | |
| `i32x4.load16x4_s` | | | | |
| `i64x2.load32x2_u` | | | | |
| `i32x4.load16x4_u` | | | | |
| `i64x2.load32x2_s` | | | | |
| `i64x2.load32x2_u` | | | | |
| `i8x16.narrow_i16x8_s` | | :heavy_check_mark: | :heavy_check_mark: | |
| `i8x16.narrow_i16x8_u` | | :heavy_check_mark: | :heavy_check_mark: | |
| `i16x8.narrow_i32x4_s` | | :heavy_check_mark: | :heavy_check_mark: | |
Expand Down
6 changes: 3 additions & 3 deletions proposals/simd/SIMD.md
Original file line number Diff line number Diff line change
Expand Up @@ -676,12 +676,12 @@ Load a single element and splat to all lanes of a `v128` vector.

### Load and Extend

* `i16x8.load8x8_u(memarg) -> v128`: load eight 8-bit integers and zero extend each one to a 16-bit lane
* `i16x8.load8x8_s(memarg) -> v128`: load eight 8-bit integers and sign extend each one to a 16-bit lane
* `i32x4.load16x4_u(memarg) -> v128`: load four 16-bit integers and zero extend each one to a 32-bit lane
* `i16x8.load8x8_u(memarg) -> v128`: load eight 8-bit integers and zero extend each one to a 16-bit lane
* `i32x4.load16x4_s(memarg) -> v128`: load four 16-bit integers and sign extend each one to a 32-bit lane
* `i64x2.load32x2_u(memarg) -> v128`: load two 32-bit integers and zero extend each one to a 64-bit lane
* `i32x4.load16x4_u(memarg) -> v128`: load four 16-bit integers and zero extend each one to a 32-bit lane
* `i64x2.load32x2_s(memarg) -> v128`: load two 32-bit integers and sign extend each one to a 64-bit lane
* `i64x2.load32x2_u(memarg) -> v128`: load two 32-bit integers and zero extend each one to a 64-bit lane

Fetch consequtive integers up to 32-bit wide and produce a vector with lanes up to 64 bits.

Expand Down