| |||
| Home > NEON and VFP Programming > NEON logical and compare operations > VACGE and VACGT | |||
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.
VACop{cond}.F32 {Qd},Qn,Qm
VACop{cond}.F32 {Dd},Dn,Dm
where:
opmust be one of:
GEAbsolute Greater than or Equal
GTAbsolute Greater Than.
condis an optional condition code.
Qd, Qn, Qmspecifies the destination register, the first operand register, and the second operand register, for a quadword operation.
Dd, Dn, Dmspecifies the destination register, the first operand register, and the second operand register, for a doubleword operation.
The result datatype is I32.