SIMD ISAReturn TypeNameArgumentsInstruction Group
Neonuint32x2_tvqmovun_s64(int64x2_t a)Move / Saturating narrow
Description
Signed saturating extract Unsigned Narrow. This instruction reads each signed integer value in the vector of the source SIMD&FP register, saturates the value to an unsigned integer value that is half the original width, places the result into a vector, and writes the vector to the lower or upper half of the destination SIMD&FP register. The destination vector elements are half as long as the source vector elements.
Results
Vd.2S result
This intrinsic compiles to the following instructions:

SQXTUN Vd.2S,Vn.2D

Argument Preparation
a register: Vn.2D
Architectures
v7, A32, A64

Operation

CheckFPAdvSIMDEnabled64();
bits(2*datasize) operand = V[n];
bits(datasize) result;
bits(2*esize) element;
boolean sat;

for e = 0 to elements-1
    element = Elem[operand, e, 2*esize];
    (Elem[result, e, esize], sat) = UnsignedSatQ(SInt(element), esize);
    if sat then FPSR.QC = '1';

Vpart[d, part] = result;