GCSSTR

Guarded Control Stack store register

This instruction stores a doubleword from a register to memory. The address that is used for the store is calculated from a base register.

Integer
(FEAT_GCS)

313029282726252423222120191817161514131211109876543210
1101100100011111000011RnRt
opc

Encoding

GCSSTR <Xt>, [<Xn|SP>]

Decode for this encoding

if !IsFeatureImplemented(FEAT_GCS) then EndOfDecode(Decode_UNDEF); end; let t : integer{} = UInt(Rt); let n : integer{} = UInt(Rn);

Assembler Symbols

<Xt>

Is the 64-bit name of the general-purpose register to be transferred, 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.

Operation

var address : bits(64); let effective_el : bits(2) = PSTATE.EL; if effective_el == PSTATE.EL then CheckGCSSTREnabled(); end; let privileged : boolean = effective_el != EL0; let accdesc : AccessDescriptor = CreateAccDescGCS(MemOp_STORE, privileged); if n == 31 then CheckSPAlignment(); address = SP{64}(); else address = X{64}(n); end; Mem{64}(address, accdesc) = X{64}(t);


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.