[PATCH v3 0/2] Enhanced VSTART and VL checks for vector instructions

Chao Liu posted 2 patches 2 months, 4 weeks ago
There is a newer version of this series
target/riscv/vcrypto_helper.c   | 32 ++++++-------
target/riscv/vector_helper.c    | 83 ++++++++++++++++++---------------
target/riscv/vector_internals.c |  4 +-
target/riscv/vector_internals.h | 12 ++---
4 files changed, 69 insertions(+), 62 deletions(-)
[PATCH v3 0/2] Enhanced VSTART and VL checks for vector instructions
Posted by Chao Liu 2 months, 4 weeks ago
Hi, all:

In accordance with the review, i improved the commit message of patch and added
the reason for the modification.

There was no change in the patch content.

PATCH v2 review:
https://lore.kernel.org/qemu-devel/61e8f7d8-607a-4d63-b9dd-cfbfc840716e@ventanamicro.com/

PATCH v1 review:
https://lore.kernel.org/qemu-devel/CAKmqyKPFYxhK8PANOVzV3FMWxd79wZSJYLWkKOAgEMt_b2KvZA@mail.gmail.com/

--
Regards,
Chao

Chao Liu (2):
  target/riscv: refactor VSTART_CHECK_EARLY_EXIT() to accept vl as a
    parameter
  target/riscv: fix handling of nop for vstart >= vl in some vector
    instruction

 target/riscv/vcrypto_helper.c   | 32 ++++++-------
 target/riscv/vector_helper.c    | 83 ++++++++++++++++++---------------
 target/riscv/vector_internals.c |  4 +-
 target/riscv/vector_internals.h | 12 ++---
 4 files changed, 69 insertions(+), 62 deletions(-)

-- 
2.47.1
Re: [PATCH v3 0/2] Enhanced VSTART and VL checks for vector instructions
Posted by Alistair Francis 3 weeks, 6 days ago
On Mon, Jan 6, 2025 at 12:44 PM Chao Liu <lc00631@tecorigin.com> wrote:
>
> Hi, all:
>
> In accordance with the review, i improved the commit message of patch and added
> the reason for the modification.
>
> There was no change in the patch content.
>
> PATCH v2 review:
> https://lore.kernel.org/qemu-devel/61e8f7d8-607a-4d63-b9dd-cfbfc840716e@ventanamicro.com/
>
> PATCH v1 review:
> https://lore.kernel.org/qemu-devel/CAKmqyKPFYxhK8PANOVzV3FMWxd79wZSJYLWkKOAgEMt_b2KvZA@mail.gmail.com/
>
> --
> Regards,
> Chao
>
> Chao Liu (2):
>   target/riscv: refactor VSTART_CHECK_EARLY_EXIT() to accept vl as a
>     parameter
>   target/riscv: fix handling of nop for vstart >= vl in some vector
>     instruction

Do you mind rebasing on:
https://github.com/alistair23/qemu/tree/riscv-to-apply.next

Alistair

>
>  target/riscv/vcrypto_helper.c   | 32 ++++++-------
>  target/riscv/vector_helper.c    | 83 ++++++++++++++++++---------------
>  target/riscv/vector_internals.c |  4 +-
>  target/riscv/vector_internals.h | 12 ++---
>  4 files changed, 69 insertions(+), 62 deletions(-)
>
> --
> 2.47.1
>
>
Re: [PATCH v3 0/2] Enhanced VSTART and VL checks for vector instructions
Posted by Chao Liu 1 month ago
Hi,

This patchset fixes some bugs in RVV instructions,

can you pull it in the near future please? 

Looking forward to your reply!

--
Regards,
Chao

> 
> Hi, all:
> 
> In accordance with the review, i improved the commit message of patch and added
> the reason for the modification.
> 
> There was no change in the patch content.
> 
> PATCH v2 review:
> https://lore.kernel.org/qemu-devel/61e8f7d8-607a-4d63-b9dd-cfbfc840716e@ventanamicro.com/
> 
> PATCH v1 review:
> https://lore.kernel.org/qemu-devel/CAKmqyKPFYxhK8PANOVzV3FMWxd79wZSJYLWkKOAgEMt_b2KvZA@mail.gmail.com/
> 
> --
> Regards,
> Chao
> 
> Chao Liu (2):
>   target/riscv: refactor VSTART_CHECK_EARLY_EXIT() to accept vl as a
>     parameter
>   target/riscv: fix handling of nop for vstart >= vl in some vector
>     instruction
> 
>  target/riscv/vcrypto_helper.c   | 32 ++++++-------
>  target/riscv/vector_helper.c    | 83 ++++++++++++++++++---------------
>  target/riscv/vector_internals.c |  4 +-
>  target/riscv/vector_internals.h | 12 ++---
>  4 files changed, 69 insertions(+), 62 deletions(-)
> 
> -- 
> 2.47.1
> 
>
Re: [PATCH v3 0/2] Enhanced VSTART and VL checks for vector instructions
Posted by Alistair Francis 1 month ago
On Wed, Mar 5, 2025 at 9:24 PM Chao Liu <lc00631@tecorigin.com> wrote:
>
> Hi,
>
> This patchset fixes some bugs in RVV instructions,
>
> can you pull it in the near future please?
>
> Looking forward to your reply!

@Daniel Henrique Barboza you commented on v2, can you have a look at this?

Alistair

>
> --
> Regards,
> Chao
>
> >
> > Hi, all:
> >
> > In accordance with the review, i improved the commit message of patch and added
> > the reason for the modification.
> >
> > There was no change in the patch content.
> >
> > PATCH v2 review:
> > https://lore.kernel.org/qemu-devel/61e8f7d8-607a-4d63-b9dd-cfbfc840716e@ventanamicro.com/
> >
> > PATCH v1 review:
> > https://lore.kernel.org/qemu-devel/CAKmqyKPFYxhK8PANOVzV3FMWxd79wZSJYLWkKOAgEMt_b2KvZA@mail.gmail.com/
> >
> > --
> > Regards,
> > Chao
> >
> > Chao Liu (2):
> >   target/riscv: refactor VSTART_CHECK_EARLY_EXIT() to accept vl as a
> >     parameter
> >   target/riscv: fix handling of nop for vstart >= vl in some vector
> >     instruction
> >
> >  target/riscv/vcrypto_helper.c   | 32 ++++++-------
> >  target/riscv/vector_helper.c    | 83 ++++++++++++++++++---------------
> >  target/riscv/vector_internals.c |  4 +-
> >  target/riscv/vector_internals.h | 12 ++---
> >  4 files changed, 69 insertions(+), 62 deletions(-)
> >
> > --
> > 2.47.1
> >
> >