unicorn/qemu/target-mips/unicorn.c

145 lines
3.7 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 "hw/boards.h"
#include "hw/mips/mips.h"
#include "sysemu/cpus.h"
#include "unicorn.h"
#include "cpu.h"
#include "unicorn_common.h"
#include "uc_priv.h"
2015-08-21 09:04:50 +02:00
static uint64_t mips_mem_redirect(uint64_t address)
{
// kseg0 range masks off high address bit
if (address >= 0x80000000 && address <= 0x9fffffff)
return address & 0x7fffffff;
// kseg1 range masks off top 3 address bits
if (address >= 0xa0000000 && address <= 0xbfffffff) {
return address & 0x1fffffff;
}
// no redirect
return address;
}
2015-08-21 09:04:50 +02:00
static void mips_set_pc(struct uc_struct *uc, uint64_t address)
{
((CPUMIPSState *)uc->current_cpu->env_ptr)->active_tc.PC = address;
}
2016-07-10 03:16:00 +02:00
void mips_release(void *ctx);
void mips_release(void *ctx)
{
int i;
TCGContext *tcg_ctx = (TCGContext *) ctx;
release_common(ctx);
MIPSCPU* cpu = MIPS_CPU(tcg_ctx->uc, tcg_ctx->uc->cpu);
g_free(cpu->env.tlb);
g_free(cpu->env.mvp);
for (i = 0; i < MIPS_DSP_ACC; i++) {
g_free(tcg_ctx->cpu_HI[i]);
g_free(tcg_ctx->cpu_LO[i]);
}
for (i = 0; i < 32; i++) {
g_free(tcg_ctx->cpu_gpr[i]);
}
g_free(tcg_ctx->cpu_PC);
g_free(tcg_ctx->btarget);
g_free(tcg_ctx->bcond);
g_free(tcg_ctx->cpu_dspctrl);
g_free(tcg_ctx->tb_ctx.tbs);
}
2015-08-26 12:34:47 +02:00
void mips_reg_reset(struct uc_struct *uc)
2015-08-21 09:04:50 +02:00
{
2015-08-26 12:34:47 +02:00
(void)uc;
CPUArchState *env = first_cpu->env_ptr;
2015-08-21 09:04:50 +02:00
memset(env->active_tc.gpr, 0, sizeof(env->active_tc.gpr));
2015-08-26 12:34:47 +02:00
env->active_tc.PC = 0;
}
2015-08-21 09:04:50 +02:00
2016-04-04 17:25:30 +02:00
int mips_reg_read(struct uc_struct *uc, unsigned int *regs, void **vals, int count)
2015-08-21 09:04:50 +02:00
{
CPUState *mycpu = first_cpu;
2016-04-04 17:25:30 +02:00
int i;
for (i = 0; i < count; i++) {
unsigned int regid = regs[i];
void *value = vals[i];
if (regid >= UC_MIPS_REG_0 && regid <= UC_MIPS_REG_31)
*(int32_t *)value = MIPS_CPU(uc, mycpu)->env.active_tc.gpr[regid - UC_MIPS_REG_0];
else {
switch(regid) {
default: break;
case UC_MIPS_REG_PC:
*(int32_t *)value = MIPS_CPU(uc, mycpu)->env.active_tc.PC;
break;
}
2015-08-21 09:04:50 +02:00
}
}
return 0;
}
2016-04-04 17:25:30 +02:00
int mips_reg_write(struct uc_struct *uc, unsigned int *regs, void *const *vals, int count)
2015-08-21 09:04:50 +02:00
{
CPUState *mycpu = first_cpu;
2016-04-04 17:25:30 +02:00
int i;
for (i = 0; i < count; i++) {
unsigned int regid = regs[i];
const void *value = vals[i];
if (regid >= UC_MIPS_REG_0 && regid <= UC_MIPS_REG_31)
MIPS_CPU(uc, mycpu)->env.active_tc.gpr[regid - UC_MIPS_REG_0] = *(uint32_t *)value;
else {
switch(regid) {
default: break;
case UC_MIPS_REG_PC:
MIPS_CPU(uc, mycpu)->env.active_tc.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;
}
__attribute__ ((visibility ("default")))
#ifdef TARGET_MIPS64
#ifdef TARGET_WORDS_BIGENDIAN
void mips64_uc_init(struct uc_struct* uc)
#else
void mips64el_uc_init(struct uc_struct* uc)
#endif
#else // if TARGET_MIPS
#ifdef TARGET_WORDS_BIGENDIAN
void mips_uc_init(struct uc_struct* uc)
#else
void mipsel_uc_init(struct uc_struct* uc)
#endif
#endif
{
register_accel_types(uc);
mips_cpu_register_types(uc);
mips_machine_init(uc);
uc->reg_read = mips_reg_read;
uc->reg_write = mips_reg_write;
uc->reg_reset = mips_reg_reset;
2016-07-10 03:16:00 +02:00
uc->release = mips_release;
2015-08-21 09:04:50 +02:00
uc->set_pc = mips_set_pc;
uc->mem_redirect = mips_mem_redirect;
2015-08-21 09:04:50 +02:00
uc_common_init(uc);
}