ADDSPL

Add multiple of Streaming SVE predicate register size to scalar register

This instruction adds the Streaming SVE predicate register size in bytes multiplied by an immediate in the range -32 to 31 to the 64-bit source general-purpose register or current stack pointer and places the result in the 64-bit destination general-purpose register or current stack pointer.

This instruction does not require the PE to be in Streaming SVE mode.

Encoding: SME

Variants: FEAT_SME (PROFILE_A)

313029282726252423222120191817161514131211109876543210
0000010001101011
opRnimm6Rd

ADDSPL <Xd|SP>, <Xn|SP>, #<imm>

Decoding algorithm

if !IsFeatureImplemented(FEAT_SME) then EndOfDecode(Decode_UNDEF);
constant integer n = UInt(Rn);
constant integer d = UInt(Rd);
constant integer imm = SInt(imm6);

Operation

CheckSMEEnabled();
constant integer SVL = CurrentSVL;
constant integer len = imm * (SVL DIV 64);
constant bits(64) operand1 = if n == 31 then SP[64] else X[n, 64];
constant bits(64) result = operand1 + len;

if d == 31 then
    SP[64] = result;
else
    X[d, 64] = result;

Explanations

<Xd|SP>: Is the 64-bit name of the destination general-purpose register or stack pointer, encoded in the "Rd" field.
<Xn|SP>: Is the 64-bit name of the source general-purpose register or stack pointer, encoded in the "Rn" field.
<imm>: Is the signed immediate operand, in the range -32 to 31, encoded in the "imm6" field.

Operational Notes

If PSTATE.DIT is 1: