diff --git a/proposals/simd/BinarySIMD.md b/proposals/simd/BinarySIMD.md index 715828476..871063b30 100644 --- a/proposals/simd/BinarySIMD.md +++ b/proposals/simd/BinarySIMD.md @@ -251,3 +251,4 @@ For example, `ImmLaneIdx16` is a byte with values in the range 0-15 (inclusive). | `v128.store64_lane` | `TBD`| m:memarg, i:ImmLaneIdx2 | | `i64x2.eq` | `TBD`| - | | `i64x2.ne` | `TBD`| - | +| `i64x2.all_true` | `TBD`| - | diff --git a/proposals/simd/ImplementationStatus.md b/proposals/simd/ImplementationStatus.md index 270cf3cd9..37a68e690 100644 --- a/proposals/simd/ImplementationStatus.md +++ b/proposals/simd/ImplementationStatus.md @@ -150,6 +150,7 @@ | `i32x4.dot_i16x8_s` | | :heavy_check_mark: | | | :heavy_check_mark: | | `i64x2.eq` | | | | | | | `i64x2.neg` | `-msimd128` | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: | +| `i64x2.all_true` | | | | | | | `i64x2.bitmask` | | :heavy_check_mark: | | | | | `i64x2.shl` | `-msimd128` | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: | | `i64x2.shr_s` | `-msimd128` | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: | diff --git a/proposals/simd/NewOpcodes.md b/proposals/simd/NewOpcodes.md index 8241be0f8..81f21e69f 100644 --- a/proposals/simd/NewOpcodes.md +++ b/proposals/simd/NewOpcodes.md @@ -83,7 +83,7 @@ | i8x16.abs | 0x60 | i16x8.abs | 0x80 | i32x4.abs | 0xa0 | ------------- | 0xc0 | | i8x16.neg | 0x61 | i16x8.neg | 0x81 | i32x4.neg | 0xa1 | i64x2.neg | 0xc1 | | ------------- | 0x62 | ------------- | 0x82 | ------------- | 0xa2 | ------------- | 0xc2 | -| i8x16.all_true | 0x63 | i16x8.all_true | 0x83 | i32x4.all_true | 0xa3 | ------------- | 0xc3 | +| i8x16.all_true | 0x63 | i16x8.all_true | 0x83 | i32x4.all_true | 0xa3 | (i64x2.all_true) [TBD] | 0xc3 | | i8x16.bitmask | 0x64 | i16x8.bitmask | 0x84 | i32x4.bitmask | 0xa4 | i64x2.bitmask | 0xc4 | | i8x16.narrow_i16x8_s | 0x65 | i16x8.narrow_i32x4_s | 0x85 | ---- narrow ---- | 0xa5 | ------------- | 0xc5 | | i8x16.narrow_i16x8_u | 0x66 | i16x8.narrow_i32x4_u | 0x86 | ---- narrow ---- | 0xa6 | ------------- | 0xc6 | diff --git a/proposals/simd/SIMD.md b/proposals/simd/SIMD.md index 742e8fa4a..ed43dadd0 100644 --- a/proposals/simd/SIMD.md +++ b/proposals/simd/SIMD.md @@ -677,6 +677,7 @@ These functions return 1 if any bit in `a` is non-zero, 0 otherwise. * `i8x16.all_true(a: v128) -> i32` * `i16x8.all_true(a: v128) -> i32` * `i32x4.all_true(a: v128) -> i32` +* `i64x2.all_true(a: v128) -> i32` These functions return 1 if all lanes in `a` are non-zero, 0 otherwise.