Move 8 bytes from general-purpose register to ZT0
This instruction moves 8 bytes to the ZT0 register at the byte offset specified by the immediate index from a general-purpose register. This instruction is UNDEFINED in Non-debug state.
Variants: FEAT_SME2 (ARMv9.3)
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 |
1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | ||||||||
off3 | opc | Rt |
---|
if !IsFeatureImplemented(FEAT_SME2) || !Halted() then EndOfDecode(Decode_UNDEF); constant integer t = UInt(Rt); constant integer offset = UInt(off3);
CheckSMEEnabled(); CheckSMEZT0Enabled(); bits(512) result = ZT0[512]; Elem[result, offset, 64] = X[t, 64]; ZT0[512] = result;