Message ID | 20240122161107.26737-1-dbarboza@ventanamicro.com (mailing list archive) |
---|---|
Headers | show |
Series | target/riscv: add 'cpu->cfg.vlenb', remove | expand |
On Tue, Jan 23, 2024 at 2:11 AM Daniel Henrique Barboza <dbarboza@ventanamicro.com> wrote: > > Hi, > > This new version is rebased with a newer riscv-to-apply.next branch > (@ 096b6b0729). No other changes made. > > All patches acked. > > v4 link: https://lore.kernel.org/qemu-riscv/20240116205817.344178-1-dbarboza@ventanamicro.com/ > > Daniel Henrique Barboza (13): > target/riscv: add 'vlenb' field in cpu->cfg > target/riscv/csr.c: use 'vlenb' instead of 'vlen' > target/riscv/gdbstub.c: use 'vlenb' instead of shifting 'vlen' > target/riscv/insn_trans/trans_rvbf16.c.inc: use cpu->cfg.vlenb > target/riscv/insn_trans/trans_rvv.c.inc: use 'vlenb' > target/riscv/insn_trans/trans_rvvk.c.inc: use 'vlenb' > target/riscv/vector_helper.c: use 'vlenb' > target/riscv/vector_helper.c: use vlenb in HELPER(vsetvl) > target/riscv/insn_trans/trans_rvv.c.inc: use 'vlenb' in MAXSZ() > target/riscv/cpu.h: use 'vlenb' in vext_get_vlmax() > target/riscv: change vext_get_vlmax() arguments > trans_rvv.c.inc: use vext_get_vlmax() in trans_vrgather_v*() > target/riscv/cpu.c: remove cpu->cfg.vlen Thanks! Applied to riscv-to-apply.next Alistair > > target/riscv/cpu.c | 12 +- > target/riscv/cpu.h | 14 +- > target/riscv/cpu_cfg.h | 2 +- > target/riscv/cpu_helper.c | 11 +- > target/riscv/csr.c | 4 +- > target/riscv/gdbstub.c | 6 +- > target/riscv/insn_trans/trans_rvbf16.c.inc | 12 +- > target/riscv/insn_trans/trans_rvv.c.inc | 152 ++++++++++----------- > target/riscv/insn_trans/trans_rvvk.c.inc | 16 +-- > target/riscv/tcg/tcg-cpu.c | 4 +- > target/riscv/vector_helper.c | 43 +++--- > 11 files changed, 148 insertions(+), 128 deletions(-) > > -- > 2.43.0 > >