2016-10-24 10:35:53 +02:00
|
|
|
#include "qemu/osdep.h"
|
2019-07-09 17:20:52 +02:00
|
|
|
#include "hw/core/cpu.h"
|
2022-12-19 18:09:43 +01:00
|
|
|
#include "exec/replay-core.h"
|
2018-06-22 21:22:05 +02:00
|
|
|
|
2016-10-24 10:35:53 +02:00
|
|
|
void cpu_resume(CPUState *cpu)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-10-15 23:18:32 +02:00
|
|
|
void cpu_remove_sync(CPUState *cpu)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-10-24 10:35:53 +02:00
|
|
|
void qemu_init_vcpu(CPUState *cpu)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-09-15 22:55:33 +02:00
|
|
|
void cpu_exec_reset_hold(CPUState *cpu)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-10-24 10:35:53 +02:00
|
|
|
/* User mode emulation does not support record/replay yet. */
|
|
|
|
|
|
|
|
bool replay_exception(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool replay_has_exception(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool replay_interrupt(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool replay_has_interrupt(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|