The all_true SIMD bitwise instruction tests whether all lanes of a v128 input value are non-zero.
(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 });value_type.all_true
value_typeThe type of value the instruction is being run on. The following types support all_true:
i8x16i16x8i32x4i64x2all_trueThe all_true instruction. Must always be included after the value_type and a period (.).
[input] -> [output]
inputThe input v128 value interpretation.
outputThe output value. This is an i32 type equal to 1 if the v128 input contains all non-zero bits, or 0 if any of the bits are 0.
| 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 |