SVE Instruction List by Dougall Johnson
See "DUP (indexed)" in the exploration tools

DUP (indexed): Broadcast indexed element to vector (unpredicated)

DUP Zd.Q, Zn.Q[imm] (SVE (SME
svbfloat16_t svdupq_lane[_bf16](svbfloat16_t data, uint64_t index)
svfloat16_t svdupq_lane[_f16](svfloat16_t data, uint64_t index)
svfloat32_t svdupq_lane[_f32](svfloat32_t data, uint64_t index)
svfloat64_t svdupq_lane[_f64](svfloat64_t data, uint64_t index)
svint8_t svdupq_lane[_s8](svint8_t data, uint64_t index)
svint16_t svdupq_lane[_s16](svint16_t data, uint64_t index)
svint32_t svdupq_lane[_s32](svint32_t data, uint64_t index)
svint64_t svdupq_lane[_s64](svint64_t data, uint64_t index)
svuint8_t svdupq_lane[_u8](svuint8_t data, uint64_t index)
svuint16_t svdupq_lane[_u16](svuint16_t data, uint64_t index)
svuint32_t svdupq_lane[_u32](svuint32_t data, uint64_t index)
svuint64_t svdupq_lane[_u64](svuint64_t data, uint64_t index)

128-bit SVE

Set all 128-bit lanes of (2) to the element from (1) specified by imm (or zero, if imm ≥ 1).

256-bit SVE

Set all 128-bit lanes of (2) to the element from (1) specified by imm (or zero, if imm ≥ 2).

512-bit SVE

Set all 128-bit lanes of (2) to the element from (1) specified by imm.

Larger sizes

1024-bit SVE

Set all 128-bit lanes of (2) to the element from (1) specified by imm. The immediate is limited to 0 ≤ imm < 4, so only elements from the low half of (1) may be specified on 1024-bit SVE.

2048-bit SVE

Set all 128-bit lanes of (2) to the element from (1) specified by imm. The immediate is limited to 0 ≤ imm < 4, so only elements from the low quarter of (1) may be specified on 2048-bit SVE.

Report mistakes or give feedback
Inspired by and based on the x86/x64 SIMD Instruction List by Daytime.