[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v12 0/7] riscv: set vstart_eq_zero on vector insns
From: |
Daniel Henrique Barboza |
Subject: |
[PATCH v12 0/7] riscv: set vstart_eq_zero on vector insns |
Date: |
Mon, 11 Mar 2024 15:08:14 -0300 |
Hi,
In this new version we reworked the commit message of patch 4, as
suggested by Richard, since the solution we went for in patch 3
trivialized the removal of 'brcond' since we're doing an early exit if
vstart >= vl.
No other changes made. Patches based on master.
All patches acked.
Changes from v11:
- patch 4:
- commit msg rewritten taking VSTART_CHECK_EARLY_EXIT() into
consideration
- v11 link:
20240311135855.225578-1-dbarboza@ventanamicro.com/">https://lore.kernel.org/qemu-riscv/20240311135855.225578-1-dbarboza@ventanamicro.com/
Daniel Henrique Barboza (6):
target/riscv/vector_helper.c: set vstart = 0 in GEN_VEXT_VSLIDEUP_VX()
trans_rvv.c.inc: set vstart = 0 in int scalar move insns
target/riscv/vector_helpers: do early exit when vstart >= vl
target/riscv: remove 'over' brconds from vector trans
trans_rvv.c.inc: remove redundant mark_vs_dirty() calls
target/riscv/vector_helper.c: optimize loops in ldst helpers
Ivan Klokov (1):
target/riscv: enable 'vstart_eq_zero' in the end of insns
target/riscv/insn_trans/trans_rvbf16.c.inc | 18 +-
target/riscv/insn_trans/trans_rvv.c.inc | 198 +++++----------------
target/riscv/insn_trans/trans_rvvk.c.inc | 30 +---
target/riscv/translate.c | 6 +
target/riscv/vcrypto_helper.c | 32 ++++
target/riscv/vector_helper.c | 97 +++++++++-
target/riscv/vector_internals.c | 4 +
target/riscv/vector_internals.h | 9 +
8 files changed, 202 insertions(+), 192 deletions(-)
--
2.43.2
- [PATCH v12 0/7] riscv: set vstart_eq_zero on vector insns,
Daniel Henrique Barboza <=
- [PATCH v12 1/7] target/riscv/vector_helper.c: set vstart = 0 in GEN_VEXT_VSLIDEUP_VX(), Daniel Henrique Barboza, 2024/03/11
- [PATCH v12 2/7] trans_rvv.c.inc: set vstart = 0 in int scalar move insns, Daniel Henrique Barboza, 2024/03/11
- [PATCH v12 5/7] trans_rvv.c.inc: remove redundant mark_vs_dirty() calls, Daniel Henrique Barboza, 2024/03/11
- [PATCH v12 6/7] target/riscv: enable 'vstart_eq_zero' in the end of insns, Daniel Henrique Barboza, 2024/03/11
- [PATCH v12 3/7] target/riscv/vector_helpers: do early exit when vstart >= vl, Daniel Henrique Barboza, 2024/03/11
- [PATCH v12 4/7] target/riscv: remove 'over' brconds from vector trans, Daniel Henrique Barboza, 2024/03/11
- [PATCH v12 7/7] target/riscv/vector_helper.c: optimize loops in ldst helpers, Daniel Henrique Barboza, 2024/03/11