SIMD ISAReturn TypeNameArgumentsInstruction Group
Neonint32x2_tvcopy_lane_s32(int32x2_t a, const int lane1, int32x2_t b, const int lane2)Vector manipulation / Copy vector lane
Description
Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&FP register to the specified vector element of the destination SIMD&FP register.
Results
Vd.2S result
This intrinsic compiles to the following instructions:

INS Vd.S[lane1],Vn.S[lane2]

Argument Preparation
a register: Vd.2Slane1 minimum: 0; maximum: 1b register: Vn.2Slane2 minimum: 0; maximum: 1
Architectures
A64

Operation

CheckFPAdvSIMDEnabled64();
bits(idxdsize) operand = V[n];
bits(128) result;

result = V[d];
Elem[result, dst_index, esize] = Elem[operand, src_index, esize];
V[d] = result;