target/s390x: convert to TranslatorOps

Note: I looked into dropping dc->do_debug. However, I don't see
an easy way to do it given that TOO_MANY is also valid
when we just translate more than max_insns. Thus, the check
for do_debug in "case DISAS_PC_CC_UPDATED" would still need
additional state to know whether or not we came from
breakpoint_check.

Acked-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Tested-by:   David Hildenbrand <david@redhat.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Cornelia Huck <cohuck@redhat.com>
Cc: Alexander Graf <agraf@suse.de>
Cc: qemu-s390x@nongnu.org
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
Emilio G. Cota 2018-02-28 20:06:56 -05:00 committed by Richard Henderson
parent eccf741ab8
commit c88691aadd

View File

@ -64,6 +64,7 @@ struct DisasContext {
uint64_t pc_tmp; uint64_t pc_tmp;
uint32_t ilen; uint32_t ilen;
enum cc_op cc_op; enum cc_op cc_op;
bool do_debug;
}; };
/* Information carried about a condition to be evaluated. */ /* Information carried about a condition to be evaluated. */
@ -6158,98 +6159,87 @@ static DisasJumpType translate_one(CPUS390XState *env, DisasContext *s)
return ret; return ret;
} }
void gen_intermediate_code(CPUState *cs, struct TranslationBlock *tb) static void s390x_tr_init_disas_context(DisasContextBase *dcbase, CPUState *cs)
{
DisasContext *dc = container_of(dcbase, DisasContext, base);
/* 31-bit mode */
if (!(dc->base.tb->flags & FLAG_MASK_64)) {
dc->base.pc_first &= 0x7fffffff;
dc->base.pc_next = dc->base.pc_first;
}
dc->cc_op = CC_OP_DYNAMIC;
dc->ex_value = dc->base.tb->cs_base;
dc->do_debug = dc->base.singlestep_enabled;
}
static void s390x_tr_tb_start(DisasContextBase *db, CPUState *cs)
{
}
static void s390x_tr_insn_start(DisasContextBase *dcbase, CPUState *cs)
{
DisasContext *dc = container_of(dcbase, DisasContext, base);
tcg_gen_insn_start(dc->base.pc_next, dc->cc_op);
}
static bool s390x_tr_breakpoint_check(DisasContextBase *dcbase, CPUState *cs,
const CPUBreakpoint *bp)
{
DisasContext *dc = container_of(dcbase, DisasContext, base);
dc->base.is_jmp = DISAS_PC_STALE;
dc->do_debug = true;
/* 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 does the right thing. */
dc->base.pc_next += 2;
return true;
}
static void s390x_tr_translate_insn(DisasContextBase *dcbase, CPUState *cs)
{ {
CPUS390XState *env = cs->env_ptr; CPUS390XState *env = cs->env_ptr;
DisasContext dc; DisasContext *dc = container_of(dcbase, DisasContext, base);
uint64_t page_start;
int num_insns, max_insns;
DisasJumpType status;
bool do_debug;
dc.base.pc_first = tb->pc; dc->base.is_jmp = translate_one(env, dc);
/* 31-bit mode */ if (dc->base.is_jmp == DISAS_NEXT) {
if (!(tb->flags & FLAG_MASK_64)) { uint64_t page_start;
dc.base.pc_first &= 0x7fffffff;
}
dc.base.pc_next = dc.base.pc_first;
dc.base.tb = tb;
dc.base.singlestep_enabled = cs->singlestep_enabled;
dc.cc_op = CC_OP_DYNAMIC; page_start = dc->base.pc_first & TARGET_PAGE_MASK;
dc.ex_value = dc.base.tb->cs_base; if (dc->base.pc_next - page_start >= TARGET_PAGE_SIZE || dc->ex_value) {
do_debug = cs->singlestep_enabled; dc->base.is_jmp = DISAS_TOO_MANY;
page_start = dc.base.pc_first & TARGET_PAGE_MASK;
num_insns = 0;
max_insns = tb_cflags(tb) & CF_COUNT_MASK;
if (max_insns == 0) {
max_insns = CF_COUNT_MASK;
}
if (max_insns > TCG_MAX_INSNS) {
max_insns = TCG_MAX_INSNS;
}
gen_tb_start(tb);
do {
tcg_gen_insn_start(dc.base.pc_next, dc.cc_op);
num_insns++;
if (unlikely(cpu_breakpoint_test(cs, dc.base.pc_next, BP_ANY))) {
status = DISAS_PC_STALE;
do_debug = true;
/* 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;
break;
} }
if (num_insns == max_insns && (tb_cflags(tb) & CF_LAST_IO)) {
gen_io_start();
}
status = translate_one(env, &dc);
/* If we reach a page boundary, are single stepping,
or exhaust instruction count, stop generation. */
if (status == DISAS_NEXT
&& (dc.base.pc_next - page_start >= TARGET_PAGE_SIZE
|| tcg_op_buf_full()
|| num_insns >= max_insns
|| singlestep
|| dc.base.singlestep_enabled
|| dc.ex_value)) {
status = DISAS_TOO_MANY;
}
} while (status == DISAS_NEXT);
if (tb_cflags(tb) & CF_LAST_IO) {
gen_io_end();
} }
}
switch (status) { static void s390x_tr_tb_stop(DisasContextBase *dcbase, CPUState *cs)
{
DisasContext *dc = container_of(dcbase, DisasContext, base);
switch (dc->base.is_jmp) {
case DISAS_GOTO_TB: case DISAS_GOTO_TB:
case DISAS_NORETURN: case DISAS_NORETURN:
break; break;
case DISAS_TOO_MANY: case DISAS_TOO_MANY:
case DISAS_PC_STALE: case DISAS_PC_STALE:
case DISAS_PC_STALE_NOCHAIN: case DISAS_PC_STALE_NOCHAIN:
update_psw_addr(&dc); update_psw_addr(dc);
/* FALLTHRU */ /* FALLTHRU */
case DISAS_PC_UPDATED: case DISAS_PC_UPDATED:
/* Next TB starts off with CC_OP_DYNAMIC, so make sure the /* Next TB starts off with CC_OP_DYNAMIC, so make sure the
cc op type is in env */ cc op type is in env */
update_cc_op(&dc); update_cc_op(dc);
/* FALLTHRU */ /* FALLTHRU */
case DISAS_PC_CC_UPDATED: case DISAS_PC_CC_UPDATED:
/* Exit the TB, either by raising a debug exception or by return. */ /* Exit the TB, either by raising a debug exception or by return. */
if (do_debug) { if (dc->do_debug) {
gen_exception(EXCP_DEBUG); gen_exception(EXCP_DEBUG);
} else if (use_exit_tb(&dc) || status == DISAS_PC_STALE_NOCHAIN) { } else if (use_exit_tb(dc) ||
dc->base.is_jmp == DISAS_PC_STALE_NOCHAIN) {
tcg_gen_exit_tb(0); tcg_gen_exit_tb(0);
} else { } else {
tcg_gen_lookup_and_goto_ptr(); tcg_gen_lookup_and_goto_ptr();
@ -6258,28 +6248,36 @@ void gen_intermediate_code(CPUState *cs, struct TranslationBlock *tb)
default: default:
g_assert_not_reached(); g_assert_not_reached();
} }
}
gen_tb_end(tb, num_insns); static void s390x_tr_disas_log(const DisasContextBase *dcbase, CPUState *cs)
{
DisasContext *dc = container_of(dcbase, DisasContext, base);
tb->size = dc.base.pc_next - dc.base.pc_first; if (unlikely(dc->ex_value)) {
tb->icount = num_insns; /* ??? Unfortunately log_target_disas can't use host memory. */
qemu_log("IN: EXECUTE %016" PRIx64, dc->ex_value);
#if defined(S390X_DEBUG_DISAS) } else {
if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM) qemu_log("IN: %s\n", lookup_symbol(dc->base.pc_first));
&& qemu_log_in_addr_range(dc.base.pc_first)) { log_target_disas(cs, dc->base.pc_first, dc->base.tb->size);
qemu_log_lock();
if (unlikely(dc.ex_value)) {
/* ??? Unfortunately log_target_disas can't use host memory. */
qemu_log("IN: EXECUTE %016" PRIx64 "\n", dc.ex_value);
} else {
qemu_log("IN: %s\n", lookup_symbol(dc.base.pc_first));
log_target_disas(cs, dc.base.pc_first,
dc.base.pc_next - dc.base.pc_first);
qemu_log("\n");
}
qemu_log_unlock();
} }
#endif }
static const TranslatorOps s390x_tr_ops = {
.init_disas_context = s390x_tr_init_disas_context,
.tb_start = s390x_tr_tb_start,
.insn_start = s390x_tr_insn_start,
.breakpoint_check = s390x_tr_breakpoint_check,
.translate_insn = s390x_tr_translate_insn,
.tb_stop = s390x_tr_tb_stop,
.disas_log = s390x_tr_disas_log,
};
void gen_intermediate_code(CPUState *cs, TranslationBlock *tb)
{
DisasContext dc;
translator_loop(&s390x_tr_ops, &dc.base, cs, tb);
} }
void restore_state_to_opc(CPUS390XState *env, TranslationBlock *tb, void restore_state_to_opc(CPUS390XState *env, TranslationBlock *tb,