extend_high_i32x4_u: Wasm SIMD Umwandlungsanweisung
Die extend_high_i32x4_u SIMD Umwandlungsanweisung wandelt die Bahnen 2–3 einer unsignierten v128 i32x4 Wertinterpretation in eine i64x2 Wertinterpretation um.
Probieren Sie es aus
(module
(import "console" "log" (func $log (param i64)))
(func $main
v128.const i32x4 2090 2091 2092 2093
i64x2.extend_high_i32x4_u
i64x2.extract_lane 0
call $log ;; log the result
)
(start $main)
)
WebAssembly.instantiateStreaming(fetch("{%wasm-url%}"), { console });
Syntax
i64x2.extend_high_i32x4_u
i64x2.extend_high_i32x4_u-
Die
i64x2.extend_high_i32x4_uAnweisung.
Typ
[input] -> [output]
Binäre Kodierung
| Anweisung | Binärformat | Beispiel Text => Binär |
|---|---|---|
i64x2.extend_high_i32x4_u |
0xfd 202:u32 |
i64x2.extend_high_i32x4_u => 0xfd 0xca 0x01 |