You copied the Doc URL to your clipboard.
ST64BV0
Single-copy Atomic 64-byte EL0 Store with Return stores eight 64-bit doublewords from consecutive registers, Xt to X(t+7), to a memory location, with the bottom 32 bits taken from ACCDATA_EL1, and writes the status result of the store to a register. The data that is stored is atomic and is required to be 64-byte aligned.
Integer
(Armv8.7)
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 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | Rs | 1 | 0 | 1 | 0 | 0 | 0 | Rn | Rt |
if !HaveFeatLS64() then UNDEFINED; if Rt<4:3> == '11' || Rt<0> == '1' then UNDEFINED; integer n = UInt(Rn); integer t = UInt(Rt); integer s = UInt(Rs); boolean tag_checked = n != 31;
Assembler Symbols
<Xt> |
Is the 64-bit name of the first 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
CheckST64BV0Enabled(); bits(512) data; bits(64) address; bits(64) value; bits(64) status; acctype = AccType_ATOMICLS64; if HaveMTEExt() then SetTagCheckedInstruction(tag_checked); for i = 0 to 7 value = X[t+i]; if BigEndian(acctype) then value = BigEndianReverse(value); data<63+64*i:64*i> = value; data<31:0> = ACCDATA_EL1<31:0>; if n == 31 then CheckSPAlignment(); address = SP[]; else address = X[n]; status = MemStore64BWithRet(address, data, acctype); if s != 31 then X[s] = status;