> Weiwei Li <liwei...@iscas.ac.cn> 於 2022年3月28日 下午7:56 寫道: > > > 在 2022/3/7 下午3:10, ~eopxd 写道: >> From: eopXD <eop.c...@sifive.com> >> >> Signed-off-by: eop Chen <eop.c...@sifive.com> >> Reviewed-by: Frank Chang <frank.ch...@sifive.com> >> --- >> target/riscv/insn_trans/trans_rvv.c.inc | 9 +++++++ >> target/riscv/vector_helper.c | 32 +++++++++++++++++++++++++ >> 2 files changed, 41 insertions(+) >> >> diff --git a/target/riscv/vector_helper.c b/target/riscv/vector_helper.c >> index 39c79c59c2..1c7015e917 100644 >> --- a/target/riscv/vector_helper.c >> +++ b/target/riscv/vector_helper.c >> @@ -289,6 +289,9 @@ vext_ldst_stride(void *vd, void *v0, target_ulong base, >> uint32_t i, k; >> uint32_t nf = vext_nf(desc); >> uint32_t max_elems = vext_max_elems(desc, log2_esz); >> + uint32_t esz = 1 << log2_esz; >> + uint32_t total_elems = vext_get_total_elems(desc, esz); >> + uint32_t vta = vext_vta(desc); >> for (i = env->vstart; i < env->vl; i++, env->vstart++) { >> if (!vm && !vext_elem_mask(v0, i)) { >> @@ -303,6 +306,11 @@ vext_ldst_stride(void *vd, void *v0, target_ulong base, >> } >> } >> env->vstart = 0; >> + /* set tail elements to 1s */ >> + for (k = 0; k < nf; ++k) { >> + vext_set_elems_1s_fns[log2_esz](vd, vta, env->vl + k * total_elems, >> + env->vl * esz, total_elems * esz); >> + } >> } >> #define GEN_VEXT_LD_STRIDE(NAME, ETYPE, LOAD_FN) \ >> @@ -348,6 +356,9 @@ vext_ldst_us(void *vd, target_ulong base, CPURISCVState >> *env, uint32_t desc, >> uint32_t i, k; >> uint32_t nf = vext_nf(desc); >> uint32_t max_elems = vext_max_elems(desc, log2_esz); >> + uint32_t esz = 1 << log2_esz; >> + uint32_t total_elems = vext_get_total_elems(desc, esz); >> + uint32_t vta = vext_vta(desc); >> /* load bytes from guest memory */ >> for (i = env->vstart; i < evl; i++, env->vstart++) { >> @@ -359,6 +370,11 @@ vext_ldst_us(void *vd, target_ulong base, CPURISCVState >> *env, uint32_t desc, >> } >> } >> env->vstart = 0; >> + /* set tail elements to 1s */ >> + for (k = 0; k < nf; ++k) { >> + vext_set_elems_1s_fns[log2_esz](vd, vta, env->vl + k * total_elems, >> + env->vl * esz, total_elems * esz); >> + } >> } >> > > It seems incorrect here. similar to following load/store helper. > > In above instructions, following elements are loaded: > > 0 * max_elems ... 0 *max_elems + vl - 1 > > 1 * max_elems ... 1 *max_elems + vl - 1 > > ....... > > (nf-1)* max_elems ... (nf-1)*max_elems + vl - 1 > > So, the elements[vl .. max_elems - 1] are tail elements, however > elements[vl ... 1* total_elems - 1] may not: > > elements from max_elems to total_elems - 1 are active elements, If > total_elems > max_elems(LMUL< 1) > > Or LMUL should be equal or greater than 1 here? I didn't find any description > about this from the spec. > > I also have another question about the tail elements for these load/store > instructions: > > when nf = 3, LMUL = 1, vl=vlmax, reg, reg+1, reg+2 will be loaded, then > whether elements in reg+3 > > (if they belong to the same register group) are tail elements? > > Regards, > > Weiwei Li >
The LMUL sent into vector helper function from `trans_rvv.c.inc` takes EMUL (effective LMUL) instead of LMUL. Take trans_rvv.c.inc::ld_us_op for example, ``` /* * Vector load/store instructions have the EEW encoded * directly in the instructions. The maximum vector size is * calculated with EMUL rather than LMUL. */ uint8_t emul = vext_get_emul(s, eew); data = FIELD_DP32(data, VDATA, VM, a->vm); data = FIELD_DP32(data, VDATA, LMUL, emul); data = FIELD_DP32(data, VDATA, NF, a->nf); return ldst_us_trans(a->rd, a->rs1, data, fn, s, false); ``` And vext_get_emul always return something at least the length of a vector register: ``` static uint8_t vext_get_emul(DisasContext *s, uint8_t eew) { int8_t emul = eew - s->sew + s->lmul; return emul < 0 ? 0 : emul; } ``` In this case I guess the naming is a little bit misleading, `vext_max_elems` would be equivalent to `vext_get_total_elems` for all load / store instructions, which guarantees That LMUL is always equal or greater to 1. In conclusion, the behavior is correct here. I don’t understand your second question though. If nf = 3, there will be 3 registers involved with the instruction (namely reg, reg+1, reg+2). Why do we care about (reg+3)? Thanks for pointing out this question and all your efforts for reviewing. I really appreciate it. Regards, eop Chen