summaryrefslogtreecommitdiff
path: root/monitor.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2006-04-12 21:07:07 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2006-04-12 21:07:07 +0000
commit6a15fd12ca1bccb72335132686db7adef5937a0a (patch)
treef30e89c9a7a4f971c418e3ac0464b51009398280 /monitor.c
parent3e749fe1f75f4b84ee6d8141b65acde9215484b7 (diff)
downloadqemu-6a15fd12ca1bccb72335132686db7adef5937a0a.tar.gz
64 bit disassembly
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1809 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'monitor.c')
-rw-r--r--monitor.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/monitor.c b/monitor.c
index 3078b1d4bc..3c0fd916fa 100644
--- a/monitor.c
+++ b/monitor.c
@@ -457,10 +457,18 @@ static void memory_dump(int count, int format, int wsize,
} else if (wsize == 4) {
flags = 0;
} else {
- /* as default we use the current CS size */
+ /* as default we use the current CS size */
flags = 0;
- if (env && !(env->segs[R_CS].flags & DESC_B_MASK))
- flags = 1;
+ if (env) {
+#ifdef TARGET_X86_64
+ if ((env->efer & MSR_EFER_LMA) &&
+ (env->segs[R_CS].flags & DESC_L_MASK))
+ flags = 2;
+ else
+#endif
+ if (!(env->segs[R_CS].flags & DESC_B_MASK))
+ flags = 1;
+ }
}
#endif
monitor_disas(env, addr, count, is_physical, flags);
@@ -1549,6 +1557,7 @@ static target_long expr_unary(void)
n = 0;
break;
default:
+ /* XXX: 64 bit version */
n = strtoul(pch, &p, 0);
if (pch == p) {
expr_error("invalid char in expression");