Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit b5e78e0

Browse files
committed
i64x2.ne instruction
1 parent 2fd21c0 commit b5e78e0

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

proposals/simd/BinarySIMD.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ For example, `ImmLaneIdx16` is a byte with values in the range 0-15 (inclusive).
225225
| `f32x4.convert_i32x4_u` | `0xfb`| - |
226226
| `v128.load32_zero` | `0xfc`| - |
227227
| `v128.load64_zero` | `0xfd`| - |
228+
| `i64x2.ne` | `0x101`| - |
228229
| `i16x8.extmul_low_i8x16_s` | `0x110`| - |
229230
| `i16x8.extmul_high_i8x16_s` | `0x111`| - |
230231
| `i16x8.extmul_low_i8x16_u` | `0x112`| - |

proposals/simd/ImplementationStatus.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@
193193
| `f32x4.convert_i32x4_u` | `-msimd128` | :heavy_check_mark: | | | :heavy_check_mark: |
194194
| `v128.load32_zero` | | :heavy_check_mark: | | | :heavy_check_mark: |
195195
| `v128.load64_zero` | | :heavy_check_mark: | | | :heavy_check_mark: |
196+
| `i64x2.ne` | | | | | |
196197
| `i16x8.extmul_low_i8x16_s` | | | | | |
197198
| `i16x8.extmul_high_i8x16_s` | | | | | |
198199
| `i16x8.extmul_low_i8x16_u` | | | | | |

proposals/simd/NewOpcodes.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,18 @@
4747
| f64x2.extract_lane | 0x21 |
4848
| f64x2.replace_lane | 0x22 |
4949

50-
| i8x16 Cmp | opcode | i16x8 Cmp | opcode | i32x4 Cmp | opcode |
51-
| ---------- | ------ | ---------- | ------ | ---------- | ------ |
52-
| i8x16.eq | 0x23 | i16x8.eq | 0x2d | i32x4.eq | 0x37 |
53-
| i8x16.ne | 0x24 | i16x8.ne | 0x2e | i32x4.ne | 0x38 |
54-
| i8x16.lt_s | 0x25 | i16x8.lt_s | 0x2f | i32x4.lt_s | 0x39 |
55-
| i8x16.lt_u | 0x26 | i16x8.lt_u | 0x30 | i32x4.lt_u | 0x3a |
56-
| i8x16.gt_s | 0x27 | i16x8.gt_s | 0x31 | i32x4.gt_s | 0x3b |
57-
| i8x16.gt_u | 0x28 | i16x8.gt_u | 0x32 | i32x4.gt_u | 0x3c |
58-
| i8x16.le_s | 0x29 | i16x8.le_s | 0x33 | i32x4.le_s | 0x3d |
59-
| i8x16.le_u | 0x2a | i16x8.le_u | 0x34 | i32x4.le_u | 0x3e |
60-
| i8x16.ge_s | 0x2b | i16x8.ge_s | 0x35 | i32x4.ge_s | 0x3f |
61-
| i8x16.ge_u | 0x2c | i16x8.ge_u | 0x36 | i32x4.ge_u | 0x40 |
50+
| i8x16 Cmp | opcode | i16x8 Cmp | opcode | i32x4 Cmp | opcode | i64x2 Cmp | opcode |
51+
| ---------- | ------ | ---------- | ------ | ---------- | ------ | ---------- | ------ |
52+
| i8x16.eq | 0x23 | i16x8.eq | 0x2d | i32x4.eq | 0x37 | --- eq --- | 0x100 |
53+
| i8x16.ne | 0x24 | i16x8.ne | 0x2e | i32x4.ne | 0x38 | i64x2.ne | 0x101 |
54+
| i8x16.lt_s | 0x25 | i16x8.lt_s | 0x2f | i32x4.lt_s | 0x39 | -- lt_s -- | 0x102 |
55+
| i8x16.lt_u | 0x26 | i16x8.lt_u | 0x30 | i32x4.lt_u | 0x3a | -- lt_u -- | 0x103 |
56+
| i8x16.gt_s | 0x27 | i16x8.gt_s | 0x31 | i32x4.gt_s | 0x3b | -- gt_s -- | 0x104 |
57+
| i8x16.gt_u | 0x28 | i16x8.gt_u | 0x32 | i32x4.gt_u | 0x3c | -- gt_u -- | 0x105 |
58+
| i8x16.le_s | 0x29 | i16x8.le_s | 0x33 | i32x4.le_s | 0x3d | -- le_s -- | 0x106 |
59+
| i8x16.le_u | 0x2a | i16x8.le_u | 0x34 | i32x4.le_u | 0x3e | -- le_u -- | 0x107 |
60+
| i8x16.ge_s | 0x2b | i16x8.ge_s | 0x35 | i32x4.ge_s | 0x3f | -- ge_s -- | 0x108 |
61+
| i8x16.ge_u | 0x2c | i16x8.ge_u | 0x36 | i32x4.ge_u | 0x40 | -- ge_u -- | 0x109 |
6262

6363
| f32x4 Cmp | opcode | f64x2 Cmp | opcode |
6464
| --------- | ------ | --------- | ------ |

proposals/simd/SIMD.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,6 +731,7 @@ def S.eq(a, b):
731731
* `i8x16.ne(a: v128, b: v128) -> v128`
732732
* `i16x8.ne(a: v128, b: v128) -> v128`
733733
* `i32x4.ne(a: v128, b: v128) -> v128`
734+
* `i64x2.ne(a: v128, b: v128) -> v128`
734735
* `f32x4.ne(a: v128, b: v128) -> v128`
735736
* `f64x2.ne(a: v128, b: v128) -> v128`
736737

0 commit comments

Comments
 (0)