sbc.w
Subtract with Carry (Wide)
SBC.W <Rd>, <Rn>, <Operand2>
Thumb-2 32-bit subtract with carry.
Details
Subtracts Operand2 and the inverted Carry flag from Rn, storing the result in Rd. If S=1, the N, Z, C, V flags are updated based on the result; otherwise flags are unaffected. This is a Thumb-2 32-bit instruction used for multi-word arithmetic with carry propagation.
Pseudocode Operation
Example
SBC.W r0, r1, r2
Encoding
Binary Layout
1110101
1011
0
Rn
0
imm3
Rd
imm2
stype
Rm
Operands
-
Rd
Destination general-purpose register -
Rn
First source / base general-purpose register -
Operand2
Flexible second operand (register or shifted register)
Reference (Arm AArch32 ISA)
Instruction Forms
| Encoding | Instruction | ISA | Bit pattern | ||
|---|---|---|---|---|---|
| 0x02C00000 | SBC{<c>}{<q>} {<Rd>,} <Rn>, #<const> | A32 | cond | 0010 | 110 | 0 | Rn | Rd | imm12 | ||
| 0xF1600000 | SBC{<c>}{<q>} {<Rd>,} <Rn>, #<const> | T32 | 11110 | i | 0 | 1011 | 0 | Rn | 0 | imm3 | Rd | imm8 | ||
| 0x00C00060 | SBC{<c>}{<q>} {<Rd>,} <Rn>, <Rm>, RRX | A32 | cond | 0000 | 110 | 0 | Rn | Rd | 00000 | 11 | 0 | Rm | ||
| 0x00C00000 | SBC{<c>}{<q>} {<Rd>,} <Rn>, <Rm> {, <shift> #<amount>} | A32 | cond | 0000 | 110 | 0 | Rn | Rd | imm5 | stype | 0 | Rm | ||
| 0x4180 | SBC<c>{<q>} {<Rdn>,} <Rdn>, <Rm> | T32 | 010000 | 0110 | Rm | Rdn | ||
| 0xEB600030 | SBC{<c>}{<q>} {<Rd>,} <Rn>, <Rm>, RRX | T32 | 1110101 | 1011 | 0 | Rn | 0 | 000 | Rd | 00 | 11 | Rm | ||
| 0xEB600000 | SBC<c>.W {<Rd>,} <Rn>, <Rm> | T32 | 1110101 | 1011 | 0 | Rn | 0 | imm3 | Rd | imm2 | stype | Rm | ||
| 0x00C00010 | SBC{<c>}{<q>} {<Rd>,} <Rn>, <Rm>, <shift> <Rs> | A32 | cond | 0000 | 110 | 0 | Rn | Rd | Rs | 0 | stype | 1 | Rm |
Description
Subtract with Carry (register) subtracts an optionally-shifted register value and the value of NOT (Carry flag) from a register value, and writes the result to the destination register.
If the destination register is not the PC, the SBCS variant of the instruction updates the condition flags based on the result.
The field descriptions for <Rd> identify the encodings where the PC is permitted as the destination register. ARM deprecates any use of these encodings. However, when the destination register is the PC:
Operation
if ConditionPassed() then
EncodingSpecificOperations();
shifted = Shift(R[m], shift_t, shift_n, PSTATE.C);
(result, nzcv) = AddWithCarry(R[n], NOT(shifted), PSTATE.C);
if d == 15 then // Can only occur for A32 encoding
if setflags then
ALUExceptionReturn(result);
else
ALUWritePC(result);
else
R[d] = result;
if setflags then
PSTATE.<N,Z,C,V> = nzcv;