qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 6/7] monitor: "i": Add ARM specifics


From: Peter Crosthwaite
Subject: [Qemu-devel] [PATCH 6/7] monitor: "i": Add ARM specifics
Date: Mon, 4 May 2015 21:45:03 -0700

Add the ARM specific disassembly flags setup, so ARM can be correctly
disassembled from the monitor.

Signed-off-by: Peter Crosthwaite <address@hidden>
---
 monitor.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/monitor.c b/monitor.c
index d831d98..9d9f1e2 100644
--- a/monitor.c
+++ b/monitor.c
@@ -1217,6 +1217,17 @@ static void memory_dump(Monitor *mon, int count, int 
format, int wsize,
         int flags;
         flags = 0;
         env = mon_get_cpu();
+#ifdef TARGET_ARM
+        if (env->thumb) {
+            flags |= 1;
+        }
+        if (env->bswap_code) {
+            flags |= 2;
+        }
+        if (env->aarch64) {
+            flags |= 4;
+        }
+#endif
 #ifdef TARGET_I386
         if (wsize == 2) {
             flags = 1;
-- 
1.9.1




reply via email to

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