[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 53/90] target/sparc: Move PREFETCH, PREFETCHA to decodetree
|
From: |
Richard Henderson |
|
Subject: |
[PATCH v3 53/90] target/sparc: Move PREFETCH, PREFETCHA to decodetree |
|
Date: |
Fri, 20 Oct 2023 22:31:21 -0700 |
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/sparc/insns.decode | 8 ++++++--
target/sparc/translate.c | 14 ++++++++++----
2 files changed, 16 insertions(+), 6 deletions(-)
diff --git a/target/sparc/insns.decode b/target/sparc/insns.decode
index f4c55db313..96c6e19fc9 100644
--- a/target/sparc/insns.decode
+++ b/target/sparc/insns.decode
@@ -231,6 +231,9 @@ RESTORE 10 ..... 111101 ..... . .............
@r_r_ri
DONE 10 00000 111110 00000 0 0000000000000
RETRY 10 00001 111110 00000 0 0000000000000
+NCP 10 ----- 110110 ----- --------- ----- # v8 CPop1
+NCP 10 ----- 110111 ----- --------- ----- # v8 CPop2
+
##
## Major Opcode 11 -- load and store instructions
##
@@ -299,8 +302,9 @@ CASA 11 ..... 111100 ..... . .............
@casa_imm
CASXA 11 ..... 111110 ..... . ............. @r_r_r_asi
CASXA 11 ..... 111110 ..... . ............. @casa_imm
-NCP 10 ----- 110110 ----- --------- ----- # v8 CPop1
-NCP 10 ----- 110111 ----- --------- ----- # v8 CPop2
+NOP_v9 11 ----- 101101 ----- 0 00000000 ----- # PREFETCH
+NOP_v9 11 ----- 101101 ----- 1 ------------- # PREFETCH
+NOP_v9 11 ----- 111101 ----- - ------------- # PREFETCHA
NCP 11 ----- 110000 ----- --------- ----- # v8 LDC
NCP 11 ----- 110001 ----- --------- ----- # v8 LDCSR
diff --git a/target/sparc/translate.c b/target/sparc/translate.c
index e1749ec12c..9053cafd47 100644
--- a/target/sparc/translate.c
+++ b/target/sparc/translate.c
@@ -4135,6 +4135,14 @@ static bool trans_NOP_v7(DisasContext *dc, arg_NOP_v7 *a)
return false;
}
+static bool trans_NOP_v9(DisasContext *dc, arg_NOP_v9 *a)
+{
+ if (avail_64(dc)) {
+ return advance_pc(dc);
+ }
+ return false;
+}
+
static bool do_arith(DisasContext *dc, arg_r_r_ri_cc *a, int cc_op,
void (*func)(TCGv, TCGv, TCGv),
void (*funci)(TCGv, TCGv, target_long))
@@ -5568,10 +5576,10 @@ static void disas_sparc_legacy(DisasContext *dc,
unsigned int insn)
case 0x0b: /* V9 ldx */
case 0x18: /* V9 ldswa */
case 0x1b: /* V9 ldxa */
+ case 0x2d: /* V9 prefetch */
+ case 0x3d: /* V9 prefetcha */
goto illegal_insn; /* in decodetree */
#ifdef TARGET_SPARC64
- case 0x2d: /* V9 prefetch, no effect */
- goto skip_move;
case 0x30: /* V9 ldfa */
if (gen_trap_ifnofpu(dc)) {
goto jmp_insn;
@@ -5586,8 +5594,6 @@ static void disas_sparc_legacy(DisasContext *dc, unsigned
int insn)
gen_ldf_asi(dc, cpu_addr, insn, 8, DFPREG(rd));
gen_update_fprs_dirty(dc, DFPREG(rd));
goto skip_move;
- case 0x3d: /* V9 prefetcha, no effect */
- goto skip_move;
case 0x32: /* V9 ldqfa */
CHECK_FPU_FEATURE(dc, FLOAT128);
if (gen_trap_ifnofpu(dc)) {
--
2.34.1
- [PATCH v3 59/90] target/sparc: Move EDGE* to decodetree, (continued)
- [PATCH v3 59/90] target/sparc: Move EDGE* to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 60/90] target/sparc: Move ARRAY* to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 52/90] target/sparc: Move CASA, CASXA to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 56/90] target/sparc: Move asi fp load/store to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 64/90] target/sparc: Move FMOVD, FNEGD, FABSD, FSRC*D, FNOT*D to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 44/90] target/sparc: Split out resolve_asi, Richard Henderson, 2023/10/21
- [PATCH v3 45/90] target/sparc: Drop ifdef around get_asi and friends, Richard Henderson, 2023/10/21
- [PATCH v3 47/90] target/sparc: Use tcg_gen_qemu_{ld, st}_i128 for GET_ASI_DTWINX, Richard Henderson, 2023/10/21
- [PATCH v3 49/90] target/sparc: Move asi integer load/store to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 50/90] target/sparc: Move LDSTUB, LDSTUBA to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 53/90] target/sparc: Move PREFETCH, PREFETCHA to decodetree,
Richard Henderson <=
- [PATCH v3 55/90] target/sparc: Move simple fp load/store to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 57/90] target/sparc: Move LDFSR, STFSR to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 58/90] target/sparc: Merge LDFSR, LDXFSR implementations, Richard Henderson, 2023/10/21
- [PATCH v3 61/90] target/sparc: Move ADDRALIGN* to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 65/90] target/sparc: Use tcg_gen_vec_{add,sub}*, Richard Henderson, 2023/10/21
- [PATCH v3 62/90] target/sparc: Move BMASK to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 71/90] target/sparc: Move gen_fop_DD insns to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 73/90] target/sparc: Move gen_fop_FFF insns to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 72/90] target/sparc: Move FSQRTq to decodetree, Richard Henderson, 2023/10/21
- [PATCH v3 75/90] target/sparc: Move gen_fop_QQQ insns to decodetree, Richard Henderson, 2023/10/21