MOVI Move immediate (vector) This instruction places 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. If PSTATE.DIT is 1: The execution time of this instruction is independent of: The values of the data supplied in any of its registers. The values of the NZCV flags. The response of this instruction to asynchronous exceptions does not vary based on: The values of the data supplied in any of its registers. The values of the NZCV flags. 0 0 1 1 1 1 0 0 0 0 0 0 1 0 1 1 1 0 MOVI <Vd>.<T>, #<imm8>{, LSL #0} 0 1 0 x 0 MOVI <Vd>.<T>, #<imm8>{, LSL #<amount>} 0 0 x x 0 MOVI <Vd>.<T>, #<imm8>{, LSL #<amount>} 0 1 1 0 x MOVI <Vd>.<T>, #<imm8>, MSL #<amount> 0 1 1 1 1 0 MOVI <Dd>, #<imm> 1 1 1 1 1 0 MOVI <Vd>.2D, #<imm> 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); <Vd> Is the name of the SIMD&FP destination register, encoded in the "Rd" field. <T> For the 8-bit variant: is an arrangement specifier, Q <T> 0 8B 1 16B
<T> For the 16-bit variant: is an arrangement specifier, Q <T> 0 4H 1 8H
<T> For the 32-bit variant: is an arrangement specifier, Q <T> 0 2S 1 4S
<imm8> Is an 8-bit immediate encoded in "a:b:c:d:e:f:g:h". <amount> For the 16-bit shifted immediate variant: is the shift amount cmode<1> <amount> 0 0 1 8
defaulting to 0 if LSL is omitted.
<amount> For the 32-bit shifted immediate variant: is the shift amount cmode<2:1> <amount> 00 0 01 8 10 16 11 24
defaulting to 0 if LSL is omitted.
<amount> For the 32-bit shifting ones variant: is the shift amount cmode<0> <amount> 0 8 1 16
<Dd> Is the 64-bit name of the SIMD&FP destination register, encoded in the "Rd" field. <imm> Is a 64-bit immediate 'aaaaaaaabbbbbbbbccccccccddddddddeeeeeeeeffffffffgggggggghhhhhhhh', encoded in "a:b:c:d:e:f:g:h".
CheckFPAdvSIMDEnabled64(); V[rd, datasize] = imm;