vsubshs

Vector Subtract Signed Halfword Saturate

vsubshs vD, vA, vB

Subtracts the contents of two vector registers and saturates the result to halfword elements.

Encoding

Binary Layout
4
0:5
vD
6:10
vA
11:15
vB
16:20
1856
21:31
 
Format VX-form
Opcode 0x10000740
Extension VMX (AltiVec)

Operands

  • vD
    Target
  • vA
    Src A
  • vB
    Src B
  • VRT
    Target Vector Register
  • VRA
    Source Vector Register
  • VRB
    Source Vector Register

Example

vsubshs vd, va, vb

Registers Altered

VSCR (SAT)

Related

More in VMX (AltiVec)

Reference

Description

For vsubshs, each signed halfword element in VSR[VRB+32] is subtracted from the corresponding signed halfword element in VSR[VRA+32]. The result is saturated if it exceeds the range of a signed 16-bit integer.

Operation

if MSR.VEC=0 then
    Vector_Unavailable()
do i = 0 to 7
    src1 ←EXTS(VSR[VRA+32].hword[i])
    src2 ←EXTS(VSR[VRB+32].hword[i])
    VSR[VRT+32].hword[i] ←si16_CLAMP(src1 + ¬src2 + 1)
end

Programming Note

vsubshs is used for subtracting signed halfwords with saturation. Ensure that the vector facility (MSR.VEC) is enabled; otherwise, a Vector_Unavailable exception will occur. The operation saturates results if they exceed the signed 16-bit integer range, preventing overflow. This instruction operates on elements in VSR[VRB+32] and VSR[VRA+32], storing the result in VSR[VRT+32].