On 3/12/20 7:58 AM, LIU Zhiwei wrote: > Vector strided operations access the first memory element at the base address, > and then access subsequent elements at address increments given by the byte > offset contained in the x register specified by rs2. > > Vector unit-stride operations access elements stored contiguously in memory > starting from the base effective address. It can been seen as a special > case of strided operations. > > Signed-off-by: LIU Zhiwei <zhiwei_...@c-sky.com> > --- > target/riscv/cpu.h | 6 + > target/riscv/helper.h | 105 ++++++ > target/riscv/insn32.decode | 32 ++ > target/riscv/insn_trans/trans_rvv.inc.c | 340 ++++++++++++++++++++ > target/riscv/translate.c | 7 + > target/riscv/vector_helper.c | 406 ++++++++++++++++++++++++ > 6 files changed, 896 insertions(+)
With the changes for has_ext, Reviewed-by: Richard Henderson <richard.hender...@linaro.org> r~