Move inverted immediate (vector)
This instruction places the inverse of an immediate constant into every vector element of the destination SIMD&FP register.
Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
Variants: FEAT_AdvSIMD (ARMv8.0)
31 | 30 | 29 | 28 | 27 | 26 | 25 | 24 | 23 | 22 | 21 | 20 | 19 | 18 | 17 | 16 | 15 | 14 | 13 | 12 | 11 | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | ||||||||||||||||||
Q | op | a | b | c | cmode | o2 | d | e | f | g | h | Rd |
---|
MVNI <Vd>.<T>, #<imm8>{, LSL #<amount>}
MVNI <Vd>.<T>, #<imm8>{, LSL #<amount>}
MVNI <Vd>.<T>, #<imm8>, MSL #<amount>
if !IsFeatureImplemented(FEAT_AdvSIMD) then EndOfDecode(Decode_UNDEF); constant integer rd = UInt(Rd); constant integer datasize = 64 << UInt(Q); constant bits(64) imm64 = AdvSIMDExpandImm(op, cmode, a:b:c:d:e:f:g:h); constant bits(datasize) imm = Replicate(imm64, datasize DIV 64);
CheckFPAdvSIMDEnabled64(); V[rd, datasize] = NOT(imm);
If PSTATE.DIT is 1: