On Wed, Dec 29, 2021 at 12:48 PM <frank.ch...@sifive.com> wrote: > > From: Frank Chang <frank.ch...@sifive.com> > > Zve32f extension requires the scalar processor to implement the F > extension and implement all vector floating-point instructions for > floating-point operands with EEW=32 (i.e., no widening floating-point > operations). > > Signed-off-by: Frank Chang <frank.ch...@sifive.com>
Reviewed-by: Alistair Francis <alistair.fran...@wdc.com> Alistair > --- > target/riscv/insn_trans/trans_rvv.c.inc | 21 +++++++++++++++++++++ > 1 file changed, 21 insertions(+) > > diff --git a/target/riscv/insn_trans/trans_rvv.c.inc > b/target/riscv/insn_trans/trans_rvv.c.inc > index c6280c7b0b..1f5a75eca7 100644 > --- a/target/riscv/insn_trans/trans_rvv.c.inc > +++ b/target/riscv/insn_trans/trans_rvv.c.inc > @@ -66,6 +66,17 @@ static bool require_scale_rvf(DisasContext *s) > } > } > > +static bool require_zve32f(DisasContext *s) > +{ > + /* RVV + Zve32f = RVV. */ > + if (has_ext(s, RVV)) { > + return true; > + } > + > + /* Zve32f doesn't support FP64. (Section 18.2) */ > + return s->ext_zve32f ? s->sew <= MO_32 : true; > +} > + > static bool require_zve64f(DisasContext *s) > { > /* RVV + Zve64f = RVV. */ > @@ -2227,6 +2238,7 @@ static bool opfvv_check(DisasContext *s, arg_rmrr *a) > require_rvf(s) && > vext_check_isa_ill(s) && > vext_check_sss(s, a->rd, a->rs1, a->rs2, a->vm) && > + require_zve32f(s) && > require_zve64f(s); > } > > @@ -2308,6 +2320,7 @@ static bool opfvf_check(DisasContext *s, arg_rmrr *a) > require_rvf(s) && > vext_check_isa_ill(s) && > vext_check_ss(s, a->rd, a->rs2, a->vm) && > + require_zve32f(s) && > require_zve64f(s); > } > > @@ -2530,6 +2543,7 @@ static bool opfv_check(DisasContext *s, arg_rmr *a) > vext_check_isa_ill(s) && > /* OPFV instructions ignore vs1 check */ > vext_check_ss(s, a->rd, a->rs2, a->vm) && > + require_zve32f(s) && > require_zve64f(s); > } > > @@ -2596,6 +2610,7 @@ static bool opfvv_cmp_check(DisasContext *s, arg_rmrr > *a) > require_rvf(s) && > vext_check_isa_ill(s) && > vext_check_mss(s, a->rd, a->rs1, a->rs2) && > + require_zve32f(s) && > require_zve64f(s); > } > > @@ -2610,6 +2625,7 @@ static bool opfvf_cmp_check(DisasContext *s, arg_rmrr > *a) > require_rvf(s) && > vext_check_isa_ill(s) && > vext_check_ms(s, a->rd, a->rs2) && > + require_zve32f(s) && > require_zve64f(s); > } > > @@ -2632,6 +2648,7 @@ static bool trans_vfmv_v_f(DisasContext *s, > arg_vfmv_v_f *a) > require_rvf(s) && > vext_check_isa_ill(s) && > require_align(a->rd, s->lmul) && > + require_zve32f(s) && > require_zve64f(s)) { > gen_set_rm(s, RISCV_FRM_DYN); > > @@ -3366,6 +3383,7 @@ static bool trans_vfmv_f_s(DisasContext *s, > arg_vfmv_f_s *a) > if (require_rvv(s) && > require_rvf(s) && > vext_check_isa_ill(s) && > + require_zve32f(s) && > require_zve64f(s)) { > gen_set_rm(s, RISCV_FRM_DYN); > > @@ -3393,6 +3411,7 @@ static bool trans_vfmv_s_f(DisasContext *s, > arg_vfmv_s_f *a) > if (require_rvv(s) && > require_rvf(s) && > vext_check_isa_ill(s) && > + require_zve32f(s) && > require_zve64f(s)) { > gen_set_rm(s, RISCV_FRM_DYN); > > @@ -3445,6 +3464,7 @@ static bool fslideup_check(DisasContext *s, arg_rmrr *a) > { > return slideup_check(s, a) && > require_rvf(s) && > + require_zve32f(s) && > require_zve64f(s); > } > > @@ -3452,6 +3472,7 @@ static bool fslidedown_check(DisasContext *s, arg_rmrr > *a) > { > return slidedown_check(s, a) && > require_rvf(s) && > + require_zve32f(s) && > require_zve64f(s); > } > > -- > 2.31.1 > >