Store Exclusive capability determines the base register to be used, derives an address from the base register, and stores a capability to the calculated address in memory. The PE marks the physical address being accessed as an exclusive access. This exclusive access mark is checked by Store Exclusive instructions. See Synchronization and semaphores. For information about memory accesses, see Load/Store addressing modes.
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 |
0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | Rs | 0 | 1 | 1 | 1 | 1 | 1 | Rn | Ct | ||||||||||||
L |
integer t = UInt(Ct); integer n = UInt(Rn); integer s = UInt(Rs); AccType acctype = AccType_ATOMIC;
<Ws> |
Is the 32-bit name of the general-purpose register into which the status result of the store exclusive is written, encoded in the "Rs" field. |
<Ct> |
Is the capability name of the transfer register, encoded in the "Ct" field. |
<Xn|SP> |
Is the 64-bit name of the general-purpose base register or stack pointer, encoded in the "Rn" field. |
<Cn|CSP> |
Is the capability name of the base register or stack pointer, encoded in the "Rn" field. |
CheckCapabilitiesEnabled(); VirtualAddress base; Capability data; boolean rt_unknown = FALSE; boolean rn_unknown = FALSE; if s == t then Constraint c = ConstrainUnpredictable(Unpredictable_DATAOVERLAP); assert c IN {Constraint_UNKNOWN, Constraint_NONE, Constraint_UNDEF, Constraint_NOP}; case c of when Constraint_UNKNOWN rt_unknown = TRUE; // store UNKNOWN value when Constraint_NONE rt_unknown = FALSE; // store original value when Constraint_UNDEF UNDEFINED; when Constraint_NOP EndOfInstruction(); if s == n && n != 31 then Constraint c = ConstrainUnpredictable(Unpredictable_BASEOVERLAP); assert c IN {Constraint_UNKNOWN, Constraint_NONE, Constraint_UNDEF, Constraint_NOP}; case c of when Constraint_UNKNOWN rn_unknown = TRUE; // address is UNKNOWN when Constraint_NONE rn_unknown = FALSE; // address is original base when Constraint_UNDEF UNDEFINED; when Constraint_NOP EndOfInstruction(); if rn_unknown then base = VirtualAddress UNKNOWN; else base = BaseReg[n]; if rt_unknown then data = Capability UNKNOWN; else data = C[t]; bits(64) cap_required = CAP_PERM_STORE; if CapIsTagSet(data) then cap_required = cap_required OR CAP_PERM_STORE_CAP; if CapIsLocal(data) then cap_required = cap_required OR CAP_PERM_STORE_LOCAL; bits(64) addr = VAddress(base); VACheckAddress(base, addr, CAPABILITY_DBYTES, cap_required, acctype); bit status = '1'; if AArch64.ExclusiveMonitorsPass(addr, CAPABILITY_DBYTES) then MemC[addr, acctype] = data; status = ExclusiveMonitorsStatus(); X[s] = ZeroExtend(status, 32);
Internal version only: isa v32.13, AdvSIMD v29.04, pseudocode morello-2022-01_rc2, capabilities morello-2022-01_rc2 ; Build timestamp: 2022-01-11T11:23
Copyright © 2010-2022 Arm Limited or its affiliates. All rights reserved. This document is Non-Confidential.