SETPTN, SETMTN, SETETN

Memory Set, unprivileged and non-temporal. These instructions perform a memory set using the value in the bottom byte of the source register. The prologue, main, and epilogue instructions are expected to be run in succession and to appear consecutively in memory: SETPTN, then SETMTN, and then SETETN.

SETPTN performs some preconditioning of the arguments suitable for using the SETMTN instruction, and performs an implementation defined amount of the memory set. SETMTN performs an implementation defined amount of the memory set. SETETN 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 SETPTN, option A (which results in encoding PSTATE.C = 0):

After execution of SETPTN, option B (which results in encoding PSTATE.C = 1):

For SETMTN, option A (encoded by PSTATE.C = 0), the format of the arguments is:

For SETMTN, option B (encoded by PSTATE.C = 1), the format of the arguments is:

For SETETN, option A (encoded by PSTATE.C = 0), the format of the arguments is:

For SETETN, option B (encoded by PSTATE.C = 1), the format of the arguments is:

Integer
(FEAT_MOPS)

313029282726252423222120191817161514131211109876543210
sz011001110Rsxx1101RnRd
op2

Epilogue (op2 == 1011)

SETETN [<Xd>]!, <Xn>!, <Xs>

Main (op2 == 0111)

SETMTN [<Xd>]!, <Xn>!, <Xs>

Prologue (op2 == 0011)

SETPTN [<Xd>]!, <Xn>!, <Xs>

if !HaveFeatMOPS() 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;

Assembler Symbols

<Xd>

For the epilogue and main variant: is the 64-bit name of the general-purpose register that holds an encoding of the destination address and for option B is updated by the instruction, encoded in the "Rd" field.

For the prologue variant: is the 64-bit name of the general-purpose register that holds the destination address and is updated by the instruction, encoded in the "Rd" field.

<Xn>

For the epilogue variant: is the 64-bit name of the general-purpose register that holds the number of bytes to be set and is set to zero at the end of the instruction, encoded in the "Rn" field.

For the main variant: is the 64-bit name of the general-purpose register that holds an encoding of the number of bytes to be set and is updated by the instruction, encoded in the "Rn" field.

For the prologue variant: is the 64-bit name of the general-purpose register that holds the number of bytes to be set and is updated by the instruction, encoded in the "Rn" field.

<Xs>

Is the 64-bit name of the general-purpose register that holds the source data, encoded in the "Rs" field.

Operation

CheckMOPSEnabled(); bits(64) toaddress = X[d]; bits(64) setsize = X[n]; bits(8) data = X[s]; bits(64) stagesetsize; boolean is_setg = FALSE; integer B; if HaveMTE2Ext() then SetTagCheckedInstruction(TRUE); boolean supports_option_a = MemCpyOptionA(); acctype = MemSetAccessType(options); if stage == MOPSStage_Prologue then if setsize<63> == '1' then setsize = 0x007FFFFFFFFFFFF0<63:0>; if supports_option_a then PSTATE.C = '0'; toaddress = toaddress + setsize; setsize = Zeros(64) - setsize; else PSTATE.C = '1'; PSTATE.N = '0'; PSTATE.V = '0'; PSTATE.Z = '0'; stagesetsize = SETPreSizeChoice(toaddress, setsize, is_setg); assert stagesetsize<63> == setsize<63> || stagesetsize == Zeros(); 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(); 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 PSTATE.C == '1' then 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 PSTATE.C == '0' then 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 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, 1); assert B <= -1*SInt(stagesetsize); Mem[toaddress + setsize, B, acctype] = Replicate(data, B); setsize = setsize + B; stagesetsize = stagesetsize + B; if stage != MOPSStage_Prologue then X[n] = 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, 1); assert B <= UInt(stagesetsize); Mem[toaddress, B, acctype] = Replicate(data, B); toaddress = toaddress + B; setsize = setsize - B; stagesetsize = stagesetsize - B; if stage != MOPSStage_Prologue then X[n] = setsize; X[d] = toaddress; if stage == MOPSStage_Prologue then X[n] = setsize; X[d] = toaddress;


Internal version only: isa v33.11seprel, AdvSIMD v29.05, pseudocode v2021-09_rel, sve v2021-09_rc3d ; Build timestamp: 2021-10-06T11:41

Copyright © 2010-2021 Arm Limited or its affiliates. All rights reserved. This document is Non-Confidential.