mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
tcg: Convert mulu2 to TCGOutOpMul2
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
bfe964809b
commit
d37bc370fc
25 changed files with 122 additions and 106 deletions
|
@ -19,7 +19,6 @@
|
||||||
#define TCG_TARGET_HAS_negsetcond_i32 1
|
#define TCG_TARGET_HAS_negsetcond_i32 1
|
||||||
#define TCG_TARGET_HAS_add2_i32 1
|
#define TCG_TARGET_HAS_add2_i32 1
|
||||||
#define TCG_TARGET_HAS_sub2_i32 1
|
#define TCG_TARGET_HAS_sub2_i32 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i32 0
|
|
||||||
#define TCG_TARGET_HAS_extr_i64_i32 0
|
#define TCG_TARGET_HAS_extr_i64_i32 0
|
||||||
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
||||||
|
|
||||||
|
@ -30,7 +29,6 @@
|
||||||
#define TCG_TARGET_HAS_negsetcond_i64 1
|
#define TCG_TARGET_HAS_negsetcond_i64 1
|
||||||
#define TCG_TARGET_HAS_add2_i64 1
|
#define TCG_TARGET_HAS_add2_i64 1
|
||||||
#define TCG_TARGET_HAS_sub2_i64 1
|
#define TCG_TARGET_HAS_sub2_i64 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i64 0
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Without FEAT_LSE2, we must use LDXP+STXP to implement atomic 128-bit load,
|
* Without FEAT_LSE2, we must use LDXP+STXP to implement atomic 128-bit load,
|
||||||
|
|
|
@ -2226,6 +2226,10 @@ static const TCGOutOpBinary outop_mulsh = {
|
||||||
.out_rrr = tgen_mulsh,
|
.out_rrr = tgen_mulsh,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const TCGOutOpMul2 outop_mulu2 = {
|
||||||
|
.base.static_constraint = C_NotImplemented,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_muluh(TCGContext *s, TCGType type,
|
static void tgen_muluh(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
|
|
@ -28,7 +28,6 @@ extern bool use_neon_instructions;
|
||||||
#define TCG_TARGET_HAS_bswap32_i32 1
|
#define TCG_TARGET_HAS_bswap32_i32 1
|
||||||
#define TCG_TARGET_HAS_extract2_i32 1
|
#define TCG_TARGET_HAS_extract2_i32 1
|
||||||
#define TCG_TARGET_HAS_negsetcond_i32 1
|
#define TCG_TARGET_HAS_negsetcond_i32 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i32 1
|
|
||||||
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
||||||
|
|
||||||
#define TCG_TARGET_HAS_qemu_ldst_i128 0
|
#define TCG_TARGET_HAS_qemu_ldst_i128 0
|
||||||
|
|
|
@ -921,14 +921,6 @@ static void tcg_out_dat_rIN(TCGContext *s, ARMCond cond, ARMInsn opc,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void tcg_out_umull32(TCGContext *s, ARMCond cond, TCGReg rd0,
|
|
||||||
TCGReg rd1, TCGReg rn, TCGReg rm)
|
|
||||||
{
|
|
||||||
/* umull */
|
|
||||||
tcg_out32(s, (cond << 28) | 0x00800090 |
|
|
||||||
(rd1 << 16) | (rd0 << 12) | (rm << 8) | rn);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void tcg_out_ext8s(TCGContext *s, TCGType t, TCGReg rd, TCGReg rn)
|
static void tcg_out_ext8s(TCGContext *s, TCGType t, TCGReg rd, TCGReg rn)
|
||||||
{
|
{
|
||||||
/* sxtb */
|
/* sxtb */
|
||||||
|
@ -1982,6 +1974,19 @@ static const TCGOutOpBinary outop_mulsh = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void tgen_mulu2(TCGContext *s, TCGType type,
|
||||||
|
TCGReg rd0, TCGReg rd1, TCGReg rn, TCGReg rm)
|
||||||
|
{
|
||||||
|
/* umull */
|
||||||
|
tcg_out32(s, (COND_AL << 28) | 0x00800090 |
|
||||||
|
(rd1 << 16) | (rd0 << 12) | (rm << 8) | rn);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const TCGOutOpMul2 outop_mulu2 = {
|
||||||
|
.base.static_constraint = C_O2_I2(r, r, r, r),
|
||||||
|
.out_rrrr = tgen_mulu2,
|
||||||
|
};
|
||||||
|
|
||||||
static const TCGOutOpBinary outop_muluh = {
|
static const TCGOutOpBinary outop_muluh = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
@ -2248,9 +2253,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||||
}
|
}
|
||||||
tcg_out_mov_reg(s, COND_AL, args[0], a0);
|
tcg_out_mov_reg(s, COND_AL, args[0], a0);
|
||||||
break;
|
break;
|
||||||
case INDEX_op_mulu2_i32:
|
|
||||||
tcg_out_umull32(s, COND_AL, args[0], args[1], args[2], args[3]);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case INDEX_op_brcond_i32:
|
case INDEX_op_brcond_i32:
|
||||||
c = tcg_out_cmp(s, args[2], args[0], args[1], const_args[1]);
|
c = tcg_out_cmp(s, args[2], args[0], args[1], const_args[1]);
|
||||||
|
@ -2374,9 +2376,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
case INDEX_op_negsetcond_i32:
|
case INDEX_op_negsetcond_i32:
|
||||||
return C_O1_I2(r, r, rIN);
|
return C_O1_I2(r, r, rIN);
|
||||||
|
|
||||||
case INDEX_op_mulu2_i32:
|
|
||||||
return C_O2_I2(r, r, r, r);
|
|
||||||
|
|
||||||
case INDEX_op_brcond_i32:
|
case INDEX_op_brcond_i32:
|
||||||
return C_O0_I2(r, rIN);
|
return C_O0_I2(r, rIN);
|
||||||
case INDEX_op_deposit_i32:
|
case INDEX_op_deposit_i32:
|
||||||
|
|
|
@ -32,7 +32,6 @@
|
||||||
#define TCG_TARGET_HAS_negsetcond_i32 1
|
#define TCG_TARGET_HAS_negsetcond_i32 1
|
||||||
#define TCG_TARGET_HAS_add2_i32 1
|
#define TCG_TARGET_HAS_add2_i32 1
|
||||||
#define TCG_TARGET_HAS_sub2_i32 1
|
#define TCG_TARGET_HAS_sub2_i32 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i32 1
|
|
||||||
|
|
||||||
#if TCG_TARGET_REG_BITS == 64
|
#if TCG_TARGET_REG_BITS == 64
|
||||||
/* Keep 32-bit values zero-extended in a register. */
|
/* Keep 32-bit values zero-extended in a register. */
|
||||||
|
@ -44,7 +43,6 @@
|
||||||
#define TCG_TARGET_HAS_negsetcond_i64 1
|
#define TCG_TARGET_HAS_negsetcond_i64 1
|
||||||
#define TCG_TARGET_HAS_add2_i64 1
|
#define TCG_TARGET_HAS_add2_i64 1
|
||||||
#define TCG_TARGET_HAS_sub2_i64 1
|
#define TCG_TARGET_HAS_sub2_i64 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i64 1
|
|
||||||
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
||||||
#else
|
#else
|
||||||
#define TCG_TARGET_HAS_qemu_st8_i32 1
|
#define TCG_TARGET_HAS_qemu_st8_i32 1
|
||||||
|
|
|
@ -2763,6 +2763,18 @@ static const TCGOutOpBinary outop_muluh = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void tgen_mulu2(TCGContext *s, TCGType type,
|
||||||
|
TCGReg a0, TCGReg a1, TCGReg a2, TCGReg a3)
|
||||||
|
{
|
||||||
|
int rexw = type == TCG_TYPE_I32 ? 0 : P_REXW;
|
||||||
|
tcg_out_modrm(s, OPC_GRP3_Ev + rexw, EXT3_MUL, a3);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const TCGOutOpMul2 outop_mulu2 = {
|
||||||
|
.base.static_constraint = C_O2_I2(a, d, a, r),
|
||||||
|
.out_rrrr = tgen_mulu2,
|
||||||
|
};
|
||||||
|
|
||||||
static const TCGOutOpBinary outop_nand = {
|
static const TCGOutOpBinary outop_nand = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
@ -3145,9 +3157,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||||
tcg_out_qemu_st(s, a0, a1, a2, args[3], TCG_TYPE_I128);
|
tcg_out_qemu_st(s, a0, a1, a2, args[3], TCG_TYPE_I128);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
OP_32_64(mulu2):
|
|
||||||
tcg_out_modrm(s, OPC_GRP3_Ev + rexw, EXT3_MUL, args[3]);
|
|
||||||
break;
|
|
||||||
OP_32_64(add2):
|
OP_32_64(add2):
|
||||||
if (const_args[4]) {
|
if (const_args[4]) {
|
||||||
tgen_arithi(s, ARITH_ADD + rexw, a0, args[4], 1);
|
tgen_arithi(s, ARITH_ADD + rexw, a0, args[4], 1);
|
||||||
|
@ -3935,10 +3944,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
case INDEX_op_movcond_i64:
|
case INDEX_op_movcond_i64:
|
||||||
return C_O1_I4(r, r, reT, r, 0);
|
return C_O1_I4(r, r, reT, r, 0);
|
||||||
|
|
||||||
case INDEX_op_mulu2_i32:
|
|
||||||
case INDEX_op_mulu2_i64:
|
|
||||||
return C_O2_I2(a, d, a, r);
|
|
||||||
|
|
||||||
case INDEX_op_add2_i32:
|
case INDEX_op_add2_i32:
|
||||||
case INDEX_op_add2_i64:
|
case INDEX_op_add2_i64:
|
||||||
case INDEX_op_sub2_i32:
|
case INDEX_op_sub2_i32:
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
#define TCG_TARGET_HAS_extract2_i32 0
|
#define TCG_TARGET_HAS_extract2_i32 0
|
||||||
#define TCG_TARGET_HAS_add2_i32 0
|
#define TCG_TARGET_HAS_add2_i32 0
|
||||||
#define TCG_TARGET_HAS_sub2_i32 0
|
#define TCG_TARGET_HAS_sub2_i32 0
|
||||||
#define TCG_TARGET_HAS_mulu2_i32 0
|
|
||||||
#define TCG_TARGET_HAS_bswap16_i32 1
|
#define TCG_TARGET_HAS_bswap16_i32 1
|
||||||
#define TCG_TARGET_HAS_bswap32_i32 1
|
#define TCG_TARGET_HAS_bswap32_i32 1
|
||||||
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
||||||
|
@ -28,7 +27,6 @@
|
||||||
#define TCG_TARGET_HAS_bswap64_i64 1
|
#define TCG_TARGET_HAS_bswap64_i64 1
|
||||||
#define TCG_TARGET_HAS_add2_i64 0
|
#define TCG_TARGET_HAS_add2_i64 0
|
||||||
#define TCG_TARGET_HAS_sub2_i64 0
|
#define TCG_TARGET_HAS_sub2_i64 0
|
||||||
#define TCG_TARGET_HAS_mulu2_i64 0
|
|
||||||
|
|
||||||
#define TCG_TARGET_HAS_qemu_ldst_i128 (cpuinfo & CPUINFO_LSX)
|
#define TCG_TARGET_HAS_qemu_ldst_i128 (cpuinfo & CPUINFO_LSX)
|
||||||
|
|
||||||
|
|
|
@ -1440,6 +1440,10 @@ static const TCGOutOpBinary outop_mulsh = {
|
||||||
.out_rrr = tgen_mulsh,
|
.out_rrr = tgen_mulsh,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const TCGOutOpMul2 outop_mulu2 = {
|
||||||
|
.base.static_constraint = C_NotImplemented,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_muluh(TCGContext *s, TCGType type,
|
static void tgen_muluh(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
|
|
@ -39,7 +39,6 @@ extern bool use_mips32r2_instructions;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* optional instructions */
|
/* optional instructions */
|
||||||
#define TCG_TARGET_HAS_mulu2_i32 (!use_mips32r6_instructions)
|
|
||||||
#define TCG_TARGET_HAS_bswap16_i32 1
|
#define TCG_TARGET_HAS_bswap16_i32 1
|
||||||
#define TCG_TARGET_HAS_bswap32_i32 1
|
#define TCG_TARGET_HAS_bswap32_i32 1
|
||||||
#define TCG_TARGET_HAS_negsetcond_i32 0
|
#define TCG_TARGET_HAS_negsetcond_i32 0
|
||||||
|
@ -50,7 +49,6 @@ extern bool use_mips32r2_instructions;
|
||||||
#define TCG_TARGET_HAS_extr_i64_i32 1
|
#define TCG_TARGET_HAS_extr_i64_i32 1
|
||||||
#define TCG_TARGET_HAS_add2_i64 0
|
#define TCG_TARGET_HAS_add2_i64 0
|
||||||
#define TCG_TARGET_HAS_sub2_i64 0
|
#define TCG_TARGET_HAS_sub2_i64 0
|
||||||
#define TCG_TARGET_HAS_mulu2_i64 (!use_mips32r6_instructions)
|
|
||||||
#define TCG_TARGET_HAS_ext32s_i64 1
|
#define TCG_TARGET_HAS_ext32s_i64 1
|
||||||
#define TCG_TARGET_HAS_ext32u_i64 1
|
#define TCG_TARGET_HAS_ext32u_i64 1
|
||||||
#define TCG_TARGET_HAS_negsetcond_i64 0
|
#define TCG_TARGET_HAS_negsetcond_i64 0
|
||||||
|
|
|
@ -1861,6 +1861,21 @@ static const TCGOutOpBinary outop_mulsh = {
|
||||||
.out_rrr = tgen_mulsh,
|
.out_rrr = tgen_mulsh,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void tgen_mulu2(TCGContext *s, TCGType type,
|
||||||
|
TCGReg a0, TCGReg a1, TCGReg a2, TCGReg a3)
|
||||||
|
{
|
||||||
|
MIPSInsn insn = type == TCG_TYPE_I32 ? OPC_MULTU : OPC_DMULTU;
|
||||||
|
tcg_out_opc_reg(s, insn, 0, a2, a3);
|
||||||
|
tcg_out_opc_reg(s, OPC_MFLO, a0, 0, 0);
|
||||||
|
tcg_out_opc_reg(s, OPC_MFHI, a1, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const TCGOutOpMul2 outop_mulu2 = {
|
||||||
|
.base.static_constraint = C_Dynamic,
|
||||||
|
.base.dynamic_constraint = cset_mul2,
|
||||||
|
.out_rrrr = tgen_mulu2,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_muluh(TCGContext *s, TCGType type,
|
static void tgen_muluh(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
@ -2181,17 +2196,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||||
tcg_out_ldst(s, i1, a0, a1, a2);
|
tcg_out_ldst(s, i1, a0, a1, a2);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INDEX_op_mulu2_i32:
|
|
||||||
i1 = OPC_MULTU;
|
|
||||||
goto do_hilo2;
|
|
||||||
case INDEX_op_mulu2_i64:
|
|
||||||
i1 = OPC_DMULTU;
|
|
||||||
do_hilo2:
|
|
||||||
tcg_out_opc_reg(s, i1, 0, a2, args[3]);
|
|
||||||
tcg_out_opc_reg(s, OPC_MFLO, a0, 0, 0);
|
|
||||||
tcg_out_opc_reg(s, OPC_MFHI, a1, 0, 0);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case INDEX_op_bswap16_i32:
|
case INDEX_op_bswap16_i32:
|
||||||
case INDEX_op_bswap16_i64:
|
case INDEX_op_bswap16_i64:
|
||||||
tcg_out_bswap16(s, a0, a1, a2);
|
tcg_out_bswap16(s, a0, a1, a2);
|
||||||
|
@ -2361,9 +2365,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
case INDEX_op_setcond_i32:
|
case INDEX_op_setcond_i32:
|
||||||
case INDEX_op_setcond_i64:
|
case INDEX_op_setcond_i64:
|
||||||
return C_O1_I2(r, rz, rz);
|
return C_O1_I2(r, rz, rz);
|
||||||
case INDEX_op_mulu2_i32:
|
|
||||||
case INDEX_op_mulu2_i64:
|
|
||||||
return C_O2_I2(r, r, r, r);
|
|
||||||
|
|
||||||
case INDEX_op_deposit_i32:
|
case INDEX_op_deposit_i32:
|
||||||
case INDEX_op_deposit_i64:
|
case INDEX_op_deposit_i64:
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#define TCG_TARGET_HAS_bswap32_i32 1
|
#define TCG_TARGET_HAS_bswap32_i32 1
|
||||||
#define TCG_TARGET_HAS_extract2_i32 0
|
#define TCG_TARGET_HAS_extract2_i32 0
|
||||||
#define TCG_TARGET_HAS_negsetcond_i32 1
|
#define TCG_TARGET_HAS_negsetcond_i32 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i32 0
|
|
||||||
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
||||||
|
|
||||||
#if TCG_TARGET_REG_BITS == 64
|
#if TCG_TARGET_REG_BITS == 64
|
||||||
|
@ -35,7 +34,6 @@
|
||||||
#define TCG_TARGET_HAS_negsetcond_i64 1
|
#define TCG_TARGET_HAS_negsetcond_i64 1
|
||||||
#define TCG_TARGET_HAS_add2_i64 1
|
#define TCG_TARGET_HAS_add2_i64 1
|
||||||
#define TCG_TARGET_HAS_sub2_i64 1
|
#define TCG_TARGET_HAS_sub2_i64 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i64 0
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define TCG_TARGET_HAS_qemu_ldst_i128 \
|
#define TCG_TARGET_HAS_qemu_ldst_i128 \
|
||||||
|
|
|
@ -3095,6 +3095,10 @@ static const TCGOutOpBinary outop_mulsh = {
|
||||||
.out_rrr = tgen_mulsh,
|
.out_rrr = tgen_mulsh,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const TCGOutOpMul2 outop_mulu2 = {
|
||||||
|
.base.static_constraint = C_NotImplemented,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_muluh(TCGContext *s, TCGType type,
|
static void tgen_muluh(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
#define TCG_TARGET_HAS_extract2_i32 0
|
#define TCG_TARGET_HAS_extract2_i32 0
|
||||||
#define TCG_TARGET_HAS_add2_i32 1
|
#define TCG_TARGET_HAS_add2_i32 1
|
||||||
#define TCG_TARGET_HAS_sub2_i32 1
|
#define TCG_TARGET_HAS_sub2_i32 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i32 0
|
|
||||||
#define TCG_TARGET_HAS_bswap16_i32 (cpuinfo & CPUINFO_ZBB)
|
#define TCG_TARGET_HAS_bswap16_i32 (cpuinfo & CPUINFO_ZBB)
|
||||||
#define TCG_TARGET_HAS_bswap32_i32 (cpuinfo & CPUINFO_ZBB)
|
#define TCG_TARGET_HAS_bswap32_i32 (cpuinfo & CPUINFO_ZBB)
|
||||||
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
||||||
|
@ -27,7 +26,6 @@
|
||||||
#define TCG_TARGET_HAS_bswap64_i64 (cpuinfo & CPUINFO_ZBB)
|
#define TCG_TARGET_HAS_bswap64_i64 (cpuinfo & CPUINFO_ZBB)
|
||||||
#define TCG_TARGET_HAS_add2_i64 1
|
#define TCG_TARGET_HAS_add2_i64 1
|
||||||
#define TCG_TARGET_HAS_sub2_i64 1
|
#define TCG_TARGET_HAS_sub2_i64 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i64 0
|
|
||||||
|
|
||||||
#define TCG_TARGET_HAS_qemu_ldst_i128 0
|
#define TCG_TARGET_HAS_qemu_ldst_i128 0
|
||||||
|
|
||||||
|
|
|
@ -2138,6 +2138,10 @@ static const TCGOutOpBinary outop_mulsh = {
|
||||||
.out_rrr = tgen_mulsh,
|
.out_rrr = tgen_mulsh,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const TCGOutOpMul2 outop_mulu2 = {
|
||||||
|
.base.static_constraint = C_NotImplemented,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_muluh(TCGContext *s, TCGType type,
|
static void tgen_muluh(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
|
|
@ -35,7 +35,6 @@ extern uint64_t s390_facilities[3];
|
||||||
#define TCG_TARGET_HAS_negsetcond_i32 1
|
#define TCG_TARGET_HAS_negsetcond_i32 1
|
||||||
#define TCG_TARGET_HAS_add2_i32 1
|
#define TCG_TARGET_HAS_add2_i32 1
|
||||||
#define TCG_TARGET_HAS_sub2_i32 1
|
#define TCG_TARGET_HAS_sub2_i32 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i32 0
|
|
||||||
#define TCG_TARGET_HAS_extr_i64_i32 0
|
#define TCG_TARGET_HAS_extr_i64_i32 0
|
||||||
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
||||||
|
|
||||||
|
@ -46,7 +45,6 @@ extern uint64_t s390_facilities[3];
|
||||||
#define TCG_TARGET_HAS_negsetcond_i64 1
|
#define TCG_TARGET_HAS_negsetcond_i64 1
|
||||||
#define TCG_TARGET_HAS_add2_i64 1
|
#define TCG_TARGET_HAS_add2_i64 1
|
||||||
#define TCG_TARGET_HAS_sub2_i64 1
|
#define TCG_TARGET_HAS_sub2_i64 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i64 1
|
|
||||||
|
|
||||||
#define TCG_TARGET_HAS_qemu_ldst_i128 1
|
#define TCG_TARGET_HAS_qemu_ldst_i128 1
|
||||||
|
|
||||||
|
|
|
@ -2415,6 +2415,27 @@ static const TCGOutOpBinary outop_mulsh = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void tgen_mulu2(TCGContext *s, TCGType type,
|
||||||
|
TCGReg a0, TCGReg a1, TCGReg a2, TCGReg a3)
|
||||||
|
{
|
||||||
|
tcg_debug_assert(a0 == a2);
|
||||||
|
tcg_debug_assert((a1 & 1) == 0);
|
||||||
|
tcg_debug_assert(a0 == a1 + 1);
|
||||||
|
tcg_out_insn(s, RRE, MLGR, a1, a3);
|
||||||
|
}
|
||||||
|
|
||||||
|
static TCGConstraintSetIndex cset_mulu2(TCGType type, unsigned flags)
|
||||||
|
{
|
||||||
|
return (type == TCG_TYPE_I64 && HAVE_FACILITY(MISC_INSN_EXT2)
|
||||||
|
? C_O2_I2(o, m, 0, r) : C_NotImplemented);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const TCGOutOpMul2 outop_mulu2 = {
|
||||||
|
.base.static_constraint = C_Dynamic,
|
||||||
|
.base.dynamic_constraint = cset_mulu2,
|
||||||
|
.out_rrrr = tgen_mulu2,
|
||||||
|
};
|
||||||
|
|
||||||
static const TCGOutOpBinary outop_muluh = {
|
static const TCGOutOpBinary outop_muluh = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
@ -2860,13 +2881,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||||
tcg_out_insn(s, RRE, LRVGR, args[0], args[1]);
|
tcg_out_insn(s, RRE, LRVGR, args[0], args[1]);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INDEX_op_mulu2_i64:
|
|
||||||
tcg_debug_assert(args[0] == args[2]);
|
|
||||||
tcg_debug_assert((args[1] & 1) == 0);
|
|
||||||
tcg_debug_assert(args[0] == args[1] + 1);
|
|
||||||
tcg_out_insn(s, RRE, MLGR, args[1], args[3]);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case INDEX_op_add2_i64:
|
case INDEX_op_add2_i64:
|
||||||
if (const_args[4]) {
|
if (const_args[4]) {
|
||||||
if ((int64_t)args[4] >= 0) {
|
if ((int64_t)args[4] >= 0) {
|
||||||
|
@ -3464,9 +3478,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
case INDEX_op_movcond_i64:
|
case INDEX_op_movcond_i64:
|
||||||
return C_O1_I4(r, r, rC, rI, r);
|
return C_O1_I4(r, r, rC, rI, r);
|
||||||
|
|
||||||
case INDEX_op_mulu2_i64:
|
|
||||||
return C_O2_I2(o, m, 0, r);
|
|
||||||
|
|
||||||
case INDEX_op_add2_i32:
|
case INDEX_op_add2_i32:
|
||||||
case INDEX_op_sub2_i32:
|
case INDEX_op_sub2_i32:
|
||||||
return C_N1_O1_I4(r, r, 0, 1, ri, r);
|
return C_N1_O1_I4(r, r, 0, 1, ri, r);
|
||||||
|
|
|
@ -18,5 +18,4 @@ C_O1_I2(r, r, rJ)
|
||||||
C_O1_I2(r, rz, rJ)
|
C_O1_I2(r, rz, rJ)
|
||||||
C_O1_I4(r, rz, rJ, rI, 0)
|
C_O1_I4(r, rz, rJ, rI, 0)
|
||||||
C_O2_I2(r, r, r, r)
|
C_O2_I2(r, r, r, r)
|
||||||
C_O2_I2(r, r, rz, rJ)
|
|
||||||
C_O2_I4(r, r, rz, rz, rJ, rJ)
|
C_O2_I4(r, r, rz, rz, rJ, rJ)
|
||||||
|
|
|
@ -20,7 +20,6 @@ extern bool use_vis3_instructions;
|
||||||
#define TCG_TARGET_HAS_negsetcond_i32 1
|
#define TCG_TARGET_HAS_negsetcond_i32 1
|
||||||
#define TCG_TARGET_HAS_add2_i32 1
|
#define TCG_TARGET_HAS_add2_i32 1
|
||||||
#define TCG_TARGET_HAS_sub2_i32 1
|
#define TCG_TARGET_HAS_sub2_i32 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i32 1
|
|
||||||
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
||||||
|
|
||||||
#define TCG_TARGET_HAS_extr_i64_i32 0
|
#define TCG_TARGET_HAS_extr_i64_i32 0
|
||||||
|
@ -31,7 +30,6 @@ extern bool use_vis3_instructions;
|
||||||
#define TCG_TARGET_HAS_negsetcond_i64 1
|
#define TCG_TARGET_HAS_negsetcond_i64 1
|
||||||
#define TCG_TARGET_HAS_add2_i64 1
|
#define TCG_TARGET_HAS_add2_i64 1
|
||||||
#define TCG_TARGET_HAS_sub2_i64 1
|
#define TCG_TARGET_HAS_sub2_i64 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i64 0
|
|
||||||
|
|
||||||
#define TCG_TARGET_HAS_qemu_ldst_i128 0
|
#define TCG_TARGET_HAS_qemu_ldst_i128 0
|
||||||
|
|
||||||
|
|
|
@ -1457,6 +1457,19 @@ static const TCGOutOpBinary outop_mulsh = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void tgen_mulu2(TCGContext *s, TCGType type,
|
||||||
|
TCGReg a0, TCGReg a1, TCGReg a2, TCGReg a3)
|
||||||
|
{
|
||||||
|
tcg_out_arith(s, a0, a2, a3, ARITH_UMUL);
|
||||||
|
tcg_out_arithi(s, a1, a0, 32, SHIFT_SRLX);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const TCGOutOpMul2 outop_mulu2 = {
|
||||||
|
.base.static_constraint = C_Dynamic,
|
||||||
|
.base.dynamic_constraint = cset_mul2,
|
||||||
|
.out_rrrr = tgen_mulu2,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_muluh(TCGContext *s, TCGType type,
|
static void tgen_muluh(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
@ -1646,7 +1659,7 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||||
const int const_args[TCG_MAX_OP_ARGS])
|
const int const_args[TCG_MAX_OP_ARGS])
|
||||||
{
|
{
|
||||||
TCGArg a0, a1, a2;
|
TCGArg a0, a1, a2;
|
||||||
int c, c2;
|
int c2;
|
||||||
|
|
||||||
/* Hoist the loads of the most common arguments. */
|
/* Hoist the loads of the most common arguments. */
|
||||||
a0 = args[0];
|
a0 = args[0];
|
||||||
|
@ -1718,12 +1731,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||||
args[4], const_args[4], args[5], const_args[5],
|
args[4], const_args[4], args[5], const_args[5],
|
||||||
ARITH_SUBCC, ARITH_SUBC);
|
ARITH_SUBCC, ARITH_SUBC);
|
||||||
break;
|
break;
|
||||||
case INDEX_op_mulu2_i32:
|
|
||||||
c = ARITH_UMUL;
|
|
||||||
/* The 32-bit multiply insns produce a full 64-bit result. */
|
|
||||||
tcg_out_arithc(s, a0, a2, args[3], const_args[3], c);
|
|
||||||
tcg_out_arithi(s, a1, a0, 32, SHIFT_SRLX);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case INDEX_op_qemu_ld_i32:
|
case INDEX_op_qemu_ld_i32:
|
||||||
tcg_out_qemu_ld(s, a0, a1, a2, TCG_TYPE_I32);
|
tcg_out_qemu_ld(s, a0, a1, a2, TCG_TYPE_I32);
|
||||||
|
@ -1847,8 +1854,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
case INDEX_op_sub2_i32:
|
case INDEX_op_sub2_i32:
|
||||||
case INDEX_op_sub2_i64:
|
case INDEX_op_sub2_i64:
|
||||||
return C_O2_I4(r, r, rz, rz, rJ, rJ);
|
return C_O2_I4(r, r, rz, rz, rJ, rJ);
|
||||||
case INDEX_op_mulu2_i32:
|
|
||||||
return C_O2_I2(r, r, rz, rJ);
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return C_NotImplemented;
|
return C_NotImplemented;
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
#define TCG_TARGET_HAS_negsetcond_i64 0
|
#define TCG_TARGET_HAS_negsetcond_i64 0
|
||||||
#define TCG_TARGET_HAS_add2_i64 0
|
#define TCG_TARGET_HAS_add2_i64 0
|
||||||
#define TCG_TARGET_HAS_sub2_i64 0
|
#define TCG_TARGET_HAS_sub2_i64 0
|
||||||
#define TCG_TARGET_HAS_mulu2_i64 0
|
|
||||||
/* Turn some undef macros into true macros. */
|
/* Turn some undef macros into true macros. */
|
||||||
#define TCG_TARGET_HAS_add2_i32 1
|
#define TCG_TARGET_HAS_add2_i32 1
|
||||||
#define TCG_TARGET_HAS_sub2_i32 1
|
#define TCG_TARGET_HAS_sub2_i32 1
|
||||||
|
|
|
@ -1138,7 +1138,7 @@ void tcg_gen_sub2_i32(TCGv_i32 rl, TCGv_i32 rh, TCGv_i32 al,
|
||||||
|
|
||||||
void tcg_gen_mulu2_i32(TCGv_i32 rl, TCGv_i32 rh, TCGv_i32 arg1, TCGv_i32 arg2)
|
void tcg_gen_mulu2_i32(TCGv_i32 rl, TCGv_i32 rh, TCGv_i32 arg1, TCGv_i32 arg2)
|
||||||
{
|
{
|
||||||
if (TCG_TARGET_HAS_mulu2_i32) {
|
if (tcg_op_supported(INDEX_op_mulu2_i32, TCG_TYPE_I32, 0)) {
|
||||||
tcg_gen_op4_i32(INDEX_op_mulu2_i32, rl, rh, arg1, arg2);
|
tcg_gen_op4_i32(INDEX_op_mulu2_i32, rl, rh, arg1, arg2);
|
||||||
} else if (tcg_op_supported(INDEX_op_muluh, TCG_TYPE_I32, 0)) {
|
} else if (tcg_op_supported(INDEX_op_muluh, TCG_TYPE_I32, 0)) {
|
||||||
TCGv_i32 t = tcg_temp_ebb_new_i32();
|
TCGv_i32 t = tcg_temp_ebb_new_i32();
|
||||||
|
@ -1156,7 +1156,7 @@ void tcg_gen_mulu2_i32(TCGv_i32 rl, TCGv_i32 rh, TCGv_i32 arg1, TCGv_i32 arg2)
|
||||||
tcg_temp_free_i64(t0);
|
tcg_temp_free_i64(t0);
|
||||||
tcg_temp_free_i64(t1);
|
tcg_temp_free_i64(t1);
|
||||||
} else {
|
} else {
|
||||||
qemu_build_not_reached();
|
g_assert_not_reached();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2861,7 +2861,7 @@ void tcg_gen_sub2_i64(TCGv_i64 rl, TCGv_i64 rh, TCGv_i64 al,
|
||||||
|
|
||||||
void tcg_gen_mulu2_i64(TCGv_i64 rl, TCGv_i64 rh, TCGv_i64 arg1, TCGv_i64 arg2)
|
void tcg_gen_mulu2_i64(TCGv_i64 rl, TCGv_i64 rh, TCGv_i64 arg1, TCGv_i64 arg2)
|
||||||
{
|
{
|
||||||
if (TCG_TARGET_HAS_mulu2_i64) {
|
if (tcg_op_supported(INDEX_op_mulu2_i64, TCG_TYPE_I64, 0)) {
|
||||||
tcg_gen_op4_i64(INDEX_op_mulu2_i64, rl, rh, arg1, arg2);
|
tcg_gen_op4_i64(INDEX_op_mulu2_i64, rl, rh, arg1, arg2);
|
||||||
} else if (tcg_op_supported(INDEX_op_muluh, TCG_TYPE_I64, 0)) {
|
} else if (tcg_op_supported(INDEX_op_muluh, TCG_TYPE_I64, 0)) {
|
||||||
TCGv_i64 t = tcg_temp_ebb_new_i64();
|
TCGv_i64 t = tcg_temp_ebb_new_i64();
|
||||||
|
@ -2888,7 +2888,7 @@ void tcg_gen_muls2_i64(TCGv_i64 rl, TCGv_i64 rh, TCGv_i64 arg1, TCGv_i64 arg2)
|
||||||
tcg_gen_op3_i64(INDEX_op_mulsh, rh, arg1, arg2);
|
tcg_gen_op3_i64(INDEX_op_mulsh, rh, arg1, arg2);
|
||||||
tcg_gen_mov_i64(rl, t);
|
tcg_gen_mov_i64(rl, t);
|
||||||
tcg_temp_free_i64(t);
|
tcg_temp_free_i64(t);
|
||||||
} else if (TCG_TARGET_HAS_mulu2_i64 ||
|
} else if (tcg_op_supported(INDEX_op_mulu2_i64, TCG_TYPE_I64, 0) ||
|
||||||
tcg_op_supported(INDEX_op_muluh, TCG_TYPE_I64, 0)) {
|
tcg_op_supported(INDEX_op_muluh, TCG_TYPE_I64, 0)) {
|
||||||
TCGv_i64 t0 = tcg_temp_ebb_new_i64();
|
TCGv_i64 t0 = tcg_temp_ebb_new_i64();
|
||||||
TCGv_i64 t1 = tcg_temp_ebb_new_i64();
|
TCGv_i64 t1 = tcg_temp_ebb_new_i64();
|
||||||
|
|
|
@ -1043,6 +1043,8 @@ static const TCGOutOp * const all_outop[NB_OPS] = {
|
||||||
OUTOP(INDEX_op_mul, TCGOutOpBinary, outop_mul),
|
OUTOP(INDEX_op_mul, TCGOutOpBinary, outop_mul),
|
||||||
OUTOP(INDEX_op_muls2, TCGOutOpMul2, outop_muls2),
|
OUTOP(INDEX_op_muls2, TCGOutOpMul2, outop_muls2),
|
||||||
OUTOP(INDEX_op_mulsh, TCGOutOpBinary, outop_mulsh),
|
OUTOP(INDEX_op_mulsh, TCGOutOpBinary, outop_mulsh),
|
||||||
|
OUTOP(INDEX_op_mulu2_i32, TCGOutOpMul2, outop_mulu2),
|
||||||
|
OUTOP(INDEX_op_mulu2_i64, TCGOutOpMul2, outop_mulu2),
|
||||||
OUTOP(INDEX_op_muluh, TCGOutOpBinary, outop_muluh),
|
OUTOP(INDEX_op_muluh, TCGOutOpBinary, outop_muluh),
|
||||||
OUTOP(INDEX_op_nand, TCGOutOpBinary, outop_nand),
|
OUTOP(INDEX_op_nand, TCGOutOpBinary, outop_nand),
|
||||||
OUTOP(INDEX_op_neg, TCGOutOpUnary, outop_neg),
|
OUTOP(INDEX_op_neg, TCGOutOpUnary, outop_neg),
|
||||||
|
@ -2290,8 +2292,6 @@ bool tcg_op_supported(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
return TCG_TARGET_HAS_add2_i32;
|
return TCG_TARGET_HAS_add2_i32;
|
||||||
case INDEX_op_sub2_i32:
|
case INDEX_op_sub2_i32:
|
||||||
return TCG_TARGET_HAS_sub2_i32;
|
return TCG_TARGET_HAS_sub2_i32;
|
||||||
case INDEX_op_mulu2_i32:
|
|
||||||
return TCG_TARGET_HAS_mulu2_i32;
|
|
||||||
case INDEX_op_bswap16_i32:
|
case INDEX_op_bswap16_i32:
|
||||||
return TCG_TARGET_HAS_bswap16_i32;
|
return TCG_TARGET_HAS_bswap16_i32;
|
||||||
case INDEX_op_bswap32_i32:
|
case INDEX_op_bswap32_i32:
|
||||||
|
@ -2339,8 +2339,6 @@ bool tcg_op_supported(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
return TCG_TARGET_HAS_add2_i64;
|
return TCG_TARGET_HAS_add2_i64;
|
||||||
case INDEX_op_sub2_i64:
|
case INDEX_op_sub2_i64:
|
||||||
return TCG_TARGET_HAS_sub2_i64;
|
return TCG_TARGET_HAS_sub2_i64;
|
||||||
case INDEX_op_mulu2_i64:
|
|
||||||
return TCG_TARGET_HAS_mulu2_i64;
|
|
||||||
|
|
||||||
case INDEX_op_mov_vec:
|
case INDEX_op_mov_vec:
|
||||||
case INDEX_op_dup_vec:
|
case INDEX_op_dup_vec:
|
||||||
|
@ -5476,6 +5474,8 @@ static void tcg_reg_alloc_op(TCGContext *s, const TCGOp *op)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INDEX_op_muls2:
|
case INDEX_op_muls2:
|
||||||
|
case INDEX_op_mulu2_i32:
|
||||||
|
case INDEX_op_mulu2_i64:
|
||||||
{
|
{
|
||||||
const TCGOutOpMul2 *out =
|
const TCGOutOpMul2 *out =
|
||||||
container_of(all_outop[op->opc], TCGOutOpMul2, base);
|
container_of(all_outop[op->opc], TCGOutOpMul2, base);
|
||||||
|
|
23
tcg/tci.c
23
tcg/tci.c
|
@ -588,6 +588,16 @@ uintptr_t QEMU_DISABLE_CFI tcg_qemu_tb_exec(CPUArchState *env,
|
||||||
tci_write_reg64(regs, r1, r0, tmp64);
|
tci_write_reg64(regs, r1, r0, tmp64);
|
||||||
#else
|
#else
|
||||||
muls64(®s[r0], ®s[r1], regs[r2], regs[r3]);
|
muls64(®s[r0], ®s[r1], regs[r2], regs[r3]);
|
||||||
|
#endif
|
||||||
|
break;
|
||||||
|
case INDEX_op_mulu2_i32:
|
||||||
|
case INDEX_op_mulu2_i64:
|
||||||
|
tci_args_rrrr(insn, &r0, &r1, &r2, &r3);
|
||||||
|
#if TCG_TARGET_REG_BITS == 32
|
||||||
|
tmp64 = (uint64_t)(uint32_t)regs[r2] * (uint32_t)regs[r3];
|
||||||
|
tci_write_reg64(regs, r1, r0, tmp64);
|
||||||
|
#else
|
||||||
|
mulu64(®s[r0], ®s[r1], regs[r2], regs[r3]);
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -677,13 +687,6 @@ uintptr_t QEMU_DISABLE_CFI tcg_qemu_tb_exec(CPUArchState *env,
|
||||||
tci_write_reg64(regs, r1, r0, T1 - T2);
|
tci_write_reg64(regs, r1, r0, T1 - T2);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#if TCG_TARGET_HAS_mulu2_i32
|
|
||||||
case INDEX_op_mulu2_i32:
|
|
||||||
tci_args_rrrr(insn, &r0, &r1, &r2, &r3);
|
|
||||||
tmp64 = (uint64_t)(uint32_t)regs[r2] * (uint32_t)regs[r3];
|
|
||||||
tci_write_reg64(regs, r1, r0, tmp64);
|
|
||||||
break;
|
|
||||||
#endif
|
|
||||||
#if TCG_TARGET_HAS_bswap16_i32 || TCG_TARGET_HAS_bswap16_i64
|
#if TCG_TARGET_HAS_bswap16_i32 || TCG_TARGET_HAS_bswap16_i64
|
||||||
CASE_32_64(bswap16)
|
CASE_32_64(bswap16)
|
||||||
tci_args_rr(insn, &r0, &r1);
|
tci_args_rr(insn, &r0, &r1);
|
||||||
|
@ -741,12 +744,6 @@ uintptr_t QEMU_DISABLE_CFI tcg_qemu_tb_exec(CPUArchState *env,
|
||||||
tci_args_rrr(insn, &r0, &r1, &r2);
|
tci_args_rrr(insn, &r0, &r1, &r2);
|
||||||
regs[r0] = regs[r1] ? ctz64(regs[r1]) : regs[r2];
|
regs[r0] = regs[r1] ? ctz64(regs[r1]) : regs[r2];
|
||||||
break;
|
break;
|
||||||
#if TCG_TARGET_HAS_mulu2_i64
|
|
||||||
case INDEX_op_mulu2_i64:
|
|
||||||
tci_args_rrrr(insn, &r0, &r1, &r2, &r3);
|
|
||||||
mulu64(®s[r0], ®s[r1], regs[r2], regs[r3]);
|
|
||||||
break;
|
|
||||||
#endif
|
|
||||||
#if TCG_TARGET_HAS_add2_i64
|
#if TCG_TARGET_HAS_add2_i64
|
||||||
case INDEX_op_add2_i64:
|
case INDEX_op_add2_i64:
|
||||||
tci_args_rrrrrr(insn, &r0, &r1, &r2, &r3, &r4, &r5);
|
tci_args_rrrrrr(insn, &r0, &r1, &r2, &r3, &r4, &r5);
|
||||||
|
|
|
@ -22,12 +22,8 @@
|
||||||
#define TCG_TARGET_HAS_negsetcond_i64 0
|
#define TCG_TARGET_HAS_negsetcond_i64 0
|
||||||
#define TCG_TARGET_HAS_add2_i32 1
|
#define TCG_TARGET_HAS_add2_i32 1
|
||||||
#define TCG_TARGET_HAS_sub2_i32 1
|
#define TCG_TARGET_HAS_sub2_i32 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i32 1
|
|
||||||
#define TCG_TARGET_HAS_add2_i64 1
|
#define TCG_TARGET_HAS_add2_i64 1
|
||||||
#define TCG_TARGET_HAS_sub2_i64 1
|
#define TCG_TARGET_HAS_sub2_i64 1
|
||||||
#define TCG_TARGET_HAS_mulu2_i64 1
|
|
||||||
#else
|
|
||||||
#define TCG_TARGET_HAS_mulu2_i32 1
|
|
||||||
#endif /* TCG_TARGET_REG_BITS == 64 */
|
#endif /* TCG_TARGET_REG_BITS == 64 */
|
||||||
|
|
||||||
#define TCG_TARGET_HAS_qemu_ldst_i128 0
|
#define TCG_TARGET_HAS_qemu_ldst_i128 0
|
||||||
|
|
|
@ -98,10 +98,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
return C_O0_I4(r, r, r, r);
|
return C_O0_I4(r, r, r, r);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
case INDEX_op_mulu2_i32:
|
|
||||||
case INDEX_op_mulu2_i64:
|
|
||||||
return C_O2_I2(r, r, r, r);
|
|
||||||
|
|
||||||
case INDEX_op_movcond_i32:
|
case INDEX_op_movcond_i32:
|
||||||
case INDEX_op_movcond_i64:
|
case INDEX_op_movcond_i64:
|
||||||
case INDEX_op_setcond2_i32:
|
case INDEX_op_setcond2_i32:
|
||||||
|
@ -729,6 +725,19 @@ static const TCGOutOpBinary outop_mulsh = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void tgen_mulu2(TCGContext *s, TCGType type,
|
||||||
|
TCGReg a0, TCGReg a1, TCGReg a2, TCGReg a3)
|
||||||
|
{
|
||||||
|
tcg_out_op_rrrr(s, glue(INDEX_op_mulu2_i,TCG_TARGET_REG_BITS),
|
||||||
|
a0, a1, a2, a3);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const TCGOutOpMul2 outop_mulu2 = {
|
||||||
|
.base.static_constraint = C_Dynamic,
|
||||||
|
.base.dynamic_constraint = cset_mul2,
|
||||||
|
.out_rrrr = tgen_mulu2,
|
||||||
|
};
|
||||||
|
|
||||||
static const TCGOutOpBinary outop_muluh = {
|
static const TCGOutOpBinary outop_muluh = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
@ -1023,10 +1032,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
CASE_32_64(mulu2)
|
|
||||||
tcg_out_op_rrrr(s, opc, args[0], args[1], args[2], args[3]);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case INDEX_op_qemu_ld_i64:
|
case INDEX_op_qemu_ld_i64:
|
||||||
case INDEX_op_qemu_st_i64:
|
case INDEX_op_qemu_st_i64:
|
||||||
if (TCG_TARGET_REG_BITS == 32) {
|
if (TCG_TARGET_REG_BITS == 32) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue