mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-03-23 05:25:11 +00:00
target/m68k: Convert to TranslatorOps
Backports commit 11ab74b01e0a8ea4973eed89c6b90fa6e4fb9fb6 from qemu
This commit is contained in:
parent
f4432cbca7
commit
c42ca54685
|
@ -6298,137 +6298,128 @@ static void disas_m68k_insn(CPUM68KState * env, DisasContext *s)
|
|||
do_release(s);
|
||||
}
|
||||
|
||||
/* generate intermediate code for basic block 'tb'. */
|
||||
void gen_intermediate_code(CPUState *cs, TranslationBlock *tb)
|
||||
static void m68k_tr_init_disas_context(DisasContextBase *dcbase, CPUState *cpu)
|
||||
{
|
||||
CPUM68KState *env = cs->env_ptr;
|
||||
DisasContext dc1, *dc = &dc1;
|
||||
target_ulong pc_start;
|
||||
int pc_offset;
|
||||
int num_insns;
|
||||
int max_insns;
|
||||
TCGContext *tcg_ctx = env->uc->tcg_ctx;
|
||||
bool block_full = false;
|
||||
|
||||
/* generate intermediate code */
|
||||
pc_start = tb->pc;
|
||||
|
||||
dc->base.tb = tb;
|
||||
dc->uc = env->uc;
|
||||
DisasContext *dc = container_of(dcbase, DisasContext, base);
|
||||
CPUM68KState *env = cpu->env_ptr;
|
||||
|
||||
dc->env = env;
|
||||
dc->base.is_jmp = DISAS_NEXT;
|
||||
dc->pc = pc_start;
|
||||
dc->pc = dc->base.pc_first;
|
||||
dc->cc_op = CC_OP_DYNAMIC;
|
||||
dc->cc_op_synced = 1;
|
||||
dc->base.singlestep_enabled = cs->singlestep_enabled;
|
||||
dc->done_mac = 0;
|
||||
dc->writeback_mask = 0;
|
||||
num_insns = 0;
|
||||
max_insns = tb->cflags & CF_COUNT_MASK;
|
||||
if (max_insns == 0) {
|
||||
max_insns = CF_COUNT_MASK;
|
||||
}
|
||||
if (max_insns > TCG_MAX_INSNS) {
|
||||
max_insns = TCG_MAX_INSNS;
|
||||
}
|
||||
|
||||
// Unicorn: early check to see if the address of this block is the until address
|
||||
if (tb->pc == env->uc->addr_end) {
|
||||
gen_tb_start(tcg_ctx, tb);
|
||||
gen_exception(dc, dc->pc, EXCP_HLT);
|
||||
goto done_generating;
|
||||
}
|
||||
dc->uc = env->uc;
|
||||
|
||||
// Unicorn: FIXME: Update to work with new TCG API
|
||||
// Unicorn: trace this block on request
|
||||
// Only hook this block if it is not broken from previous translation due to
|
||||
// full translation cache
|
||||
if (!env->uc->block_full && HOOK_EXISTS_BOUNDED(env->uc, UC_HOOK_BLOCK, pc_start)) {
|
||||
if (!env->uc->block_full && HOOK_EXISTS_BOUNDED(env->uc, UC_HOOK_BLOCK, dc->base.pc_first)) {
|
||||
#if 0
|
||||
// save block address to see if we need to patch block size later
|
||||
env->uc->block_addr = pc_start;
|
||||
env->uc->size_arg = tcg_ctx->gen_op_buf[tcg_ctx->gen_op_buf[0].prev].args;
|
||||
gen_uc_tracecode(tcg_ctx, 0xf8f8f8f8, UC_HOOK_BLOCK_IDX, env->uc, pc_start);
|
||||
gen_uc_tracecode(tcg_ctx, 0xf8f8f8f8, UC_HOOK_BLOCK_IDX, env->uc, dc->base.pc_first);
|
||||
#endif
|
||||
} else {
|
||||
env->uc->size_arg = -1;
|
||||
}
|
||||
|
||||
init_release_array(dc);
|
||||
}
|
||||
|
||||
gen_tb_start(tcg_ctx, tb);
|
||||
do {
|
||||
pc_offset = dc->pc - pc_start;
|
||||
tcg_gen_insn_start(tcg_ctx, dc->pc, dc->cc_op);
|
||||
num_insns++;
|
||||
static void m68k_tr_tb_start(DisasContextBase *dcbase, CPUState *cpu)
|
||||
{
|
||||
}
|
||||
|
||||
if (unlikely(cpu_breakpoint_test(cs, dc->pc, BP_ANY))) {
|
||||
gen_exception(dc, dc->pc, EXCP_DEBUG);
|
||||
/* The address covered by the breakpoint must be included in
|
||||
[tb->pc, tb->pc + tb->size) in order to for it to be
|
||||
properly cleared -- thus we increment the PC here so that
|
||||
the logic setting tb->size below does the right thing. */
|
||||
dc->pc += 2;
|
||||
break;
|
||||
}
|
||||
static void m68k_tr_insn_start(DisasContextBase *dcbase, CPUState *cpu)
|
||||
{
|
||||
DisasContext *dc = container_of(dcbase, DisasContext, base);
|
||||
tcg_gen_insn_start(cpu->uc->tcg_ctx, dc->base.pc_next, dc->cc_op);
|
||||
}
|
||||
|
||||
// UNICORN: Commented out
|
||||
//if (num_insns == max_insns && (tb->cflags & CF_LAST_IO)) {
|
||||
// gen_io_start();
|
||||
//}
|
||||
static bool m68k_tr_breakpoint_check(DisasContextBase *dcbase, CPUState *cpu,
|
||||
const CPUBreakpoint *bp)
|
||||
{
|
||||
DisasContext *dc = container_of(dcbase, DisasContext, base);
|
||||
|
||||
dc->base.pc_next = dc->pc;
|
||||
disas_m68k_insn(env, dc);
|
||||
} while (!dc->base.is_jmp && !tcg_op_buf_full(tcg_ctx) &&
|
||||
!cs->singlestep_enabled &&
|
||||
(pc_offset) < (TARGET_PAGE_SIZE - 32) &&
|
||||
num_insns < max_insns);
|
||||
gen_exception(dc, dc->base.pc_next, EXCP_DEBUG);
|
||||
/* The address covered by the breakpoint must be included in
|
||||
[tb->pc, tb->pc + tb->size) in order to for it to be
|
||||
properly cleared -- thus we increment the PC here so that
|
||||
the logic setting tb->size below does the right thing. */
|
||||
dc->base.pc_next += 2;
|
||||
|
||||
/* if too long translation, save this info */
|
||||
if (tcg_op_buf_full(tcg_ctx) || num_insns >= max_insns)
|
||||
block_full = true;
|
||||
return true;
|
||||
}
|
||||
|
||||
// UNICORN: Commented out
|
||||
//if (tb->cflags & CF_LAST_IO) {
|
||||
// gen_io_end();
|
||||
//}
|
||||
if (unlikely(cs->singlestep_enabled)) {
|
||||
/* Make sure the pc is updated, and raise a debug exception. */
|
||||
if (!dc->base.is_jmp) {
|
||||
update_cc_op(dc);
|
||||
tcg_gen_movi_i32(tcg_ctx, tcg_ctx->QREG_PC, dc->pc);
|
||||
}
|
||||
static void m68k_tr_translate_insn(DisasContextBase *dcbase, CPUState *cpu)
|
||||
{
|
||||
DisasContext *dc = container_of(dcbase, DisasContext, base);
|
||||
|
||||
disas_m68k_insn(cpu->env_ptr, dc);
|
||||
dc->base.pc_next = dc->pc;
|
||||
|
||||
if (dc->base.is_jmp == DISAS_NEXT
|
||||
&& dc->pc - dc->base.pc_first >= TARGET_PAGE_SIZE - 32) {
|
||||
dc->base.is_jmp = DISAS_TOO_MANY;
|
||||
}
|
||||
}
|
||||
|
||||
static void m68k_tr_tb_stop(DisasContextBase *dcbase, CPUState *cpu)
|
||||
{
|
||||
DisasContext *dc = container_of(dcbase, DisasContext, base);
|
||||
TCGContext *tcg_ctx = dc->uc->tcg_ctx;
|
||||
|
||||
if (dc->base.is_jmp == DISAS_NORETURN) {
|
||||
return;
|
||||
}
|
||||
if (dc->base.singlestep_enabled) {
|
||||
gen_helper_raise_exception(tcg_ctx, tcg_ctx->cpu_env, tcg_const_i32(tcg_ctx, EXCP_DEBUG));
|
||||
} else {
|
||||
switch(dc->base.is_jmp) {
|
||||
case DISAS_NEXT:
|
||||
update_cc_op(dc);
|
||||
gen_jmp_tb(dc, 0, dc->pc);
|
||||
break;
|
||||
case DISAS_JUMP:
|
||||
/* We updated CC_OP and PC in gen_jmp/gen_jmp_im. */
|
||||
tcg_gen_lookup_and_goto_ptr(tcg_ctx);
|
||||
break;
|
||||
default:
|
||||
case DISAS_EXIT:
|
||||
/* We updated CC_OP and PC in gen_exit_tb, but also modified
|
||||
other state that may require returning to the main loop. */
|
||||
tcg_gen_exit_tb(tcg_ctx, NULL, 0);
|
||||
break;
|
||||
case DISAS_NORETURN:
|
||||
/* nothing more to generate */
|
||||
break;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
done_generating:
|
||||
gen_tb_end(tcg_ctx, tb, num_insns);
|
||||
switch (dc->base.is_jmp) {
|
||||
case DISAS_TOO_MANY:
|
||||
update_cc_op(dc);
|
||||
gen_jmp_tb(dc, 0, dc->pc);
|
||||
break;
|
||||
case DISAS_JUMP:
|
||||
/* We updated CC_OP and PC in gen_jmp/gen_jmp_im. */
|
||||
tcg_gen_lookup_and_goto_ptr(tcg_ctx);
|
||||
break;
|
||||
case DISAS_EXIT:
|
||||
/* We updated CC_OP and PC in gen_exit_tb, but also modified
|
||||
other state that may require returning to the main loop. */
|
||||
tcg_gen_exit_tb(tcg_ctx, NULL, 0);
|
||||
break;
|
||||
default:
|
||||
g_assert_not_reached();
|
||||
}
|
||||
}
|
||||
|
||||
tb->size = dc->pc - pc_start;
|
||||
tb->icount = num_insns;
|
||||
static void m68k_tr_disas_log(const DisasContextBase *dcbase, CPUState *cpu)
|
||||
{
|
||||
// Unicorn: commented out
|
||||
//qemu_log("IN: %s\n", lookup_symbol(dcbase->pc_first));
|
||||
//log_target_disas(cpu, dcbase->pc_first, dcbase->tb->size);
|
||||
}
|
||||
|
||||
env->uc->block_full = block_full;
|
||||
static const TranslatorOps m68k_tr_ops = {
|
||||
m68k_tr_init_disas_context,
|
||||
m68k_tr_tb_start,
|
||||
m68k_tr_insn_start,
|
||||
m68k_tr_breakpoint_check,
|
||||
m68k_tr_translate_insn,
|
||||
m68k_tr_tb_stop,
|
||||
m68k_tr_disas_log,
|
||||
};
|
||||
|
||||
void gen_intermediate_code(CPUState *cpu, TranslationBlock *tb)
|
||||
{
|
||||
DisasContext dc;
|
||||
translator_loop(&m68k_tr_ops, &dc.base, cpu, tb);
|
||||
}
|
||||
|
||||
void restore_state_to_opc(CPUM68KState *env, TranslationBlock *tb,
|
||||
|
|
Loading…
Reference in a new issue