> + addr = addr << pmlen; > + if (signext) { > + addr = (target_long)addr >> pmlen; > + } else { > + addr = addr >> pmlen; Could you please elaborate a bit more on your concern here? I believe this code works as intended: https://godbolt.org/z/b9c7na13a
Thanks пт, 5 янв. 2024 г. в 04:02, Deepak Gupta <de...@rivosinc.com>: > > --- a/target/riscv/vector_helper.c > > +++ b/target/riscv/vector_helper.c > > @@ -94,6 +94,18 @@ static inline uint32_t vext_max_elems(uint32_t desc, > uint32_t log2_esz) > > > > static inline target_ulong adjust_addr(CPURISCVState *env, target_ulong > addr) > > { > > + RISCVPmPmm pmm = riscv_pm_get_pmm(env); > > + if (pmm == PMM_FIELD_DISABLED) > > + return addr; > > + int pmlen = riscv_pm_get_pmlen(pmm); > > + bool signext = !riscv_cpu_bare_mode(env); > > + addr = addr << pmlen; > > + /* sign/zero extend masked address by N-1 bit */ > > + if (signext) { > > + addr = (target_long)addr >> pmlen; > > These look like right shift operations and not sign extensions of N-1 bit > > > + } else { > > + addr = addr >> pmlen; > > Same here. > > > + } > > return addr; > > } > > > > -- > > 2.34.1 > > > > >