SIMD ISAReturn TypeNameArgumentsInstruction Group
Neonbfloat16x8_tvsetq_lane_bf16(bfloat16_t a, bfloat16x8_t v, const int lane)Vector manipulation / Set 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.8H result
This intrinsic compiles to the following instructions:

INS Vd.H[lane],Vn.H[0]

Argument Preparation
a register: VnHv register: Vd.8Hlane minimum: 0; maximum: 7
Architectures
A32, 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;