| |||
| Home > NEON and VFP Programming > NEON and VFP pseudo-instructions > VACLE and VACLT | |||
Vector Absolute Compare takes the absolute value of each element in a vector, and compares it with the absolute value of the corresponding element of a second vector. If the condition is true, the corresponding element in the destination vector is set to all ones. Otherwise, it is set to all zeros.
On disassembly, these pseudo-instructions are disassembled
to the corresponding VACGE and VACGT instructions,
with the operands reversed.
VACop{cond}.datatype{Qd},Qn,Qm
VACop{cond}.datatype{Dd},Dn,Dm
where:
opmust be one of:
LEAbsolute Less than or Equal
LTAbsolute Less Than.
condis an optional condition code.
datatypemust be F32.
Qd or Ddis the NEON register for the result.
The result datatype is I32.
Qn or Dnis the NEON register holding the first operand.
Qm or Dmis the NEON register holding the second operand.