vmvn
Vector Move NOT
VMVN<c> <Qd>, <Qm>
Moves bitwise inverse of immediate/register.
Details
Performs bitwise NOT (inversion) of all bits in a 128-bit SIMD register, storing the result in the destination. This is a data-type-independent operation that works on all bit patterns equally. Condition flags are unaffected. This is an A32/T32 NEON instruction with no privilege restrictions.
Pseudocode Operation
Qd ← ~Qm
Example
VMVN q0, q2
Encoding
Binary Layout
111100111
D
11
size
00
Vd
0
1011
0
M
0
Vm
Operands
-
Qd
Destination 128-bit SIMD register -
Qm
Second source 128-bit SIMD register
Reference (Arm AArch32 ISA)
Instruction Forms
| Encoding | Instruction | ISA | Bit pattern | ||
|---|---|---|---|---|---|
| 0xF2800030 | VMVN{<c>}{<q>}.I32 <Dd>, #<imm> | A32 | 1111001 | i | 1 | D | 000 | imm3 | Vd | cmode | 0 | 0 | 1 | 1 | imm4 | ||
| 0xF2800070 | VMVN{<c>}{<q>}.I32 <Qd>, #<imm> | A32 | 1111001 | i | 1 | D | 000 | imm3 | Vd | cmode | 0 | 1 | 1 | 1 | imm4 | ||
| 0xF2800830 | VMVN{<c>}{<q>}.I16 <Dd>, #<imm> | A32 | 1111001 | i | 1 | D | 000 | imm3 | Vd | cmode | 0 | 0 | 1 | 1 | imm4 | ||
| 0xF2800870 | VMVN{<c>}{<q>}.I16 <Qd>, #<imm> | A32 | 1111001 | i | 1 | D | 000 | imm3 | Vd | cmode | 0 | 1 | 1 | 1 | imm4 | ||
| 0xF2800C30 | VMVN{<c>}{<q>}.I32 <Dd>, #<imm> | A32 | 1111001 | i | 1 | D | 000 | imm3 | Vd | cmode | 0 | 0 | 1 | 1 | imm4 | ||
| 0xF2800C70 | VMVN{<c>}{<q>}.I32 <Qd>, #<imm> | A32 | 1111001 | i | 1 | D | 000 | imm3 | Vd | cmode | 0 | 1 | 1 | 1 | imm4 | ||
| 0xEF800030 | VMVN{<c>}{<q>}.I32 <Dd>, #<imm> | T32 | 111 | i | 11111 | D | 000 | imm3 | Vd | cmode | 0 | 0 | 1 | 1 | imm4 | ||
| 0xEF800070 | VMVN{<c>}{<q>}.I32 <Qd>, #<imm> | T32 | 111 | i | 11111 | D | 000 | imm3 | Vd | cmode | 0 | 1 | 1 | 1 | imm4 | ||
| 0xEF800830 | VMVN{<c>}{<q>}.I16 <Dd>, #<imm> | T32 | 111 | i | 11111 | D | 000 | imm3 | Vd | cmode | 0 | 0 | 1 | 1 | imm4 | ||
| 0xEF800870 | VMVN{<c>}{<q>}.I16 <Qd>, #<imm> | T32 | 111 | i | 11111 | D | 000 | imm3 | Vd | cmode | 0 | 1 | 1 | 1 | imm4 | ||
| 0xEF800C30 | VMVN{<c>}{<q>}.I32 <Dd>, #<imm> | T32 | 111 | i | 11111 | D | 000 | imm3 | Vd | cmode | 0 | 0 | 1 | 1 | imm4 | ||
| 0xEF800C70 | VMVN{<c>}{<q>}.I32 <Qd>, #<imm> | T32 | 111 | i | 11111 | D | 000 | imm3 | Vd | cmode | 0 | 1 | 1 | 1 | imm4 | ||
| 0xF3B00580 | VMVN{<c>}{<q>}{.<dt>} <Dd>, <Dm> | A32 | 111100111 | D | 11 | size | 00 | Vd | 0 | 1011 | 0 | M | 0 | Vm | ||
| 0xF3B005C0 | VMVN{<c>}{<q>}{.<dt>} <Qd>, <Qm> | A32 | 111100111 | D | 11 | size | 00 | Vd | 0 | 1011 | 1 | M | 0 | Vm |
Description
Vector Bitwise NOT (register) takes a value from a register, inverts the value of each bit, and places the result in the destination register. The registers can be either doubleword or quadword.
Depending on settings in the CPACR, NSACR, and HCPTR registers, and the Security state and PE mode in which the instruction is executed, an attempt to execute the instruction might be undefined, or trapped to Hyp mode. For more information see Enabling Advanced SIMD and floating-point support.
Operation
if ConditionPassed() then
EncodingSpecificOperations(); CheckAdvSIMDEnabled();
for r = 0 to regs-1
D[d+r] = NOT(D[m+r]);