mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
tcg: Convert mulsh to TCGOutOpBinary
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
aa28c9ef8e
commit
a9983f8129
23 changed files with 95 additions and 72 deletions
|
@ -1743,6 +1743,24 @@ static const TCGOutOpBinary outop_mul = {
|
|||
.out_rrr = tgen_mul,
|
||||
};
|
||||
|
||||
static void tgen_mulsh(TCGContext *s, TCGType type,
|
||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||
{
|
||||
if (use_mips32r6_instructions) {
|
||||
MIPSInsn insn = type == TCG_TYPE_I32 ? OPC_MUH : OPC_DMUH;
|
||||
tcg_out_opc_reg(s, insn, a0, a1, a2);
|
||||
} else {
|
||||
MIPSInsn insn = type == TCG_TYPE_I32 ? OPC_MULT : OPC_DMULT;
|
||||
tcg_out_opc_reg(s, insn, 0, a1, a2);
|
||||
tcg_out_opc_reg(s, OPC_MFHI, a0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
static const TCGOutOpBinary outop_mulsh = {
|
||||
.base.static_constraint = C_O1_I2(r, r, r),
|
||||
.out_rrr = tgen_mulsh,
|
||||
};
|
||||
|
||||
static void tgen_muluh(TCGContext *s, TCGType type,
|
||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||
{
|
||||
|
@ -1921,13 +1939,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
tcg_out_ldst(s, i1, a0, a1, a2);
|
||||
break;
|
||||
|
||||
case INDEX_op_mulsh_i32:
|
||||
if (use_mips32r6_instructions) {
|
||||
tcg_out_opc_reg(s, OPC_MUH, a0, a1, a2);
|
||||
break;
|
||||
}
|
||||
i1 = OPC_MULT, i2 = OPC_MFHI;
|
||||
goto do_hilo1;
|
||||
case INDEX_op_div_i32:
|
||||
if (use_mips32r6_instructions) {
|
||||
tcg_out_opc_reg(s, OPC_DIV_R6, a0, a1, a2);
|
||||
|
@ -1956,13 +1967,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
}
|
||||
i1 = OPC_DIVU, i2 = OPC_MFHI;
|
||||
goto do_hilo1;
|
||||
case INDEX_op_mulsh_i64:
|
||||
if (use_mips32r6_instructions) {
|
||||
tcg_out_opc_reg(s, OPC_DMUH, a0, a1, a2);
|
||||
break;
|
||||
}
|
||||
i1 = OPC_DMULT, i2 = OPC_MFHI;
|
||||
goto do_hilo1;
|
||||
case INDEX_op_div_i64:
|
||||
if (use_mips32r6_instructions) {
|
||||
tcg_out_opc_reg(s, OPC_DDIV_R6, a0, a1, a2);
|
||||
|
@ -2249,13 +2253,11 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
|||
case INDEX_op_st_i64:
|
||||
return C_O0_I2(rz, r);
|
||||
|
||||
case INDEX_op_mulsh_i32:
|
||||
case INDEX_op_div_i32:
|
||||
case INDEX_op_divu_i32:
|
||||
case INDEX_op_rem_i32:
|
||||
case INDEX_op_remu_i32:
|
||||
case INDEX_op_setcond_i32:
|
||||
case INDEX_op_mulsh_i64:
|
||||
case INDEX_op_div_i64:
|
||||
case INDEX_op_divu_i64:
|
||||
case INDEX_op_rem_i64:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue