SVE Instruction List by Dougall Johnson
TBL: Programmable table lookup in one or two vector table (zeroing)
TBL Zd.D, { Zn.D }, Zm.D (SVE (SME
svfloat64_t svtbl[_f64](svfloat64_t data, svuint64_t indices)
svint64_t svtbl[_s64](svint64_t data, svuint64_t indices)
svuint64_t svtbl[_u64](svuint64_t data, svuint64_t indices)
128-bit SVE
For each 64-bit index from (2), if 0 ≤ (2) < 2, set (3) to the 64-bit element at that index in (1), otherwise set (3) to zero.
256-bit SVE
For each 64-bit index from (2), if 0 ≤ (2) < 4, set (3) to the 64-bit element at that index in (1), otherwise set (3) to zero.
512-bit SVE
For each 64-bit index from (2), if 0 ≤ (2) < 8, set (3) to the 64-bit element at that index in (1), otherwise set (3) to zero.
Larger sizes
1024-bit SVE
For each 64-bit index from (2), if 0 ≤ (2) < 16, set (3) to the 64-bit element at that index in (1), otherwise set (3) to zero.
2048-bit SVE
For each 64-bit index from (2), if 0 ≤ (2) < 32, set (3) to the 64-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.