STXP

Store Exclusive Pair of capabilities determines the base register to be used, derives an address from the base register, and stores two capabilities to the calculated address in memory. A 256-bit pair requires the address to be 256-bit aligned. 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.

313029282726252423222120191817161514131211109876543210
00100010001Rs0Ct2RnCt
L

STXP <Ws>, <Ct>, <Ct2>, [<Xn|SP>] // (PSTATE.C64 == '0')

STXP <Ws>, <Ct>, <Ct2>, [<Cn|CSP>] // (PSTATE.C64 == '1')

integer t = UInt(Ct); integer t2 = UInt(Ct2); integer n = UInt(Rn); integer s = UInt(Rs); AccType acctype = AccType_ATOMIC;

Assembler Symbols

<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.

<Ct2>

Is the capability name of the second transfer register, encoded in the "Ct2" 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.

Operation

CheckCapabilitiesEnabled(); VirtualAddress base; Capability data1; Capability data2; boolean rt_unknown = FALSE; boolean rn_unknown = FALSE; if s == t || s == t2 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 rt_unknown then data1 = Capability UNKNOWN; data2 = Capability UNKNOWN; else data1 = C[t]; data2 = C[t2]; if rn_unknown then base = VirtualAddress UNKNOWN; else base = BaseReg[n]; bits(64) cap_required1 = CAP_PERM_STORE; bits(64) cap_required2 = CAP_PERM_STORE; if CapIsTagSet(data1) then cap_required1 = cap_required1 OR CAP_PERM_STORE_CAP; if CapIsLocal(data1) then cap_required1 = cap_required1 OR CAP_PERM_STORE_LOCAL; if CapIsTagSet(data2) then cap_required2 = cap_required2 OR CAP_PERM_STORE_CAP; if CapIsLocal(data2) then cap_required2 = cap_required2 OR CAP_PERM_STORE_LOCAL; bits(64) addr = VAddress(base); VACheckAddress(base, addr, CAPABILITY_DBYTES, cap_required1, acctype); VACheckAddress(base, addr + CAPABILITY_DBYTES<63:0>, CAPABILITY_DBYTES, cap_required2, acctype); bit status = '1'; if AArch64.ExclusiveMonitorsPass(addr, CAPABILITY_DBYTES*2) then MemCP(addr, acctype, data1, data2); 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.