qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 07/20] target-mips: add microMIPS TLBINV, TLBINVF


From: Leon Alrae
Subject: [Qemu-devel] [PULL 07/20] target-mips: add microMIPS TLBINV, TLBINVF
Date: Fri, 26 Jun 2015 11:25:11 +0100

From: Yongbok Kim <address@hidden>

Add microMIPS TLBINV, TLBINVF

Signed-off-by: Yongbok Kim <address@hidden>
Reviewed-by: Aurelien Jarno <address@hidden>
Reviewed-by: Leon Alrae <address@hidden>
Signed-off-by: Leon Alrae <address@hidden>
---
 target-mips/translate.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/target-mips/translate.c b/target-mips/translate.c
index 02c2523..abff2ab 100644
--- a/target-mips/translate.c
+++ b/target-mips/translate.c
@@ -12243,6 +12243,8 @@ enum {
     TLBR = 0x1,
     TLBWI = 0x2,
     TLBWR = 0x3,
+    TLBINV = 0x4,
+    TLBINVF = 0x5,
     WAIT = 0x9,
     IRET = 0xd,
     DERET = 0xe,
@@ -13027,6 +13029,12 @@ static void gen_pool32axf (CPUMIPSState *env, 
DisasContext *ctx, int rt, int rs)
         case TLBWR:
             mips32_op = OPC_TLBWR;
             goto do_cp0;
+        case TLBINV:
+            mips32_op = OPC_TLBINV;
+            goto do_cp0;
+        case TLBINVF:
+            mips32_op = OPC_TLBINVF;
+            goto do_cp0;
         case WAIT:
             mips32_op = OPC_WAIT;
             goto do_cp0;
-- 
2.1.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]