mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
tcg: Convert qemu_st{2} to TCGOutOpLdSt{2}
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
3bedb9d3e2
commit
86fe5c2597
11 changed files with 272 additions and 259 deletions
|
@ -1711,8 +1711,8 @@ static void tcg_out_qemu_st_direct(TCGContext *s, MemOp opc, TCGReg datalo,
|
|||
}
|
||||
}
|
||||
|
||||
static void tcg_out_qemu_st(TCGContext *s, TCGReg datalo, TCGReg datahi,
|
||||
TCGReg addr, MemOpIdx oi, TCGType data_type)
|
||||
static void tgen_qemu_st(TCGContext *s, TCGType type, TCGReg data,
|
||||
TCGReg addr, MemOpIdx oi)
|
||||
{
|
||||
MemOp opc = get_memop(oi);
|
||||
TCGLabelQemuLdst *ldst;
|
||||
|
@ -1720,7 +1720,37 @@ static void tcg_out_qemu_st(TCGContext *s, TCGReg datalo, TCGReg datahi,
|
|||
|
||||
ldst = prepare_host_addr(s, &h, addr, oi, false);
|
||||
if (ldst) {
|
||||
ldst->type = data_type;
|
||||
ldst->type = type;
|
||||
ldst->datalo_reg = data;
|
||||
ldst->datahi_reg = -1;
|
||||
|
||||
h.cond = COND_EQ;
|
||||
tcg_out_qemu_st_direct(s, opc, data, -1, h);
|
||||
|
||||
/* The conditional call is last, as we're going to return here. */
|
||||
ldst->label_ptr[0] = s->code_ptr;
|
||||
tcg_out_bl_imm(s, COND_NE, 0);
|
||||
ldst->raddr = tcg_splitwx_to_rx(s->code_ptr);
|
||||
} else {
|
||||
tcg_out_qemu_st_direct(s, opc, data, -1, h);
|
||||
}
|
||||
}
|
||||
|
||||
static const TCGOutOpQemuLdSt outop_qemu_st = {
|
||||
.base.static_constraint = C_O0_I2(q, q),
|
||||
.out = tgen_qemu_st,
|
||||
};
|
||||
|
||||
static void tgen_qemu_st2(TCGContext *s, TCGType type, TCGReg datalo,
|
||||
TCGReg datahi, TCGReg addr, MemOpIdx oi)
|
||||
{
|
||||
MemOp opc = get_memop(oi);
|
||||
TCGLabelQemuLdst *ldst;
|
||||
HostAddress h;
|
||||
|
||||
ldst = prepare_host_addr(s, &h, addr, oi, false);
|
||||
if (ldst) {
|
||||
ldst->type = type;
|
||||
ldst->datalo_reg = datalo;
|
||||
ldst->datahi_reg = datahi;
|
||||
|
||||
|
@ -1736,6 +1766,11 @@ static void tcg_out_qemu_st(TCGContext *s, TCGReg datalo, TCGReg datahi,
|
|||
}
|
||||
}
|
||||
|
||||
static const TCGOutOpQemuLdSt2 outop_qemu_st2 = {
|
||||
.base.static_constraint = C_O0_I3(Q, p, q),
|
||||
.out = tgen_qemu_st2,
|
||||
};
|
||||
|
||||
static void tcg_out_epilogue(TCGContext *s);
|
||||
|
||||
static void tcg_out_exit_tb(TCGContext *s, uintptr_t arg)
|
||||
|
@ -2609,31 +2644,13 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
const TCGArg args[TCG_MAX_OP_ARGS],
|
||||
const int const_args[TCG_MAX_OP_ARGS])
|
||||
{
|
||||
switch (opc) {
|
||||
case INDEX_op_qemu_st:
|
||||
tcg_out_qemu_st(s, args[0], -1, args[1], args[2], TCG_TYPE_I32);
|
||||
break;
|
||||
case INDEX_op_qemu_st2:
|
||||
tcg_out_qemu_st(s, args[0], args[1], args[2], args[3], TCG_TYPE_I64);
|
||||
break;
|
||||
|
||||
case INDEX_op_call: /* Always emitted via tcg_out_call. */
|
||||
case INDEX_op_exit_tb: /* Always emitted via tcg_out_exit_tb. */
|
||||
case INDEX_op_goto_tb: /* Always emitted via tcg_out_goto_tb. */
|
||||
default:
|
||||
g_assert_not_reached();
|
||||
}
|
||||
g_assert_not_reached();
|
||||
}
|
||||
|
||||
static TCGConstraintSetIndex
|
||||
tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||
{
|
||||
switch (op) {
|
||||
case INDEX_op_qemu_st:
|
||||
return C_O0_I2(q, q);
|
||||
case INDEX_op_qemu_st2:
|
||||
return C_O0_I3(Q, p, q);
|
||||
|
||||
case INDEX_op_st_vec:
|
||||
return C_O0_I2(w, r);
|
||||
case INDEX_op_ld_vec:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue