What unit is used for VLUXEI64.V address offsets?
Indexed-load vs2 elements are unsigned byte offsets.
Use x[rs1] plus 64-bit unsigned byte offsets in vs2 for unordered indexed loads.
VLUXEI64.V is a RISC-V V unordered indexed vector load instruction with 64-bit index EEW. Each active element address is x[rs1] plus a 64-bit unsigned byte offset from vs2; the unordered form does not guarantee element-order observation. It operates on active elements within vl, with masking and tail behavior following RVV rules.
VLUXEI64.V uses vs2 as byte offsets, not element numbers; the unordered form must not be used when element access order is required.
Understand this scenario with real code like «vsetvli t0, a0, e32, m1, ta, ma vluxei64.v v1, (a0), v2».
Understand this scenario with real code like «vsetvli t0, a0, e32, m1, ta, ma vluxei64.v v1, (a0), v2».
Indexed-load vs2 elements are unsigned byte offsets.
With vm=0, v0 selects active elements; with vm=1, all body elements participate. Inactive and tail elements follow the current policies.