mirror of https://github.com/xqemu/xqemu.git
cputlb: tweak qemu_ram_addr_from_host_nofail reporting
This moves the helper function closer to where it is called and updates the error message to report via error_report instead of the deprecated fprintf. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
f0aff0f124
commit
857baec1d9
24
cputlb.c
24
cputlb.c
|
@ -246,18 +246,6 @@ void tlb_reset_dirty_range(CPUTLBEntry *tlb_entry, uintptr_t start,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline ram_addr_t qemu_ram_addr_from_host_nofail(void *ptr)
|
|
||||||
{
|
|
||||||
ram_addr_t ram_addr;
|
|
||||||
|
|
||||||
ram_addr = qemu_ram_addr_from_host(ptr);
|
|
||||||
if (ram_addr == RAM_ADDR_INVALID) {
|
|
||||||
fprintf(stderr, "Bad ram pointer %p\n", ptr);
|
|
||||||
abort();
|
|
||||||
}
|
|
||||||
return ram_addr;
|
|
||||||
}
|
|
||||||
|
|
||||||
void tlb_reset_dirty(CPUState *cpu, ram_addr_t start1, ram_addr_t length)
|
void tlb_reset_dirty(CPUState *cpu, ram_addr_t start1, ram_addr_t length)
|
||||||
{
|
{
|
||||||
CPUArchState *env;
|
CPUArchState *env;
|
||||||
|
@ -469,6 +457,18 @@ static void report_bad_exec(CPUState *cpu, target_ulong addr)
|
||||||
log_cpu_state_mask(LOG_GUEST_ERROR, cpu, CPU_DUMP_FPU | CPU_DUMP_CCOP);
|
log_cpu_state_mask(LOG_GUEST_ERROR, cpu, CPU_DUMP_FPU | CPU_DUMP_CCOP);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline ram_addr_t qemu_ram_addr_from_host_nofail(void *ptr)
|
||||||
|
{
|
||||||
|
ram_addr_t ram_addr;
|
||||||
|
|
||||||
|
ram_addr = qemu_ram_addr_from_host(ptr);
|
||||||
|
if (ram_addr == RAM_ADDR_INVALID) {
|
||||||
|
error_report("Bad ram pointer %p", ptr);
|
||||||
|
abort();
|
||||||
|
}
|
||||||
|
return ram_addr;
|
||||||
|
}
|
||||||
|
|
||||||
/* NOTE: this function can trigger an exception */
|
/* NOTE: this function can trigger an exception */
|
||||||
/* NOTE2: the returned address is not exactly the physical address: it
|
/* NOTE2: the returned address is not exactly the physical address: it
|
||||||
* is actually a ram_addr_t (in system mode; the user mode emulation
|
* is actually a ram_addr_t (in system mode; the user mode emulation
|
||||||
|
|
Loading…
Reference in New Issue