narrow_i32x4_s: Wasm SIMD conversion instruction
The narrow_i32x4_s SIMD conversion instruction converts two signed v128 i32x4 value interpretations into an i16x8 value interpretation.
Try it
(module
(import "console" "log" (func $log (param i32)))
(func $main
v128.const i32x4 200 210 220 230
v128.const i32x4 300 310 320 330
i16x8.narrow_i32x4_s
i16x8.extract_lane_s 7
call $log ;; log the result
)
(start $main)
)
WebAssembly.instantiateStreaming(fetch("{%wasm-url%}"), { console });
Syntax
i16x8.narrow_i32x4_s
i16x8.narrow_i32x4_s-
The
i16x8.narrow_i32x4_sinstruction.
Type
[input1, input2] -> [output]
Binary encoding
| Instruction | Binary format | Example text => binary |
|---|---|---|
i16x8.narrow_i32x4_s |
0xfd 133:u32 |
i16x8.narrow_i32x4_s => 0xfd 0x85 0x01 |