You copied the Doc URL to your clipboard.
VAND (immediate)
Vector bitwise AND immediate pseudo-instruction.
Syntax
VAND
{
}.cond
datatype
,
#Qd
imm
VAND
{
}.cond
datatype
,
#Dd
imm
where:
cond
is an optional condition code.
datatype
must be either
I8
,I16
,I32
, orI64
.Qd
orDd
-
is the Advanced SIMD register for the result.
imm
is the immediate value.
Operation
VAND
takes each element of the destination vector, performs a bitwise AND
with an immediate value, and returns the result into the destination vector.
Note
On disassembly, this pseudo-instruction is disassembled to a correspondingVBIC
instruction, with the complementary immediate value.Immediate values
If
is datatype
I16
,
the immediate value must have one of the following forms:
0xFFXY
.0xXYFF
.
If
is datatype
I32
,
the immediate value must have one of the following forms:
0xFFFFFFXY
.0xFFFFXYFF
.0xFFXYFFFF
.0xXYFFFFFF
.