mirror of https://github.com/xemu-project/xemu.git
target/xtensa: drop dump_state helper
Drop unused helper dump_state from op_helper.c Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
This commit is contained in:
parent
8d918d656a
commit
d9908e037e
|
@ -15,7 +15,6 @@ DEF_HELPER_2(movsp, void, env, i32)
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
DEF_HELPER_1(simcall, void, env)
|
DEF_HELPER_1(simcall, void, env)
|
||||||
#endif
|
#endif
|
||||||
DEF_HELPER_1(dump_state, void, env)
|
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
DEF_HELPER_3(waiti, void, env, i32, i32)
|
DEF_HELPER_3(waiti, void, env, i32, i32)
|
||||||
|
|
|
@ -93,17 +93,6 @@ void xtensa_cpu_do_transaction_failed(CPUState *cs, hwaddr physaddr, vaddr addr,
|
||||||
addr);
|
addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void HELPER(dump_state)(CPUXtensaState *env)
|
|
||||||
{
|
|
||||||
XtensaCPU *cpu = xtensa_env_get_cpu(env);
|
|
||||||
|
|
||||||
cpu_dump_state(CPU(cpu), stderr, fprintf, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
|
||||||
|
|
||||||
void HELPER(update_ccount)(CPUXtensaState *env)
|
void HELPER(update_ccount)(CPUXtensaState *env)
|
||||||
{
|
{
|
||||||
uint64_t now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
|
uint64_t now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
|
||||||
|
|
Loading…
Reference in New Issue