qemu-riscv
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v8 30/78] target/riscv: rvv-1.0: find-first-set mask bit inst


From: Alistair Francis
Subject: Re: [PATCH v8 30/78] target/riscv: rvv-1.0: find-first-set mask bit instruction
Date: Mon, 18 Oct 2021 15:47:06 +1000

On Fri, Oct 15, 2021 at 6:03 PM <frank.chang@sifive.com> wrote:
>
> From: Frank Chang <frank.chang@sifive.com>
>
> Signed-off-by: Frank Chang <frank.chang@sifive.com>
> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

Reviewed-by: Alistair Francis <alistair.francis@wdc.com>

Alistair

> ---
>  target/riscv/helper.h                   | 2 +-
>  target/riscv/insn32.decode              | 2 +-
>  target/riscv/insn_trans/trans_rvv.c.inc | 4 ++--
>  target/riscv/vector_helper.c            | 6 +++---
>  4 files changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/target/riscv/helper.h b/target/riscv/helper.h
> index 3f30882aec4..7646567eb27 100644
> --- a/target/riscv/helper.h
> +++ b/target/riscv/helper.h
> @@ -1022,7 +1022,7 @@ DEF_HELPER_6(vmxnor_mm, void, ptr, ptr, ptr, ptr, env, 
> i32)
>
>  DEF_HELPER_4(vcpop_m, tl, ptr, ptr, env, i32)
>
> -DEF_HELPER_4(vmfirst_m, tl, ptr, ptr, env, i32)
> +DEF_HELPER_4(vfirst_m, tl, ptr, ptr, env, i32)
>
>  DEF_HELPER_5(vmsbf_m, void, ptr, ptr, ptr, env, i32)
>  DEF_HELPER_5(vmsif_m, void, ptr, ptr, ptr, env, i32)
> diff --git a/target/riscv/insn32.decode b/target/riscv/insn32.decode
> index e748f7ca714..4df2aa9cddc 100644
> --- a/target/riscv/insn32.decode
> +++ b/target/riscv/insn32.decode
> @@ -628,7 +628,7 @@ vmnor_mm        011110 - ..... ..... 010 ..... 1010111 @r
>  vmornot_mm      011100 - ..... ..... 010 ..... 1010111 @r
>  vmxnor_mm       011111 - ..... ..... 010 ..... 1010111 @r
>  vcpop_m         010000 . ..... 10000 010 ..... 1010111 @r2_vm
> -vmfirst_m       010101 . ..... ----- 010 ..... 1010111 @r2_vm
> +vfirst_m        010000 . ..... 10001 010 ..... 1010111 @r2_vm
>  vmsbf_m         010110 . ..... 00001 010 ..... 1010111 @r2_vm
>  vmsif_m         010110 . ..... 00011 010 ..... 1010111 @r2_vm
>  vmsof_m         010110 . ..... 00010 010 ..... 1010111 @r2_vm
> diff --git a/target/riscv/insn_trans/trans_rvv.c.inc 
> b/target/riscv/insn_trans/trans_rvv.c.inc
> index fc17e57d0f7..5376adca60c 100644
> --- a/target/riscv/insn_trans/trans_rvv.c.inc
> +++ b/target/riscv/insn_trans/trans_rvv.c.inc
> @@ -2695,7 +2695,7 @@ static bool trans_vcpop_m(DisasContext *s, arg_rmr *a)
>  }
>
>  /* vmfirst find-first-set mask bit */
> -static bool trans_vmfirst_m(DisasContext *s, arg_rmr *a)
> +static bool trans_vfirst_m(DisasContext *s, arg_rmr *a)
>  {
>      if (require_rvv(s) &&
>          vext_check_isa_ill(s)) {
> @@ -2714,7 +2714,7 @@ static bool trans_vmfirst_m(DisasContext *s, arg_rmr *a)
>          tcg_gen_addi_ptr(src2, cpu_env, vreg_ofs(s, a->rs2));
>          tcg_gen_addi_ptr(mask, cpu_env, vreg_ofs(s, 0));
>
> -        gen_helper_vmfirst_m(dst, mask, src2, cpu_env, desc);
> +        gen_helper_vfirst_m(dst, mask, src2, cpu_env, desc);
>          gen_set_gpr(s, a->rd, dst);
>
>          tcg_temp_free_ptr(mask);
> diff --git a/target/riscv/vector_helper.c b/target/riscv/vector_helper.c
> index 9451112b3da..f97783acf05 100644
> --- a/target/riscv/vector_helper.c
> +++ b/target/riscv/vector_helper.c
> @@ -4233,9 +4233,9 @@ target_ulong HELPER(vcpop_m)(void *v0, void *vs2, 
> CPURISCVState *env,
>      return cnt;
>  }
>
> -/* vmfirst find-first-set mask bit*/
> -target_ulong HELPER(vmfirst_m)(void *v0, void *vs2, CPURISCVState *env,
> -                               uint32_t desc)
> +/* vfirst find-first-set mask bit*/
> +target_ulong HELPER(vfirst_m)(void *v0, void *vs2, CPURISCVState *env,
> +                              uint32_t desc)
>  {
>      uint32_t vm = vext_vm(desc);
>      uint32_t vl = env->vl;
> --
> 2.25.1
>
>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]