SVE Instruction List by Dougall Johnson
See "STR (vector)" in the exploration tools

STR (vector): Store vector register

STR Zt, [Xn{, #imm, MUL VL}] (SVE (SME

128-bit SVE

Store a vector register to memory. On 128-bit SVE, this stores 16 bytes to memory (2), from a 128-bit register (1), with the address is calculated as Xn + imm * 16.

256-bit SVE

Store a vector register to memory. On 256-bit SVE, this stores 32 bytes to memory (2), from a 256-bit register (1), with the address is calculated as Xn + imm * 32.

512-bit SVE

Store a vector register to memory. On 512-bit SVE, this stores 64 bytes to memory (2), from a 512-bit register (1), with the address is calculated as Xn + imm * 64.

Larger sizes

1024-bit SVE

Store a vector register to memory. On 1024-bit SVE, this stores 128 bytes to memory (2), from a 1024-bit register (1), with the address is calculated as Xn + imm * 128.

2048-bit SVE

Store a vector register to memory. On 2048-bit SVE, this stores 256 bytes to memory (2), from a 2048-bit register (1), with the address is calculated as Xn + imm * 256.

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