smlsd

Signed Multiply Subtract Dual

SMLSD{X}<c> <Rd>, <Rn>, <Rm>, <Ra>

Dual multiply subtract + accumulate.

Pseudocode Operation

if X then
  prod1 ← SignExtend(Rn[31:16], 32) × SignExtend(Rm[15:0], 32)
  prod2 ← SignExtend(Rn[15:0], 32) × SignExtend(Rm[31:16], 32)
else
  prod1 ← SignExtend(Rn[31:16], 32) × SignExtend(Rm[31:16], 32)
  prod2 ← SignExtend(Rn[15:0], 32) × SignExtend(Rm[15:0], 32)
Rd ← prod1 - prod2 + Ra

Example

SMLSD r0, r1, r2, r5

Encoding

Binary Layout
cond
31:28
01110
27:23
000
22:20
Rd
19:16
Ra
15:12
Rm
11:8
01
7:6
0
5
1
4
Rn
3:0
 
Format Multiply
Opcode 0x07000050
Extension A32 (DSP)

Operands

  • Rd
    Destination general-purpose register
  • Rn
    First source / base general-purpose register
  • Rm
    Second source / offset general-purpose register
  • Ra
    Acc

Related

More in A32 (DSP)

Reference

Instruction Forms

Encoding Instruction ISA Bit pattern
0x07000050 SMLSD{<c>}{<q>} <Rd>, <Rn>, <Rm>, <Ra> A32 cond | 01110 | 000 | Rd | Ra | Rm | 01 | 0 | 1 | Rn
0xFB400000 SMLSD{<c>}{<q>} <Rd>, <Rn>, <Rm>, <Ra> T32 111110110 | 100 | Rn | Ra | Rd | 00 | 0 | 0 | Rm

Description

Signed Multiply Subtract Dual performs two signed 16 x 16-bit multiplications. It adds the difference of the products to a 32-bit accumulate operand. Optionally, the instruction can exchange the halfwords of the second operand before performing the arithmetic. This produces top x bottom and bottom x top multiplication. This instruction sets PSTATE.Q to 1 if the accumulate operation overflows. Overflow cannot occur during the multiplications or subtraction.

Operation

if ConditionPassed() then
    EncodingSpecificOperations();
    operand2 = if m_swap then ROR(R[m],16) else R[m];
    product1 = SInt(R[n]<15:0>) * SInt(operand2<15:0>);
    product2 = SInt(R[n]<31:16>) * SInt(operand2<31:16>);
    result = (product1 - product2) + SInt(R[a]);
    R[d] = result<31:0>;
    if result != SInt(result<31:0>) then  // Signed overflow
        PSTATE.Q = '1';