[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v11 56/61] target/riscv: integer scalar move instruction
From: |
LIU Zhiwei |
Subject: |
[PATCH v11 56/61] target/riscv: integer scalar move instruction |
Date: |
Wed, 24 Jun 2020 05:59:15 +0800 |
Signed-off-by: LIU Zhiwei <zhiwei_liu@c-sky.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
target/riscv/insn32.decode | 1 +
target/riscv/insn_trans/trans_rvv.inc.c | 60 +++++++++++++++++++++++++
target/riscv/internals.h | 6 +++
3 files changed, 67 insertions(+)
diff --git a/target/riscv/insn32.decode b/target/riscv/insn32.decode
index c4496cd010..e06c0ffc22 100644
--- a/target/riscv/insn32.decode
+++ b/target/riscv/insn32.decode
@@ -564,6 +564,7 @@ vmsof_m 010110 . ..... 00010 010 ..... 1010111
@r2_vm
viota_m 010110 . ..... 10000 010 ..... 1010111 @r2_vm
vid_v 010110 . 00000 10001 010 ..... 1010111 @r1_vm
vext_x_v 001100 1 ..... ..... 010 ..... 1010111 @r
+vmv_s_x 001101 1 00000 ..... 110 ..... 1010111 @r2
vsetvli 0 ........... ..... 111 ..... 1010111 @r2_zimm
vsetvl 1000000 ..... ..... 111 ..... 1010111 @r
diff --git a/target/riscv/insn_trans/trans_rvv.inc.c
b/target/riscv/insn_trans/trans_rvv.inc.c
index cfbbd88dbf..b10b89daa9 100644
--- a/target/riscv/insn_trans/trans_rvv.inc.c
+++ b/target/riscv/insn_trans/trans_rvv.inc.c
@@ -2649,3 +2649,63 @@ static bool trans_vext_x_v(DisasContext *s, arg_r *a)
tcg_temp_free_i64(tmp);
return true;
}
+
+/* Integer Scalar Move Instruction */
+
+static void store_element(TCGv_i64 val, TCGv_ptr base,
+ int ofs, int sew)
+{
+ switch (sew) {
+ case MO_8:
+ tcg_gen_st8_i64(val, base, ofs);
+ break;
+ case MO_16:
+ tcg_gen_st16_i64(val, base, ofs);
+ break;
+ case MO_32:
+ tcg_gen_st32_i64(val, base, ofs);
+ break;
+ case MO_64:
+ tcg_gen_st_i64(val, base, ofs);
+ break;
+ default:
+ g_assert_not_reached();
+ break;
+ }
+}
+
+/*
+ * Store vreg[idx] = val.
+ * The index must be in range of VLMAX.
+ */
+static void vec_element_storei(DisasContext *s, int vreg,
+ int idx, TCGv_i64 val)
+{
+ store_element(val, cpu_env, endian_ofs(s, vreg, idx), s->sew);
+}
+
+/* vmv.s.x vd, rs1 # vd[0] = rs1 */
+static bool trans_vmv_s_x(DisasContext *s, arg_vmv_s_x *a)
+{
+ if (vext_check_isa_ill(s)) {
+ /* This instruction ignores LMUL and vector register groups */
+ int maxsz = s->vlen >> 3;
+ TCGv_i64 t1;
+ TCGLabel *over = gen_new_label();
+
+ tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_vl, 0, over);
+ tcg_gen_gvec_dup_imm(SEW64, vreg_ofs(s, a->rd), maxsz, maxsz, 0);
+ if (a->rs1 == 0) {
+ goto done;
+ }
+
+ t1 = tcg_temp_new_i64();
+ tcg_gen_extu_tl_i64(t1, cpu_gpr[a->rs1]);
+ vec_element_storei(s, a->rd, 0, t1);
+ tcg_temp_free_i64(t1);
+ done:
+ gen_set_label(over);
+ return true;
+ }
+ return false;
+}
diff --git a/target/riscv/internals.h b/target/riscv/internals.h
index f3cea478f7..37d33820ad 100644
--- a/target/riscv/internals.h
+++ b/target/riscv/internals.h
@@ -32,4 +32,10 @@ FIELD(VDATA, WD, 11, 1)
target_ulong fclass_h(uint64_t frs1);
target_ulong fclass_s(uint64_t frs1);
target_ulong fclass_d(uint64_t frs1);
+
+#define SEW8 0
+#define SEW16 1
+#define SEW32 2
+#define SEW64 3
+
#endif
--
2.23.0
- [PATCH v11 46/61] target/riscv: vector wideing integer reduction instructions, (continued)
- [PATCH v11 46/61] target/riscv: vector wideing integer reduction instructions, LIU Zhiwei, 2020/06/23
- [PATCH v11 47/61] target/riscv: vector single-width floating-point reduction instructions, LIU Zhiwei, 2020/06/23
- [PATCH v11 48/61] target/riscv: vector widening floating-point reduction instructions, LIU Zhiwei, 2020/06/23
- [PATCH v11 49/61] target/riscv: vector mask-register logical instructions, LIU Zhiwei, 2020/06/23
- [PATCH v11 50/61] target/riscv: vector mask population count vmpopc, LIU Zhiwei, 2020/06/23
- [PATCH v11 51/61] target/riscv: vmfirst find-first-set mask bit, LIU Zhiwei, 2020/06/23
- [PATCH v11 52/61] target/riscv: set-X-first mask bit, LIU Zhiwei, 2020/06/23
- [PATCH v11 53/61] target/riscv: vector iota instruction, LIU Zhiwei, 2020/06/23
- [PATCH v11 54/61] target/riscv: vector element index instruction, LIU Zhiwei, 2020/06/23
- [PATCH v11 55/61] target/riscv: integer extract instruction, LIU Zhiwei, 2020/06/23
- [PATCH v11 56/61] target/riscv: integer scalar move instruction,
LIU Zhiwei <=
- [PATCH v11 57/61] target/riscv: floating-point scalar move instructions, LIU Zhiwei, 2020/06/23
- [PATCH v11 58/61] target/riscv: vector slide instructions, LIU Zhiwei, 2020/06/23
- [PATCH v11 59/61] target/riscv: vector register gather instruction, LIU Zhiwei, 2020/06/23
- [PATCH v11 60/61] target/riscv: vector compress instruction, LIU Zhiwei, 2020/06/23
- [PATCH v11 61/61] target/riscv: configure and turn on vector extension from command line, LIU Zhiwei, 2020/06/23
- Re: [PATCH v11 00/61] target/riscv: support vector extension v0.7.1, no-reply, 2020/06/23
- Re: [PATCH v11 00/61] target/riscv: support vector extension v0.7.1, Alistair Francis, 2020/06/24