all_true: Wasm SIMD bitwise instruction
The all_true SIMD bitwise instruction tests whether all the bits of a v128 input value are non-zero.
Try it
(module
(import "console" "log" (func $log (param i32)))
(func $main
v128.const i8x16 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0
i8x16.all_true
call $log ;; log the result
)
(start $main)
)
WebAssembly.instantiateStreaming(fetch("{%wasm-url%}"), { console });
Syntax
value_type.all_true
value_type-
The type of value the instruction is being run on. The following types support
all_true:i8x16i16x8i32x4i64x2
all_true-
The
all_trueinstruction. Must always be included after thevalue_typeand a period (.).
Type
[input] -> [output]
Binary encoding
| Instruction | Binary format | Example text => binary |
|---|---|---|
i8x16.all_true |
0xfd 99:u32 |
i8x16.all_true => 0xfd 0x63 |
i16x8.all_true |
0xfd 131:u32 |
i16x8.all_true => 0xfd 0x83 0x01 |
i32x4.all_true |
0xfd 163:u32 |
i32x4.all_true => 0xfd 0xa3 0x01 |
i64x2.all_true |
0xfd 195:u32 |
i64x2.all_true => 0xfd 0xc3 0x01 |