SIMD ISAReturn TypeNameArgumentsInstruction Group
Neonfloat64_tvgetq_lane_f64(float64x2_t v, const int lane)Vector manipulation / Extract one element from vector
Description
Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&FP register.
Results
Dd result
This intrinsic compiles to the following instructions:

DUP Dd,Vn.D[lane]

Argument Preparation
v register: Vn.2Dlane minimum: 0; maximum: 1
Architectures
A64

Operation

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

element = Elem[operand, index, esize];
for e = 0 to elements-1
    Elem[result, e, esize] = element;
V[d] = result;