You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Return the lane-wise minimum or maximum of two values. If either values is NaN, or the values are -0.0 and +0.0, the return value is implementation-defined.
Where `IMPLEMENTATION_DEFINED_ONE_OF(x, y)` returns either `x` or `y`, depending on the implementation.
230
+
208
231
## Binary format
209
232
210
233
All opcodes have the `0xfd` prefix (same as SIMD proposal), which are omitted in the table below.
@@ -224,6 +247,10 @@ All opcodes have the `0xfd` prefix (same as SIMD proposal), which are omitted in
224
247
|`i16x8.blend`| 0xb3 |
225
248
|`i32x4.blend`| 0xd2 |
226
249
|`i64x2.blend`| 0xd3 |
250
+
|`f32x4.min`| 0xb4 |
251
+
|`f32x4.max`| 0xe2 |
252
+
|`f64x2.min`| 0xd4 |
253
+
|`f64x2.max`| 0xee |
227
254
228
255
Note: the opcodes are chosen to fit into the existing opcode space of the SIMD proposal, see [Binary encoding of SIMD](https://github.com/WebAssembly/simd/blob/main/proposals/simd/BinarySIMD.md), or a [table view of the same opcodes](https://github.com/WebAssembly/simd/blob/main/proposals/simd/NewOpcodes.md) for a list of existing opcodes.
0 commit comments