SIMD ISAReturn TypeNameArgumentsInstruction Group
Neonuint8x16_tvmovn_high_u16(uint8x8_t r, uint16x8_t a)Move / Narrow
Description
Extract Narrow. This instruction reads each vector element from the source SIMD&FP register, narrows each value to 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.16B result
This intrinsic compiles to the following instructions:

XTN2 Vd.16B,Vn.8H

Argument Preparation
r register: Vd.8Ba register: Vn.8H
Architectures
v7, A32, A64

Operation

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

for e = 0 to elements-1
    element = Elem[operand, e, 2*esize];
    Elem[result, e, esize] = element<esize-1:0>;
Vpart[d, part] = result;