SUBS

Subtract, setting flags if the Capability Tag of the first source Capability register is not the same as the Capability Tag of the second source Capability register subtracts the Capability Tag of the first source Capability register from the Capability Tag of the second source Capability register and writes the result to the destination 64-bit register otherwise subtracts the Value field of the first source Capability register from the Value field of the second source Capability register and writes the result to the destination 64-bit register. The instruction updates the condition flags based on the result.

This instruction is used by the alias CMP.

313029282726252423222120191817161514131211109876543210
11000010111Cm100110CnRd

SUBS <Xd>, <Cn>, <Cm>

integer d = UInt(Rd); integer n = UInt(Cn); integer m = UInt(Cm);

Assembler Symbols

<Xd>

Is the 64-bit name of the destination general-purpose register, encoded in the "Rd" field.

<Cn>

Is the capability name of the first source register, encoded in the "Cn" field.

<Cm>

Is the capability name of the second source register, encoded in the "Cm" field.

Operation

CheckCapabilitiesEnabled(); Capability operand1 = C[n]; Capability operand2 = C[m]; boolean tag1 = CapIsTagSet(operand1); boolean tag2 = CapIsTagSet(operand2); bits(64) result; bits(4) nzcv; if tag1 != tag2 then bits(2) interim; bits(2) tvalue1 = if tag1 then '01' else '00'; bits(2) tvalue2 = if tag2 then '01' else '00'; (interim, nzcv) = AddWithCarry(tvalue1, NOT(tvalue2), '1'); result = ZeroExtend(interim,64); else bits(64) value1 = CapGetValue(operand1); bits(64) value2 = CapGetValue(operand2); (result, nzcv) = AddWithCarry(value1, NOT(value2), '1'); PSTATE.<N,Z,C,V> = nzcv; X[d] = result;


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.