SVE Instruction List by Dougall Johnson
See "TBL" in the exploration tools

TBL: Programmable table lookup in one or two vector table (zeroing)

TBL Zd.H, { Zn.H }, Zm.H (SVE (SME
svbfloat16_t svtbl[_bf16](svbfloat16_t data, svuint16_t indices)
svfloat16_t svtbl[_f16](svfloat16_t data, svuint16_t indices)
svint16_t svtbl[_s16](svint16_t data, svuint16_t indices)
svuint16_t svtbl[_u16](svuint16_t data, svuint16_t indices)

128-bit SVE

For each 16-bit index from (2), if 0 ≤ (2) < 8, set (3) to the 16-bit element at that index in (1), otherwise set (3) to zero.

256-bit SVE

For each 16-bit index from (2), if 0 ≤ (2) < 16, set (3) to the 16-bit element at that index in (1), otherwise set (3) to zero.

512-bit SVE

For each 16-bit index from (2), if 0 ≤ (2) < 32, set (3) to the 16-bit element at that index in (1), otherwise set (3) to zero.

Larger sizes

1024-bit SVE

For each 16-bit index from (2), if 0 ≤ (2) < 64, set (3) to the 16-bit element at that index in (1), otherwise set (3) to zero.

2048-bit SVE

For each 16-bit index from (2), if 0 ≤ (2) < 128, set (3) to the 16-bit element at that index in (1), otherwise set (3) to zero.

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