SVE Instruction List by Dougall Johnson
See "LSL (immediate, unpredicated)" in the exploration tools

LSL (immediate, unpredicated): Logical shift left by immediate (unpredicated)

LSL Zd.H, Zn.H, #const (SVE (SME
svint16_t svlsl[_n_s16]_x(svbool_t pg, svint16_t op1, uint16_t op2)
svuint16_t svlsl[_n_u16]_x(svbool_t pg, svuint16_t op1, uint16_t op2)
svint16_t svlsl_wide[_n_s16]_x(svbool_t pg, svint16_t op1, uint64_t op2)
svuint16_t svlsl_wide[_n_u16]_x(svbool_t pg, svuint16_t op1, uint64_t op2)

128-bit SVE

For each 16-bit unsigned integer set (2) to (1) << const. The shift amount is limited to 0 ≤ const ≤ 15.

256-bit SVE

For each 16-bit unsigned integer set (2) to (1) << const. The shift amount is limited to 0 ≤ const ≤ 15.

512-bit SVE

For each 16-bit unsigned integer set (2) to (1) << const. The shift amount is limited to 0 ≤ const ≤ 15.

Larger sizes

1024-bit SVE

For each 16-bit unsigned integer set (2) to (1) << const. The shift amount is limited to 0 ≤ const ≤ 15.

2048-bit SVE

For each 16-bit unsigned integer set (2) to (1) << const. The shift amount is limited to 0 ≤ const ≤ 15.

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