VMOV (between two general-purpose registers and a doubleword floating-point register)

Copy two general-purpose registers to or from a SIMD&FP register copies two words from two general-purpose registers into a doubleword register in the Advanced SIMD and floating-point register file, or from a doubleword register in the Advanced SIMD and floating-point register file to two general-purpose registers.

Depending on settings in the CPACR, NSACR, HCPTR, and FPEXC 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.

It has encodings from the following instruction sets: A32 ( A1 ) and T32 ( T1 ) .

A1

313029282726252423222120191817161514131211109876543210
!= 11111100010opRt2Rt101100M1Vm
cond

Encoding for the From general-purpose registers variant

Applies when (op == 0)

VMOV{<c>}{<q>} <Dm>, <Rt>, <Rt2>

Encoding for the To general-purpose registers variant

Applies when (op == 1)

VMOV{<c>}{<q>} <Rt>, <Rt2>, <Dm>

Decode for all variants of this encoding

constant to_arm_registers = (op == '1'); constant t = UInt(Rt); constant t2 = UInt(Rt2); constant m = UInt(M:Vm); // Armv8-A removes UNPREDICTABLE for R13 if t == 15 || t2 == 15 then UNPREDICTABLE; if to_arm_registers && t == t2 then UNPREDICTABLE;

CONSTRAINED UNPREDICTABLE behavior

If to_arm_registers && t == t2, then one of the following behaviors must occur:

T1

15141312111098765432101514131211109876543210
11101100010opRt2Rt101100M1Vm

Encoding for the From general-purpose registers variant

Applies when (op == 0)

VMOV{<c>}{<q>} <Dm>, <Rt>, <Rt2>

Encoding for the To general-purpose registers variant

Applies when (op == 1)

VMOV{<c>}{<q>} <Rt>, <Rt2>, <Dm>

Decode for all variants of this encoding

constant to_arm_registers = (op == '1'); constant t = UInt(Rt); constant t2 = UInt(Rt2); constant m = UInt(M:Vm); // Armv8-A removes UNPREDICTABLE for R13 if t == 15 || t2 == 15 then UNPREDICTABLE; if to_arm_registers && t == t2 then UNPREDICTABLE;

CONSTRAINED UNPREDICTABLE behavior

If to_arm_registers && t == t2, then one of the following behaviors must occur:

For more information about the constrained unpredictable behavior of this instruction, see Architectural Constraints on UNPREDICTABLE behaviors, and particularly VMOV (between two general-purpose registers and a doubleword floating-point register).

Assembler Symbols

<Dm>

Is the 64-bit name of the SIMD&FP register to be transferred, encoded in the "M:Vm" field.

<Rt2>

Is the second general-purpose register that <Dm>[63:32] will be transferred to or from, encoded in the "Rt2" field.

<Rt>

Is the first general-purpose register that <Dm>[31:0] will be transferred to or from, encoded in the "Rt" field.

<c>

See Standard assembler syntax fields.

<q>

See Standard assembler syntax fields.

Operation

if ConditionPassed() then EncodingSpecificOperations(); CheckVFPEnabled(TRUE); if to_arm_registers then R[t] = D[m]<31:0>; R[t2] = D[m]<63:32>; else D[m]<31:0> = R[t]; D[m]<63:32> = R[t2];

Operational information

If CPSR.DIT is 1 and this instruction passes its condition execution check:


Internal version only: isa v01_32, pseudocode v2025-03_rel ; Build timestamp: 2025-03-21T16:47

Copyright © 2010-2025 Arm Limited or its affiliates. All rights reserved. This document is Non-Confidential.