[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 42/90] target/sparc: Move FLUSH, SAVE, RESTORE to decodetree
|
From: |
Richard Henderson |
|
Subject: |
[PATCH v2 42/90] target/sparc: Move FLUSH, SAVE, RESTORE to decodetree |
|
Date: |
Mon, 16 Oct 2023 23:11:56 -0700 |
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/sparc/insns.decode | 4 ++++
target/sparc/translate.c | 35 +++++++++++++++++++++++++----------
2 files changed, 29 insertions(+), 10 deletions(-)
diff --git a/target/sparc/insns.decode b/target/sparc/insns.decode
index 060ee79db0..9c4c493630 100644
--- a/target/sparc/insns.decode
+++ b/target/sparc/insns.decode
@@ -216,6 +216,10 @@ JMPL 10 ..... 111000 ..... . .............
@r_r_ri
RETT 10 00000 111001 ..... . ............. @n_r_ri
RETURN 10 00000 111001 ..... . ............. @n_r_ri
}
+NOP 10 00000 111011 ----- 0 00000000----- # FLUSH reg+reg
+NOP 10 00000 111011 ----- 1 ------------- # FLUSH reg+imm
+SAVE 10 ..... 111100 ..... . ............. @r_r_ri
+RESTORE 10 ..... 111101 ..... . ............. @r_r_ri
NCP 10 ----- 110110 ----- --------- ----- # v8 CPop1
NCP 10 ----- 110111 ----- --------- ----- # v8 CPop2
diff --git a/target/sparc/translate.c b/target/sparc/translate.c
index bf8d611942..5fc46d1b20 100644
--- a/target/sparc/translate.c
+++ b/target/sparc/translate.c
@@ -4138,6 +4138,11 @@ static bool do_saved_restored(DisasContext *dc, void
(*func)(TCGv_env))
TRANS(SAVED, 64, do_saved_restored, gen_helper_saved)
TRANS(RESTORED, 64, do_saved_restored, gen_helper_restored)
+static bool trans_NOP(DisasContext *dc, arg_NOP *a)
+{
+ return advance_pc(dc);
+}
+
static bool trans_NOP_v7(DisasContext *dc, arg_NOP_v7 *a)
{
/*
@@ -4526,6 +4531,24 @@ static bool do_return(DisasContext *dc, int rd, TCGv src)
TRANS(RETURN, 64, do_add_special, a, do_return)
+static bool do_save(DisasContext *dc, int rd, TCGv src)
+{
+ gen_helper_save(tcg_env);
+ gen_store_gpr(dc, rd, src);
+ return advance_pc(dc);
+}
+
+TRANS(SAVE, ALL, do_add_special, a, do_save)
+
+static bool do_restore(DisasContext *dc, int rd, TCGv src)
+{
+ gen_helper_restore(tcg_env);
+ gen_store_gpr(dc, rd, src);
+ return advance_pc(dc);
+}
+
+TRANS(RESTORE, ALL, do_add_special, a, do_restore)
+
#define CHECK_IU_FEATURE(dc, FEATURE) \
if (!((dc)->def->features & CPU_FEATURE_ ## FEATURE)) \
goto illegal_insn;
@@ -5341,18 +5364,10 @@ static void disas_sparc_legacy(DisasContext *dc,
unsigned int insn)
switch (xop) {
case 0x38: /* jmpl */
case 0x39: /* rett, V9 return */
- g_assert_not_reached(); /* in decode tree */
- case 0x3b: /* flush */
- /* nop */
- break;
+ case 0x3b: /* flush */
case 0x3c: /* save */
- gen_helper_save(tcg_env);
- gen_store_gpr(dc, rd, cpu_tmp0);
- break;
case 0x3d: /* restore */
- gen_helper_restore(tcg_env);
- gen_store_gpr(dc, rd, cpu_tmp0);
- break;
+ g_assert_not_reached(); /* in decode tree */
#if !defined(CONFIG_USER_ONLY) && defined(TARGET_SPARC64)
case 0x3e: /* V9 done/retry */
{
--
2.34.1
- [PATCH v2 30/90] target/sparc: Move ADDC to decodetree, (continued)
- [PATCH v2 30/90] target/sparc: Move ADDC to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 31/90] target/sparc: Move MULX to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 34/90] target/sparc: Move UDIVX, SDIVX to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 35/90] target/sparc: Move UDIV, SDIV to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 38/90] target/sparc: Move MOVcc, MOVR to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 39/90] target/sparc: Move POPC to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 33/90] target/sparc: Move SUBC to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 36/90] target/sparc: Move TADD, TSUB, MULS to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 37/90] target/sparc: Move SLL, SRL, SRA to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 40/90] target/sparc: Convert remaining v8 coproc insns to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 42/90] target/sparc: Move FLUSH, SAVE, RESTORE to decodetree,
Richard Henderson <=
- [PATCH v2 41/90] target/sparc: Move JMPL, RETT, RETURN to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 46/90] target/sparc: Split out ldst functions with asi pre-computed, Richard Henderson, 2023/10/17
- [PATCH v2 44/90] target/sparc: Split out resolve_asi, Richard Henderson, 2023/10/17
- [PATCH v2 43/90] target/sparc: Move DONE, RETRY to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 47/90] target/sparc: Use tcg_gen_qemu_{ld, st}_i128 for GET_ASI_DTWINX, Richard Henderson, 2023/10/17
- [PATCH v2 52/90] target/sparc: Move CASA, CASXA to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 54/90] target/sparc: Split out fp ldst functions with asi precomputed, Richard Henderson, 2023/10/17
- [PATCH v2 56/90] target/sparc: Move asi fp load/store to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 66/90] target/sparc: Move gen_ne_fop_FFF insns to decodetree, Richard Henderson, 2023/10/17
- [PATCH v2 62/90] target/sparc: Move BMASK to decodetree, Richard Henderson, 2023/10/17