SVE Instruction List by Dougall Johnson
DUP (indexed): Broadcast indexed element to vector (unpredicated)
DUP Zd.B, Zn.B[imm] (SVE (SME
svint8_t svdup_lane[_s8](svint8_t data, uint8_t index)
svuint8_t svdup_lane[_u8](svuint8_t data, uint8_t index)
128-bit SVE
Set all 8-bit lanes of (2) to the element from (1) specified by imm
(or zero, if imm
≥ 16).
256-bit SVE
Set all 8-bit lanes of (2) to the element from (1) specified by imm
(or zero, if imm
≥ 32).
512-bit SVE
Set all 8-bit lanes of (2) to the element from (1) specified by imm
.
Larger sizes
1024-bit SVE
Set all 8-bit lanes of (2) to the element from (1) specified by imm
. The immediate is limited to 0 ≤ imm < 64, so only elements from the low half of (1) may be specified on 1024-bit SVE.
2048-bit SVE
Set all 8-bit lanes of (2) to the element from (1) specified by imm
. The immediate is limited to 0 ≤ imm < 64, 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.