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

Remove integer SIMD not-equals instructions #351

Closed
wants to merge 1 commit into from
Closed
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
3 changes: 0 additions & 3 deletions proposals/simd/BinarySIMD.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ For example, `ImmLaneIdx16` is a byte with values in the range 0-15 (inclusive).
| `f64x2.extract_lane` | `0x21`| i:ImmLaneIdx2 |
| `f64x2.replace_lane` | `0x22`| i:ImmLaneIdx2 |
| `i8x16.eq` | `0x23`| - |
| `i8x16.ne` | `0x24`| - |
| `i8x16.lt_s` | `0x25`| - |
| `i8x16.lt_u` | `0x26`| - |
| `i8x16.gt_s` | `0x27`| - |
Expand All @@ -78,7 +77,6 @@ For example, `ImmLaneIdx16` is a byte with values in the range 0-15 (inclusive).
| `i8x16.ge_s` | `0x2b`| - |
| `i8x16.ge_u` | `0x2c`| - |
| `i16x8.eq` | `0x2d`| - |
| `i16x8.ne` | `0x2e`| - |
| `i16x8.lt_s` | `0x2f`| - |
| `i16x8.lt_u` | `0x30`| - |
| `i16x8.gt_s` | `0x31`| - |
Expand All @@ -88,7 +86,6 @@ For example, `ImmLaneIdx16` is a byte with values in the range 0-15 (inclusive).
| `i16x8.ge_s` | `0x35`| - |
| `i16x8.ge_u` | `0x36`| - |
| `i32x4.eq` | `0x37`| - |
| `i32x4.ne` | `0x38`| - |
| `i32x4.lt_s` | `0x39`| - |
| `i32x4.lt_u` | `0x3a`| - |
| `i32x4.gt_s` | `0x3b`| - |
Expand Down
1 change: 0 additions & 1 deletion proposals/simd/NewOpcodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
| i8x16 Cmp | opcode | i16x8 Cmp | opcode | i32x4 Cmp | opcode |
| ---------- | ------ | ---------- | ------ | ---------- | ------ |
| i8x16.eq | 0x23 | i16x8.eq | 0x2d | i32x4.eq | 0x37 |
| i8x16.ne | 0x24 | i16x8.ne | 0x2e | i32x4.ne | 0x38 |
| i8x16.lt_s | 0x25 | i16x8.lt_s | 0x2f | i32x4.lt_s | 0x39 |
| i8x16.lt_u | 0x26 | i16x8.lt_u | 0x30 | i32x4.lt_u | 0x3a |
| i8x16.gt_s | 0x27 | i16x8.gt_s | 0x31 | i32x4.gt_s | 0x3b |
Expand Down
3 changes: 0 additions & 3 deletions proposals/simd/SIMD.md
Original file line number Diff line number Diff line change
Expand Up @@ -691,9 +691,6 @@ def S.eq(a, b):
```

### Non-equality
* `i8x16.ne(a: v128, b: v128) -> v128`
* `i16x8.ne(a: v128, b: v128) -> v128`
* `i32x4.ne(a: v128, b: v128) -> v128`
* `f32x4.ne(a: v128, b: v128) -> v128`
* `f64x2.ne(a: v128, b: v128) -> v128`

Expand Down