This patch includes: - XVINSGR2VR.{W/D}; - XVPICKVE2GR.{W/D}[U]. Signed-off-by: Song Gao <gaos...@loongson.cn> --- target/loongarch/disas.c | 18 ++++++++++++ target/loongarch/insn_trans/trans_lasx.c.inc | 30 ++++++++++++++++++++ target/loongarch/insns.decode | 7 +++++ 3 files changed, 55 insertions(+)
diff --git a/target/loongarch/disas.c b/target/loongarch/disas.c index 3a06b5cb80..0995d9b794 100644 --- a/target/loongarch/disas.c +++ b/target/loongarch/disas.c @@ -1738,6 +1738,17 @@ static void output_vr_x(DisasContext *ctx, arg_vr *a, const char *mnemonic) output(ctx, mnemonic, "x%d, r%d", a->vd, a->rj); } +static void output_vr_i_x(DisasContext *ctx, arg_vr_i *a, const char *mnemonic) +{ + output(ctx, mnemonic, "x%d, r%d, 0x%x", a->vd, a->rj, a->imm); +} + +static void output_rv_i_x(DisasContext *ctx, arg_rv_i *a, const char *mnemonic) +{ + output(ctx, mnemonic, "r%d, x%d, 0x%x", a->rd, a->vj, a->imm); +} + + INSN_LASX(xvadd_b, vvv) INSN_LASX(xvadd_h, vvv) INSN_LASX(xvadd_w, vvv) @@ -2498,6 +2509,13 @@ INSN_LASX(xvsetallnez_h, cv) INSN_LASX(xvsetallnez_w, cv) INSN_LASX(xvsetallnez_d, cv) +INSN_LASX(xvinsgr2vr_w, vr_i) +INSN_LASX(xvinsgr2vr_d, vr_i) +INSN_LASX(xvpickve2gr_w, rv_i) +INSN_LASX(xvpickve2gr_d, rv_i) +INSN_LASX(xvpickve2gr_wu, rv_i) +INSN_LASX(xvpickve2gr_du, rv_i) + INSN_LASX(xvreplgr2vr_b, vr) INSN_LASX(xvreplgr2vr_h, vr) INSN_LASX(xvreplgr2vr_w, vr) diff --git a/target/loongarch/insn_trans/trans_lasx.c.inc b/target/loongarch/insn_trans/trans_lasx.c.inc index ad476d8f19..4f58ff1f12 100644 --- a/target/loongarch/insn_trans/trans_lasx.c.inc +++ b/target/loongarch/insn_trans/trans_lasx.c.inc @@ -803,6 +803,36 @@ TRANS(xvsetallnez_h, gen_cv, 32, gen_helper_vsetallnez_h) TRANS(xvsetallnez_w, gen_cv, 32, gen_helper_vsetallnez_w) TRANS(xvsetallnez_d, gen_cv, 32, gen_helper_vsetallnez_d) +static bool trans_xvinsgr2vr_w(DisasContext *ctx, arg_vr_i *a) +{ + return trans_vinsgr2vr_w(ctx, a); +} + +static bool trans_xvinsgr2vr_d(DisasContext *ctx, arg_vr_i *a) +{ + return trans_vinsgr2vr_d(ctx, a); +} + +static bool trans_xvpickve2gr_w(DisasContext *ctx, arg_rv_i *a) +{ + return trans_vpickve2gr_w(ctx, a); +} + +static bool trans_xvpickve2gr_d(DisasContext *ctx, arg_rv_i *a) +{ + return trans_vpickve2gr_d(ctx, a); +} + +static bool trans_xvpickve2gr_wu(DisasContext *ctx, arg_rv_i *a) +{ + return trans_vpickve2gr_wu(ctx, a); +} + +static bool trans_xvpickve2gr_du(DisasContext *ctx, arg_rv_i *a) +{ + return trans_vpickve2gr_du(ctx, a); +} + TRANS(xvreplgr2vr_b, gvec_dup, 32, MO_8) TRANS(xvreplgr2vr_h, gvec_dup, 32, MO_16) TRANS(xvreplgr2vr_w, gvec_dup, 32, MO_32) diff --git a/target/loongarch/insns.decode b/target/loongarch/insns.decode index ad6751fdfb..bb3bb447ae 100644 --- a/target/loongarch/insns.decode +++ b/target/loongarch/insns.decode @@ -1976,6 +1976,13 @@ xvsetallnez_h 0111 01101001 11001 01101 ..... 00 ... @cv xvsetallnez_w 0111 01101001 11001 01110 ..... 00 ... @cv xvsetallnez_d 0111 01101001 11001 01111 ..... 00 ... @cv +xvinsgr2vr_w 0111 01101110 10111 10 ... ..... ..... @vr_ui3 +xvinsgr2vr_d 0111 01101110 10111 110 .. ..... ..... @vr_ui2 +xvpickve2gr_w 0111 01101110 11111 10 ... ..... ..... @rv_ui3 +xvpickve2gr_d 0111 01101110 11111 110 .. ..... ..... @rv_ui2 +xvpickve2gr_wu 0111 01101111 00111 10 ... ..... ..... @rv_ui3 +xvpickve2gr_du 0111 01101111 00111 110 .. ..... ..... @rv_ui2 + xvreplgr2vr_b 0111 01101001 11110 00000 ..... ..... @vr xvreplgr2vr_h 0111 01101001 11110 00001 ..... ..... @vr xvreplgr2vr_w 0111 01101001 11110 00010 ..... ..... @vr -- 2.39.1