vavgsh
Vector Average Signed Halfword
vavgsh vD, vA, vB
Performs a signed halfword average operation on vector elements.
Encoding
Binary Layout
0
0:5
VRT
6:10
VRA
11:15
VRB
16:20
1346
21:31
Operands
-
vD
Target -
vA
Src A -
vB
Src B -
VRT
Target Vector Register -
VRA
Source Vector Register -
VRB
Source Vector Register
Reference
View in PowerISA v3.1C Specification ↗
OPF Power ISA v3.1C
Description
For vavgsh, the sum of the contents of each corresponding pair of halfwords from VSR[VRA+32] and VSR[VRB+32] is calculated, incremented by 1, shifted right by 1 bit, and then placed into the corresponding halfword in VSR[VRT+32].
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] ← CHOP16((src1 + src2 + 1) >> 1)
end
Programming Note
The vavgsh instruction performs a signed halfword average, rounding up by adding 1 before shifting. Ensure that the vector facility is enabled in the MSR register to avoid exceptions. This operation processes each pair of halfwords independently, so alignment requirements are minimal.