SVE Instruction List by Dougall Johnson
SXTB: Signed byte extend (predicated)
SXTB Zd.S, Pg/M, Zn.S (SVE (SME
svint32_t svextb[_s32]_m(svint32_t inactive, svbool_t pg, svint32_t op)
128-bit SVE
For each 32-bit value integer set (2) to ( (1) & 0x7F ) − ( (1) & 0x80 ). This takes the low 8-bits of (1), and sign-extends it to 32-bit.
256-bit SVE
For each 32-bit value integer set (2) to ( (1) & 0x7F ) − ( (1) & 0x80 ). This takes the low 8-bits of (1), and sign-extends it to 32-bit.
512-bit SVE
For each 32-bit value integer set (2) to ( (1) & 0x7F ) − ( (1) & 0x80 ). This takes the low 8-bits of (1), and sign-extends it to 32-bit.
Larger sizes
1024-bit SVE
For each 32-bit value integer set (2) to ( (1) & 0x7F ) − ( (1) & 0x80 ). This takes the low 8-bits of (1), and sign-extends it to 32-bit.
2048-bit SVE
For each 32-bit value integer set (2) to ( (1) & 0x7F ) − ( (1) & 0x80 ). This takes the low 8-bits of (1), and sign-extends it to 32-bit.
Report mistakes or give feedback
Inspired by and based on the x86/x64 SIMD Instruction List by Daytime.