unicorn/qemu/target-m68k/unicorn.c

105 lines
2.9 KiB
C
Raw Normal View History

2015-08-21 09:04:50 +02:00
/* Unicorn Emulator Engine */
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2015 */
#include "qemu/osdep.h"
#include "cpu.h"
2015-08-21 09:04:50 +02:00
#include "hw/boards.h"
#include "hw/m68k/m68k.h"
#include "sysemu/cpus.h"
#include "unicorn.h"
#include "unicorn_common.h"
#include "uc_priv.h"
2015-08-21 09:04:50 +02:00
const int M68K_REGS_STORAGE_SIZE = offsetof(CPUM68KState, tlb_table);
2015-08-21 09:04:50 +02:00
static void m68k_set_pc(struct uc_struct *uc, uint64_t address)
{
((CPUM68KState *)uc->current_cpu->env_ptr)->pc = address;
}
2016-10-03 21:47:03 +02:00
void m68k_release(void* ctx);
void m68k_release(void* ctx)
{
TCGContext *tcg_ctx = ctx;;
2016-10-03 21:47:03 +02:00
release_common(ctx);
g_free(tcg_ctx->tb_ctx.tbs);
2016-10-03 21:47:03 +02:00
}
2015-08-26 13:11:49 +02:00
void m68k_reg_reset(struct uc_struct *uc)
2015-08-21 09:04:50 +02:00
{
2016-09-23 16:38:21 +02:00
CPUArchState *env = uc->cpu->env_ptr;
2015-08-21 09:04:50 +02:00
memset(env->aregs, 0, sizeof(env->aregs));
memset(env->dregs, 0, sizeof(env->dregs));
env->pc = 0;
}
2016-04-04 17:25:30 +02:00
int m68k_reg_read(struct uc_struct *uc, unsigned int *regs, void **vals, int count)
2015-08-21 09:04:50 +02:00
{
2016-09-23 16:38:21 +02:00
CPUState *mycpu = uc->cpu;
2016-04-04 17:25:30 +02:00
int i;
2015-08-21 09:04:50 +02:00
2016-04-04 17:25:30 +02:00
for (i = 0; i < count; i++) {
unsigned int regid = regs[i];
void *value = vals[i];
if (regid >= UC_M68K_REG_A0 && regid <= UC_M68K_REG_A7)
*(int32_t *)value = M68K_CPU(uc, mycpu)->env.aregs[regid - UC_M68K_REG_A0];
else if (regid >= UC_M68K_REG_D0 && regid <= UC_M68K_REG_D7)
*(int32_t *)value = M68K_CPU(uc, mycpu)->env.dregs[regid - UC_M68K_REG_D0];
else {
switch(regid) {
default: break;
case UC_M68K_REG_PC:
*(int32_t *)value = M68K_CPU(uc, mycpu)->env.pc;
break;
}
2015-08-21 09:04:50 +02:00
}
}
return 0;
}
2016-04-04 17:25:30 +02:00
int m68k_reg_write(struct uc_struct *uc, unsigned int *regs, void *const *vals, int count)
2015-08-21 09:04:50 +02:00
{
2016-09-23 16:38:21 +02:00
CPUState *mycpu = uc->cpu;
2016-04-04 17:25:30 +02:00
int i;
2015-08-21 09:04:50 +02:00
2016-04-04 17:25:30 +02:00
for (i = 0; i < count; i++) {
unsigned int regid = regs[i];
const void *value = vals[i];
if (regid >= UC_M68K_REG_A0 && regid <= UC_M68K_REG_A7)
M68K_CPU(uc, mycpu)->env.aregs[regid - UC_M68K_REG_A0] = *(uint32_t *)value;
else if (regid >= UC_M68K_REG_D0 && regid <= UC_M68K_REG_D7)
M68K_CPU(uc, mycpu)->env.dregs[regid - UC_M68K_REG_D0] = *(uint32_t *)value;
else {
switch(regid) {
default: break;
case UC_M68K_REG_PC:
M68K_CPU(uc, mycpu)->env.pc = *(uint32_t *)value;
// force to quit execution and flush TB
uc->quit_request = true;
uc_emu_stop(uc);
break;
}
2015-08-21 09:04:50 +02:00
}
}
return 0;
}
DEFAULT_VISIBILITY
2015-08-21 09:04:50 +02:00
void m68k_uc_init(struct uc_struct* uc)
{
register_accel_types(uc);
m68k_cpu_register_types(uc);
dummy_m68k_machine_init(uc);
2016-10-03 21:47:03 +02:00
uc->release = m68k_release;
2015-08-21 09:04:50 +02:00
uc->reg_read = m68k_reg_read;
uc->reg_write = m68k_reg_write;
uc->reg_reset = m68k_reg_reset;
uc->set_pc = m68k_set_pc;
uc_common_init(uc);
}