Memory Set with tag setting, unprivileged. These instructions perform a memory set using the value in the bottom byte of the source register and store an Allocation Tag to memory for each Tag Granule written. The Allocation Tag is calculated from the Logical Address Tag in the register which holds the first address that the set is made to. The prologue, main, and epilogue instructions are expected to be run in succession and to appear consecutively in memory: SETGPT, then SETGMT, and then SETGET.
SETGPT performs some preconditioning of the arguments suitable for using the SETGMT instruction, and performs an implementation defined amount of the memory set. SETGMT performs an implementation defined amount of the memory set. SETGET performs the last part of the memory set.
The inclusion of implementation defined amounts of memory set allows some optimization of the size that can be performed.
The architecture supports two algorithms for the memory set: option A and option B. Which algorithm is used is implementation defined.
Portable software should not assume that the choice of algorithm is constant.
After execution of SETGPT, option A (which results in encoding PSTATE.C = 0):
After execution of SETGPT, option B (which results in encoding PSTATE.C = 1):
For SETGMT, option A (encoded by PSTATE.C = 0), the format of the arguments is:
For SETGMT, option B (encoded by PSTATE.C = 1), the format of the arguments is:
For SETGET, option A (encoded by PSTATE.C = 0), the format of the arguments is:
For SETGET, option B (encoded by PSTATE.C = 1), the format of the arguments is:
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 |
sz | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | Rs | x | x | 0 | 1 | 0 | 1 | Rn | Rd | |||||||||||||
op2 |
if !HaveFeatMOPS() then UNDEFINED; if !HaveMTEExt() then UNDEFINED; if sz != '00' then UNDEFINED; integer d = UInt(Rd); integer s = UInt(Rs); integer n = UInt(Rn); bits(2) options = op2<1:0>; MOPSStage stage; case op2<3:2> of when '00' stage = MOPSStage_Prologue; when '01' stage = MOPSStage_Main; when '10' stage = MOPSStage_Epilogue; otherwise UNDEFINED; if s == n || s == d || n == d then UNDEFINED; if d == 31 || n == 31 then UNDEFINED;
CheckMOPSEnabled(); bits(64) toaddress = X[d, 64]; bits(64) setsize = X[n, 64]; bits(8) data = X[s, 8]; bits(4) nzcv = PSTATE.<N,Z,C,V>; bits(64) stagesetsize; boolean is_setg = TRUE; integer B; boolean supports_option_a = SETGOptionA(); boolean privileged; case PSTATE.EL of when EL0 privileged = FALSE; when EL1 if EL2Enabled() && HaveNVExt() && HCR_EL2.<NV,NV1> == '11' then privileged = TRUE; else privileged = options<0> == '0'; when EL2 if HaveVirtHostExt() && HCR_EL2.<E2H,TGE> == '11' then privileged = options<0> == '0'; else privileged = TRUE; when EL3 privileged = TRUE; if HaveUAOExt() && PSTATE.UAO == '1' then privileged = PSTATE.EL != EL0; boolean nontemporal = options<1> == '1'; AccessDescriptor accdesc = CreateAccDescSTGMOPS(privileged, nontemporal); if stage == MOPSStage_Prologue then if setsize<63> == '1' then setsize = 0x7FFFFFFFFFFFFFF0<63:0>; if setsize != Zeros(64) && !IsAligned(toaddress, TAG_GRANULE) then AArch64.Abort(toaddress, AlignmentFault(accdesc)); if !IsAligned(setsize, TAG_GRANULE) then AArch64.Abort(toaddress, AlignmentFault(accdesc)); if supports_option_a then nzcv = '0000'; toaddress = toaddress + setsize; setsize = Zeros(64) - setsize; else nzcv = '0010'; stagesetsize = SETPreSizeChoice(toaddress, setsize, is_setg); assert stagesetsize<63> == setsize<63> || stagesetsize == Zeros(64); assert stagesetsize<3:0> == '0000'; if SInt(setsize) > 0 then assert SInt(stagesetsize) <= SInt(setsize); else assert SInt(stagesetsize) >= SInt(setsize); else bits(64) postsize = SETPostSizeChoice(toaddress, setsize, is_setg); assert postsize<63> == setsize<63> || postsize == Zeros(64); assert postsize<3:0> == '0000'; boolean zero_size_exceptions = MemSetZeroSizeCheck(); // Check if this version is consistent with the state of the call. if zero_size_exceptions || SInt(setsize) != 0 then if supports_option_a then if nzcv<1> == '1' then // PSTATE.C boolean wrong_option = TRUE; boolean from_epilogue = stage == MOPSStage_Epilogue; MismatchedMemSetException(supports_option_a, d, s, n, wrong_option, from_epilogue, options, is_setg); else if nzcv<1> == '0' then // PSTATE.C boolean wrong_option = TRUE; boolean from_epilogue = stage == MOPSStage_Epilogue; MismatchedMemSetException(supports_option_a, d, s, n, wrong_option, from_epilogue, options, is_setg); if stage == MOPSStage_Main then stagesetsize = setsize - postsize; if MemSetParametersIllformedM(toaddress, setsize, is_setg) then boolean wrong_option = FALSE; boolean from_epilogue = FALSE; MismatchedMemSetException(supports_option_a, d, s, n, wrong_option, from_epilogue, options, is_setg); else stagesetsize = postsize; if (setsize != postsize || MemSetParametersIllformedE(toaddress, setsize, is_setg)) then boolean wrong_option = FALSE; boolean from_epilogue = TRUE; MismatchedMemSetException(supports_option_a, d, s, n, wrong_option, from_epilogue, options, is_setg); if setsize != Zeros(64) && !IsAligned(toaddress, TAG_GRANULE) then AArch64.Abort(toaddress, AlignmentFault(accdesc)); if !IsAligned(setsize, TAG_GRANULE) then AArch64.Abort(toaddress, AlignmentFault(accdesc)); integer tagstep; bits(4) tag; bits(64) tagaddr; if supports_option_a then while SInt(stagesetsize) < 0 do // IMP DEF selection of the block size that is worked on. While many // implementations might make this constant, that is not assumed. B = SETSizeChoice(toaddress, setsize, 16); assert B <= -1 * SInt(stagesetsize); assert B<3:0> == '0000'; Mem[toaddress+setsize, B, accdesc] = Replicate(data, B); tagstep = B DIV 16; tag = AArch64.AllocationTagFromAddress(toaddress + setsize); while tagstep > 0 do tagaddr = toaddress + setsize + (tagstep - 1) * 16; AArch64.MemTag[tagaddr, accdesc] = tag; tagstep = tagstep - 1; setsize = setsize + B; stagesetsize = stagesetsize + B; if stage != MOPSStage_Prologue then X[n, 64] = setsize; else while UInt(stagesetsize) > 0 do // IMP DEF selection of the block size that is worked on. While many // implementations might make this constant, that is not assumed. B = SETSizeChoice(toaddress, setsize, 16); assert B <= UInt(stagesetsize); assert B<3:0> == '0000'; Mem[toaddress, B, accdesc] = Replicate(data, B); tagstep = B DIV 16; tag = AArch64.AllocationTagFromAddress(toaddress); while tagstep > 0 do tagaddr = toaddress + (tagstep - 1) * 16; AArch64.MemTag[tagaddr, accdesc] = tag; tagstep = tagstep - 1; toaddress = toaddress + B; setsize = setsize - B; stagesetsize = stagesetsize - B; if stage != MOPSStage_Prologue then X[n, 64] = setsize; X[d, 64] = toaddress; if stage == MOPSStage_Prologue then X[n, 64] = setsize; X[d, 64] = toaddress; PSTATE.<N,Z,C,V> = nzcv;
Internal version only: isa v33.53, AdvSIMD v29.11, pseudocode v2022-09_rel, sve v2022-09_rel ; Build timestamp: 2022-09-30T16:37
Copyright © 2010-2022 Arm Limited or its affiliates. All rights reserved. This document is Non-Confidential.