vqdmulh
Vector Saturating Doubling Multiply High
VQDMULH<c>.<dt> <Qd>, <Qn>, <Qm>
Multiplies, doubles, saturates, and keeps high half.
Details
Performs signed fixed-point saturating doubling multiply on NEON vector elements, returning the high half of the doubled result. Each element in Qn is multiplied by the corresponding element in Qm, the result is doubled, saturated to the data type range, and the high half is written to Qd. The NEON condition flags are not affected; saturation is indicated via the FPSCR QC bit if the result overflows.
Pseudocode Operation
for i = 0 to elements_in_128bit(dt) - 1 do
product ← (Qn[i] * Qm[i]) * 2
Qd[i] ← SignedSaturate(product, dt)
FPSCR.QC ← FPSCR.QC OR (product overflowed)
Example
VQDMULH.dt q0, q1, q2
Encoding
Binary Layout
1111001
0
0
D
size
Vn
Vd
1011
N
0
M
0
Vm
Operands
-
Qd
Destination 128-bit SIMD register -
Qn
First source 128-bit SIMD register -
Qm
Second source 128-bit SIMD register
Reference (Arm AArch32 ISA)
Instruction Forms
| Encoding | Instruction | ISA | Bit pattern | ||
|---|---|---|---|---|---|
| 0xF2000B00 | VQDMULH{<c>}{<q>}.<dt> {<Dd>, }<Dn>, <Dm> | A32 | 1111001 | 0 | 0 | D | size | Vn | Vd | 1011 | N | 0 | M | 0 | Vm | ||
| 0xF2000B40 | VQDMULH{<c>}{<q>}.<dt> {<Qd>, }<Qn>, <Qm> | A32 | 1111001 | 0 | 0 | D | size | Vn | Vd | 1011 | N | 1 | M | 0 | Vm | ||
| 0xF2800C40 | VQDMULH{<c>}{<q>}.<dt> {<Dd>,} <Dn>, <Dm[x]> | A32 | 1111001 | 0 | 1 | D | size | Vn | Vd | 1100 | N | 1 | M | 0 | Vm | ||
| 0xF3800C40 | VQDMULH{<c>}{<q>}.<dt> {<Qd>,} <Qn>, <Dm[x]> | A32 | 1111001 | 1 | 1 | D | size | Vn | Vd | 1100 | N | 1 | M | 0 | Vm | ||
| 0xEF000B00 | VQDMULH{<c>}{<q>}.<dt> {<Dd>, }<Dn>, <Dm> | T32 | 111 | 0 | 11110 | D | size | Vn | Vd | 1011 | N | 0 | M | 0 | Vm | ||
| 0xEF000B40 | VQDMULH{<c>}{<q>}.<dt> {<Qd>, }<Qn>, <Qm> | T32 | 111 | 0 | 11110 | D | size | Vn | Vd | 1011 | N | 1 | M | 0 | Vm | ||
| 0xEF800C40 | VQDMULH{<c>}{<q>}.<dt> {<Dd>,} <Dn>, <Dm[x]> | T32 | 111 | 0 | 11111 | D | size | Vn | Vd | 1100 | N | 1 | M | 0 | Vm | ||
| 0xFF800C40 | VQDMULH{<c>}{<q>}.<dt> {<Qd>,} <Qn>, <Dm[x]> | T32 | 111 | 1 | 11111 | D | size | Vn | Vd | 1100 | N | 1 | M | 0 | Vm |
Description
Vector Saturating Doubling Multiply Returning High Half multiplies corresponding elements in two vectors, doubles the results, and places the most significant half of the final results in the destination vector. The results are truncated, for rounded results see VQRDMULH.
The second operand can be a scalar instead of a vector. For more information about scalars see Advanced SIMD scalars.
If any of the results overflow, they are saturated. The cumulative saturation bit, FPSCR.QC, is set if saturation occurs. For details see Pseudocode details of saturation.
Depending on settings in the CPACR, NSACR, and HCPTR registers, and the Security state and PE mode in which the instruction is executed, an attempt to execute the instruction might be undefined, or trapped to Hyp mode. For more information see Enabling Advanced SIMD and floating-point support.
Operation
if ConditionPassed() then
EncodingSpecificOperations(); CheckAdvSIMDEnabled();
integer op2;
if scalar_form then op2 = SInt(Elem[D[m],index,esize]);
for r = 0 to regs-1
for e = 0 to elements-1
if !scalar_form then op2 = SInt(Elem[D[m+r],e,esize]);
op1 = SInt(Elem[D[n+r],e,esize]);
// The following only saturates if both op1 and op2 equal -(2^(esize-1))
(result, sat) = SignedSatQ((2*op1*op2) >> esize, esize);
Elem[D[d+r],e,esize] = result;
if sat then FPSCR.QC = '1';