summaryrefslogtreecommitdiffstats
path: root/softmmu_template.h
diff options
context:
space:
mode:
authoraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2008-11-18 20:09:43 +0000
committeraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2008-11-18 20:09:43 +0000
commitdb8886d3fd83361fb376a387d1413d35404c8421 (patch)
tree9b71deaa405a3d3b1f54c58f3c76a0d0b2603a5c /softmmu_template.h
parenta1d1bb3101db1fea4ff47b74de15208971f8d64e (diff)
downloadhqemu-db8886d3fd83361fb376a387d1413d35404c8421.zip
hqemu-db8886d3fd83361fb376a387d1413d35404c8421.tar.gz
Set mem_io_vaddr on io_read (Jan Kiszka)
Analogously to write accesses, we have to save the memory address also on read accesses in order to support read watchpoints. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5739 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'softmmu_template.h')
-rw-r--r--softmmu_template.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/softmmu_template.h b/softmmu_template.h
index 98dd378..cf91804 100644
--- a/softmmu_template.h
+++ b/softmmu_template.h
@@ -64,6 +64,7 @@ static inline DATA_TYPE glue(io_read, SUFFIX)(target_phys_addr_t physaddr,
cpu_io_recompile(env, retaddr);
}
+ env->mem_io_vaddr = addr;
#if SHIFT <= 2
res = io_mem_read[index][SHIFT](io_mem_opaque[index], physaddr);
#else
OpenPOWER on IntegriCloud