From a6b025d37d13fffe6f2bc0b5fc8d88503348eeb7 Mon Sep 17 00:00:00 2001 From: bellard Date: Sat, 24 Jan 2004 15:18:16 +0000 Subject: added cpu_get_phys_page_debug() git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@579 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-ppc/helper.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'target-ppc/helper.c') diff --git a/target-ppc/helper.c b/target-ppc/helper.c index 1520d6c821..50c480e2b5 100644 --- a/target-ppc/helper.c +++ b/target-ppc/helper.c @@ -414,6 +414,22 @@ int get_physical_address (CPUState *env, uint32_t *physical, int *prot, return ret; } +#if defined(CONFIG_USER_ONLY) +target_ulong cpu_get_phys_page_debug(CPUState *env, target_ulong addr) +{ + return addr; +} +#else +target_ulong cpu_get_phys_page_debug(CPUState *env, target_ulong addr) +{ + uint32_t phys_addr; + int prot; + + if (get_physical_address(env, &phys_addr, &prot, addr, 0, ACCESS_INT) != 0) + return -1; + return phys_addr; +} +#endif #if !defined(CONFIG_USER_ONLY) -- cgit v1.2.1