qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 3/3] target-arm: explicitly decode SEVL instruction


From: Mans Rullgard
Subject: [Qemu-devel] [PATCH 3/3] target-arm: explicitly decode SEVL instruction
Date: Fri, 7 Jun 2013 13:06:26 +0100

The ARMv8 SEVL instruction is in the architectural hint space already
emulated as nop.  This makes the decoding of SEVL explicit for clarity.

Signed-off-by: Mans Rullgard <address@hidden>
---
 target-arm/translate.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/target-arm/translate.c b/target-arm/translate.c
index f529257..cfd148e 100644
--- a/target-arm/translate.c
+++ b/target-arm/translate.c
@@ -3501,6 +3501,7 @@ static void gen_nop_hint(DisasContext *s, int val)
         break;
     case 2: /* wfe */
     case 4: /* sev */
+    case 5: /* sevl */
         /* TODO: Implement SEV and WFE.  May help SMP performance.  */
     default: /* nop */
         break;
-- 
1.8.2.1




reply via email to

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