Store Allocation Tag and zero multiple
This instruction writes a naturally aligned block of N Allocation Tags and stores zero to the associated data locations, where the size of N is identified in DCZID_EL0.BS, and the Allocation Tag is taken from the source register bits<3:0>.
This instruction is UNDEFINED at EL0. This instruction generates an Unchecked access.
| 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 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | Rn | Rt | ||||||||
| opc | imm9 | op2 | |||||||||||||||||||||||||||||
if !IsFeatureImplemented(FEAT_MTE2) then EndOfDecode(Decode_UNDEF); end; let t : integer{} = UInt(Rt); let n : integer{} = UInt(Rn);
| <Xt> |
Is the 64-bit name of the general-purpose source register, encoded in the "Rt" field. |
| <Xn|SP> |
Is the 64-bit name of the general-purpose base register or stack pointer, encoded in the "Rn" field. |
if PSTATE.EL == EL0 then Undefined(); end; let data : bits(64) = X{}(t); let tag : bits(4) = data[3:0]; var address : bits(64); if n == 31 then CheckSPAlignment(); address = SP{64}(); else address = X{64}(n); end; let size : integer{} = 4 * (2 ^ (UInt(DCZID_EL0().BS))); address = AlignDownSize(address, size); let count : integer = size >> LOG2_TAG_GRANULE; let stzgm : boolean = TRUE; let accdesc : AccessDescriptor = CreateAccDescLDGSTG(MemOp_STORE, stzgm, t); for i = 0 to count-1 do AArch64_MemTag(address, accdesc) = tag; Mem{8*TAG_GRANULE}(address, accdesc) = Zeros{8*TAG_GRANULE}; address = AddressIncrement(address, TAG_GRANULE, accdesc); end;
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.