MOVT (table to scalar)

Move 8 bytes from ZT0 to general-purpose register

This instruction moves 8 bytes to a general-purpose register from the ZT0 register at the byte offset specified by the immediate index. This instruction is UNDEFINED in Non-debug state.

SME2
(FEAT_SME2)

313029282726252423222120191817161514131211109876543210
11000000010011000off30011111Rt
opc

Encoding

MOVT <Xt>, ZT0[<offs>]

Decode for this encoding

if !IsFeatureImplemented(FEAT_SME2) || !Halted() then EndOfDecode(Decode_UNDEF); end; let t : integer = UInt(Rt); let offset : integer = UInt(off3);

Assembler Symbols

<Xt>

Is the 64-bit name of the general-purpose register to be transferred, encoded in the "Rt" field.

<offs>

Is the immediate byte offset, a multiple of 8 in the range of 0 to 56, encoded in the "off3" field as <offs>/8.

Operation

CheckSMEEnabled(); CheckSMEZT0Enabled(); let operand : bits(512) = ZT0{}(); X{64}(t) = operand[offset*:64];


2026-03_rel 2026-03-26 20:48:11

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