All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH qemu v4 00/14] Add tail agnostic behavior for rvv instructions
@ 2022-03-24 19:03 ` ~eopxd
  0 siblings, 0 replies; 42+ messages in thread
From: ~eopxd @ 2022-03-24 19:03 UTC (permalink / raw)
  To: qemu-devel, qemu-riscv
  Cc: WeiWei Li, Frank Chang, eop Chen, Bin Meng, Alistair Francis,
	Palmer Dabbelt

According to v-spec, tail agnostic behavior can be either kept as
undisturbed or set elements' bits to all 1s. To distinguish the
difference of tail policies, QEMU should be able to simulate the tail
agnostic behavior as "set tail elements' bits to all 1s". An option
'rvv_ta_all_1s' is added to enable the behavior, it is default as
disabled.

There are multiple possibility for agnostic elements according to
v-spec. The main intent of this patch-set tries to add option that
can distinguish between tail policies. Setting agnostic elements to
all 1s makes things simple and allow QEMU to express this.

We may explore other possibility of agnostic behavior by adding
other options in the future. Please understand that this patch-set
is limited.

v2 updates:
- Addressed comments from Weiwei Li
- Added commit tail agnostic on load / store instructions (which
   I forgot to include into the patch-set)

v3 updates:
- Missed the very 1st commit, adding it back

v4 updates:
- Renamed vlmax to total_elems
- Deal with tail element when vl_eq_vlmax == true

eopXD (14):
  target/riscv: rvv: Prune redundant ESZ, DSZ parameter passed
  target/riscv: rvv: Rename ambiguous esz
  target/riscv: rvv: Early exit when vstart >= vl
  target/riscv: rvv: Add tail agnostic for vv instructions
  target/riscv: rvv: Add tail agnostic for vector load / store
    instructions
  target/riscv: rvv: Add tail agnostic for vx, vvm, vxm instructions
  target/riscv: rvv: Add tail agnostic for vector integer shift
    instructions
  target/riscv: rvv: Add tail agnostic for vector integer comparison
    instructions
  target/riscv: rvv: Add tail agnostic for vector integer merge and move
    instructions
  target/riscv: rvv: Add tail agnostic for vector fix-point arithmetic
    instructions
  target/riscv: rvv: Add tail agnostic for vector floating-point
    instructions
  target/riscv: rvv: Add tail agnostic for vector reduction instructions
  target/riscv: rvv: Add tail agnostic for vector mask instructions
  target/riscv: rvv: Add tail agnostic for vector permutation
    instructions

 target/riscv/cpu.c                      |    1 +
 target/riscv/cpu.h                      |    2 +
 target/riscv/cpu_helper.c               |    2 +
 target/riscv/insn_trans/trans_rvv.c.inc |  154 +++
 target/riscv/internals.h                |    5 +-
 target/riscv/translate.c                |    2 +
 target/riscv/vector_helper.c            | 1597 ++++++++++++++---------
 7 files changed, 1140 insertions(+), 623 deletions(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 42+ messages in thread

end of thread, other threads:[~2022-03-25 10:52 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-24 19:03 [PATCH qemu v4 00/14] Add tail agnostic behavior for rvv instructions ~eopxd
2022-03-24 19:03 ` ~eopxd
2022-03-01  9:07 ` [PATCH qemu v4 04/14] target/riscv: rvv: Add tail agnostic for vv instructions ~eopxd
2022-03-24 19:03   ` ~eopxd
2022-03-25  9:10   ` Weiwei Li
2022-03-25  9:10     ` Weiwei Li
2022-03-07  7:10 ` [PATCH qemu v4 05/14] target/riscv: rvv: Add tail agnostic for vector load / store instructions ~eopxd
2022-03-24 19:03   ` ~eopxd
2022-03-07  7:32 ` [PATCH qemu v4 06/14] target/riscv: rvv: Add tail agnostic for vx, vvm, vxm instructions ~eopxd
2022-03-24 19:03   ` ~eopxd
2022-03-25 10:32   ` Weiwei Li
2022-03-25 10:32     ` Weiwei Li
2022-03-07  9:38 ` [PATCH qemu v4 07/14] target/riscv: rvv: Add tail agnostic for vector integer shift instructions ~eopxd
2022-03-24 19:03   ` ~eopxd
2022-03-07  9:43 ` [PATCH qemu v4 08/14] target/riscv: rvv: Add tail agnostic for vector integer comparison instructions ~eopxd
2022-03-24 19:03   ` ~eopxd
2022-03-07  9:53 ` [PATCH qemu v4 09/14] target/riscv: rvv: Add tail agnostic for vector integer merge and move instructions ~eopxd
2022-03-24 19:03   ` ~eopxd
2022-03-25 10:38   ` Weiwei Li
2022-03-25 10:38     ` Weiwei Li
2022-03-07 10:04 ` [PATCH qemu v4 10/14] target/riscv: rvv: Add tail agnostic for vector fix-point arithmetic instructions ~eopxd
2022-03-24 19:03   ` ~eopxd
2022-03-07 10:05 ` [PATCH qemu v4 11/14] target/riscv: rvv: Add tail agnostic for vector floating-point instructions ~eopxd
2022-03-24 19:03   ` ~eopxd
2022-03-25 10:42   ` Weiwei Li
2022-03-25 10:42     ` Weiwei Li
2022-03-07 12:21 ` [PATCH qemu v4 12/14] target/riscv: rvv: Add tail agnostic for vector reduction instructions ~eopxd
2022-03-24 19:03   ` ~eopxd
2022-03-25 10:47   ` Weiwei Li
2022-03-25 10:47     ` Weiwei Li
2022-03-07 15:26 ` [PATCH qemu v4 13/14] target/riscv: rvv: Add tail agnostic for vector mask instructions ~eopxd
2022-03-24 19:03   ` ~eopxd
2022-03-07 15:59 ` [PATCH qemu v4 14/14] target/riscv: rvv: Add tail agnostic for vector permutation instructions ~eopxd
2022-03-24 19:03   ` ~eopxd
2022-03-25 10:51   ` Weiwei Li
2022-03-25 10:51     ` Weiwei Li
2022-03-09  8:34 ` [PATCH qemu v4 02/14] target/riscv: rvv: Rename ambiguous esz ~eopxd
2022-03-24 19:03   ` ~eopxd
2022-03-12  6:28 ` [PATCH qemu v4 03/14] target/riscv: rvv: Early exit when vstart >= vl ~eopxd
2022-03-12  6:28   ` ~eopxd
2022-03-14  7:38 ` [PATCH qemu v4 01/14] target/riscv: rvv: Prune redundant ESZ, DSZ parameter passed ~eopxd
2022-03-14  7:38   ` ~eopxd

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.