any_true: Wasm SIMD bitwise instruction
The any_true SIMD bitwise instruction tests whether an v128 input value contains any non-zero bits.
Try it
(module
(import "console" "log" (func $log (param i32)))
(func $main
v128.const f32x4 0 0 0 1.2
v128.any_true
call $log ;; log the result
)
(start $main)
)
WebAssembly.instantiateStreaming(fetch("{%wasm-url%}"), { console });
Syntax
v128.any_true
v128.any_true-
The
v128.any_trueinstruction.
Type
[input] -> [output]
Binary encoding
| Instruction | Binary format | Example text => binary |
|---|---|---|
v128.any_true |
0xfd 83:u32 |
v128.any_true => 0xfd 0x53 |