提交 6a432295 编写于 作者: R Richard Henderson 提交者: Laurent Vivier

target-m68k: Introduce DisasCompare

Signed-off-by: NRichard Henderson <rth@twiddle.net>
Signed-off-by: NLaurent Vivier <laurent@vivier.eu>
上级 620c6cf6
...@@ -759,8 +759,15 @@ static TCGv gen_ea(CPUM68KState *env, DisasContext *s, uint16_t insn, ...@@ -759,8 +759,15 @@ static TCGv gen_ea(CPUM68KState *env, DisasContext *s, uint16_t insn,
return NULL_QREG; return NULL_QREG;
} }
/* This generates a conditional branch, clobbering all temporaries. */ typedef struct {
static void gen_jmpcc(DisasContext *s, int cond, TCGLabel *l1) TCGCond tcond;
bool g1;
bool g2;
TCGv v1;
TCGv v2;
} DisasCompare;
static void gen_cc_cond(DisasCompare *c, DisasContext *s, int cond)
{ {
TCGv tmp, tmp2; TCGv tmp, tmp2;
TCGCond tcond; TCGCond tcond;
...@@ -768,61 +775,92 @@ static void gen_jmpcc(DisasContext *s, int cond, TCGLabel *l1) ...@@ -768,61 +775,92 @@ static void gen_jmpcc(DisasContext *s, int cond, TCGLabel *l1)
/* TODO: Optimize compare/branch pairs rather than always flushing /* TODO: Optimize compare/branch pairs rather than always flushing
flag state to CC_OP_FLAGS. */ flag state to CC_OP_FLAGS. */
gen_flush_flags(s); gen_flush_flags(s);
update_cc_op(s);
c->g1 = 1;
c->g2 = 0;
c->v2 = tcg_const_i32(0);
switch (cond) { switch (cond) {
case 0: /* T */ case 0: /* T */
tcg_gen_br(l1);
return;
case 1: /* F */ case 1: /* F */
return; c->v1 = c->v2;
tcond = TCG_COND_NEVER;
break;
case 2: /* HI (!C && !Z) -> !(C || Z)*/ case 2: /* HI (!C && !Z) -> !(C || Z)*/
case 3: /* LS (C || Z) */ case 3: /* LS (C || Z) */
tmp = tcg_temp_new(); c->v1 = tmp = tcg_temp_new();
tcg_gen_setcondi_i32(TCG_COND_EQ, tmp, QREG_CC_Z, 0); c->g1 = 0;
tcg_gen_setcond_i32(TCG_COND_EQ, tmp, QREG_CC_Z, c->v2);
tcg_gen_or_i32(tmp, tmp, QREG_CC_C); tcg_gen_or_i32(tmp, tmp, QREG_CC_C);
tcond = (cond & 1 ? TCG_COND_NE : TCG_COND_EQ); tcond = TCG_COND_NE;
break; break;
case 4: /* CC (!C) */ case 4: /* CC (!C) */
case 5: /* CS (C) */ case 5: /* CS (C) */
tmp = QREG_CC_C; c->v1 = QREG_CC_C;
tcond = (cond & 1 ? TCG_COND_NE : TCG_COND_EQ); tcond = TCG_COND_NE;
break; break;
case 6: /* NE (!Z) */ case 6: /* NE (!Z) */
case 7: /* EQ (Z) */ case 7: /* EQ (Z) */
tmp = QREG_CC_Z; c->v1 = QREG_CC_Z;
tcond = (cond & 1 ? TCG_COND_EQ : TCG_COND_NE); tcond = TCG_COND_EQ;
break; break;
case 8: /* VC (!V) */ case 8: /* VC (!V) */
case 9: /* VS (V) */ case 9: /* VS (V) */
tmp = QREG_CC_V; c->v1 = QREG_CC_V;
tcond = (cond & 1 ? TCG_COND_LT : TCG_COND_GE); tcond = TCG_COND_LT;
break; break;
case 10: /* PL (!N) */ case 10: /* PL (!N) */
case 11: /* MI (N) */ case 11: /* MI (N) */
tmp = QREG_CC_N; c->v1 = QREG_CC_N;
tcond = (cond & 1 ? TCG_COND_LT : TCG_COND_GE); tcond = TCG_COND_LT;
break; break;
case 12: /* GE (!(N ^ V)) */ case 12: /* GE (!(N ^ V)) */
case 13: /* LT (N ^ V) */ case 13: /* LT (N ^ V) */
tmp = tcg_temp_new(); c->v1 = tmp = tcg_temp_new();
c->g1 = 0;
tcg_gen_xor_i32(tmp, QREG_CC_N, QREG_CC_V); tcg_gen_xor_i32(tmp, QREG_CC_N, QREG_CC_V);
tcond = (cond & 1 ? TCG_COND_LT : TCG_COND_GE); tcond = TCG_COND_LT;
break; break;
case 14: /* GT (!(Z || (N ^ V))) */ case 14: /* GT (!(Z || (N ^ V))) */
case 15: /* LE (Z || (N ^ V)) */ case 15: /* LE (Z || (N ^ V)) */
tmp = tcg_temp_new(); c->v1 = tmp = tcg_temp_new();
tcg_gen_setcondi_i32(TCG_COND_EQ, tmp, QREG_CC_Z, 0); c->g1 = 0;
tcg_gen_setcond_i32(TCG_COND_EQ, tmp, QREG_CC_Z, c->v2);
tcg_gen_neg_i32(tmp, tmp); tcg_gen_neg_i32(tmp, tmp);
tmp2 = tcg_temp_new(); tmp2 = tcg_temp_new();
tcg_gen_xor_i32(tmp2, QREG_CC_N, QREG_CC_V); tcg_gen_xor_i32(tmp2, QREG_CC_N, QREG_CC_V);
tcg_gen_or_i32(tmp, tmp, tmp2); tcg_gen_or_i32(tmp, tmp, tmp2);
tcond = (cond & 1 ? TCG_COND_LT : TCG_COND_GE); tcg_temp_free(tmp2);
tcond = TCG_COND_LT;
break; break;
default: default:
/* Should ever happen. */ /* Should ever happen. */
abort(); abort();
} }
tcg_gen_brcondi_i32(tcond, tmp, 0, l1); if ((cond & 1) == 0) {
tcond = tcg_invert_cond(tcond);
}
c->tcond = tcond;
}
static void free_cond(DisasCompare *c)
{
if (!c->g1) {
tcg_temp_free(c->v1);
}
if (!c->g2) {
tcg_temp_free(c->v2);
}
}
static void gen_jmpcc(DisasContext *s, int cond, TCGLabel *l1)
{
DisasCompare c;
gen_cc_cond(&c, s, cond);
update_cc_op(s);
tcg_gen_brcond_i32(c.tcond, c.v1, c.v2, l1);
free_cond(&c);
} }
DISAS_INSN(scc) DISAS_INSN(scc)
...@@ -1678,7 +1716,6 @@ DISAS_INSN(branch) ...@@ -1678,7 +1716,6 @@ DISAS_INSN(branch)
/* bsr */ /* bsr */
gen_push(s, tcg_const_i32(s->pc)); gen_push(s, tcg_const_i32(s->pc));
} }
update_cc_op(s);
if (op > 1) { if (op > 1) {
/* Bcc */ /* Bcc */
l1 = gen_new_label(); l1 = gen_new_label();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册