mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
tcg: Convert remu to TCGOutOpBinary
For TCI, we're losing type information in the interpreter. Introduce a tci-specific opcode to handle the difference. Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
9a6bc1840e
commit
967e7ccd9c
25 changed files with 112 additions and 101 deletions
|
@ -13,7 +13,6 @@
|
||||||
#define have_lse2 (cpuinfo & CPUINFO_LSE2)
|
#define have_lse2 (cpuinfo & CPUINFO_LSE2)
|
||||||
|
|
||||||
/* optional instructions */
|
/* optional instructions */
|
||||||
#define TCG_TARGET_HAS_rem_i32 1
|
|
||||||
#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_rot_i32 1
|
#define TCG_TARGET_HAS_rot_i32 1
|
||||||
|
@ -29,7 +28,6 @@
|
||||||
#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
|
||||||
|
|
||||||
#define TCG_TARGET_HAS_rem_i64 1
|
|
||||||
#define TCG_TARGET_HAS_bswap16_i64 1
|
#define TCG_TARGET_HAS_bswap16_i64 1
|
||||||
#define TCG_TARGET_HAS_bswap32_i64 1
|
#define TCG_TARGET_HAS_bswap32_i64 1
|
||||||
#define TCG_TARGET_HAS_bswap64_i64 1
|
#define TCG_TARGET_HAS_bswap64_i64 1
|
||||||
|
|
|
@ -2287,6 +2287,18 @@ static const TCGOutOpBinary outop_rems = {
|
||||||
.out_rrr = tgen_rems,
|
.out_rrr = tgen_rems,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void tgen_remu(TCGContext *s, TCGType type,
|
||||||
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
|
{
|
||||||
|
tcg_out_insn(s, 3508, UDIV, type, TCG_REG_TMP0, a1, a2);
|
||||||
|
tcg_out_insn(s, 3509, MSUB, type, a0, TCG_REG_TMP0, a2, a1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const TCGOutOpBinary outop_remu = {
|
||||||
|
.base.static_constraint = C_O1_I2(r, r, r),
|
||||||
|
.out_rrr = tgen_remu,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_sub(TCGContext *s, TCGType type,
|
static void tgen_sub(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
@ -2404,12 +2416,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType ext,
|
||||||
tcg_out_ldst(s, I3312_STRX, a0, a1, a2, 3);
|
tcg_out_ldst(s, I3312_STRX, a0, a1, a2, 3);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INDEX_op_remu_i64:
|
|
||||||
case INDEX_op_remu_i32:
|
|
||||||
tcg_out_insn(s, 3508, UDIV, ext, TCG_REG_TMP0, a1, a2);
|
|
||||||
tcg_out_insn(s, 3509, MSUB, ext, a0, TCG_REG_TMP0, a2, a1);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case INDEX_op_shl_i64:
|
case INDEX_op_shl_i64:
|
||||||
case INDEX_op_shl_i32:
|
case INDEX_op_shl_i32:
|
||||||
if (c2) {
|
if (c2) {
|
||||||
|
@ -3085,10 +3091,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
case INDEX_op_negsetcond_i64:
|
case INDEX_op_negsetcond_i64:
|
||||||
return C_O1_I2(r, r, rC);
|
return C_O1_I2(r, r, rC);
|
||||||
|
|
||||||
case INDEX_op_remu_i32:
|
|
||||||
case INDEX_op_remu_i64:
|
|
||||||
return C_O1_I2(r, r, r);
|
|
||||||
|
|
||||||
case INDEX_op_shl_i32:
|
case INDEX_op_shl_i32:
|
||||||
case INDEX_op_shr_i32:
|
case INDEX_op_shr_i32:
|
||||||
case INDEX_op_sar_i32:
|
case INDEX_op_sar_i32:
|
||||||
|
|
|
@ -34,7 +34,6 @@ extern bool use_neon_instructions;
|
||||||
#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_mulu2_i32 1
|
||||||
#define TCG_TARGET_HAS_muls2_i32 1
|
#define TCG_TARGET_HAS_muls2_i32 1
|
||||||
#define TCG_TARGET_HAS_rem_i32 0
|
|
||||||
#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
|
||||||
|
|
|
@ -1959,6 +1959,10 @@ static const TCGOutOpBinary outop_rems = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const TCGOutOpBinary outop_remu = {
|
||||||
|
.base.static_constraint = C_NotImplemented,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_sub(TCGContext *s, TCGType type,
|
static void tgen_sub(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
|
|
@ -2740,6 +2740,10 @@ static const TCGOutOpBinary outop_rems = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const TCGOutOpBinary outop_remu = {
|
||||||
|
.base.static_constraint = C_NotImplemented,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_sub(TCGContext *s, TCGType type,
|
static void tgen_sub(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
|
|
@ -31,7 +31,6 @@ C_O1_I2(r, r, rW)
|
||||||
C_O1_I2(r, 0, rz)
|
C_O1_I2(r, 0, rz)
|
||||||
C_O1_I2(r, rz, ri)
|
C_O1_I2(r, rz, ri)
|
||||||
C_O1_I2(r, rz, rJ)
|
C_O1_I2(r, rz, rJ)
|
||||||
C_O1_I2(r, rz, rz)
|
|
||||||
C_O1_I2(w, w, w)
|
C_O1_I2(w, w, w)
|
||||||
C_O1_I2(w, w, wM)
|
C_O1_I2(w, w, wM)
|
||||||
C_O1_I2(w, w, wA)
|
C_O1_I2(w, w, wA)
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
|
|
||||||
/* optional instructions */
|
/* optional instructions */
|
||||||
#define TCG_TARGET_HAS_negsetcond_i32 0
|
#define TCG_TARGET_HAS_negsetcond_i32 0
|
||||||
#define TCG_TARGET_HAS_rem_i32 1
|
|
||||||
#define TCG_TARGET_HAS_rot_i32 1
|
#define TCG_TARGET_HAS_rot_i32 1
|
||||||
#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
|
||||||
|
@ -27,7 +26,6 @@
|
||||||
|
|
||||||
/* 64-bit operations */
|
/* 64-bit operations */
|
||||||
#define TCG_TARGET_HAS_negsetcond_i64 0
|
#define TCG_TARGET_HAS_negsetcond_i64 0
|
||||||
#define TCG_TARGET_HAS_rem_i64 1
|
|
||||||
#define TCG_TARGET_HAS_rot_i64 1
|
#define TCG_TARGET_HAS_rot_i64 1
|
||||||
#define TCG_TARGET_HAS_extract2_i64 0
|
#define TCG_TARGET_HAS_extract2_i64 0
|
||||||
#define TCG_TARGET_HAS_extr_i64_i32 1
|
#define TCG_TARGET_HAS_extr_i64_i32 1
|
||||||
|
|
|
@ -1474,6 +1474,21 @@ static const TCGOutOpBinary outop_rems = {
|
||||||
.out_rrr = tgen_rems,
|
.out_rrr = tgen_rems,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void tgen_remu(TCGContext *s, TCGType type,
|
||||||
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
|
{
|
||||||
|
if (type == TCG_TYPE_I32) {
|
||||||
|
tcg_out_opc_mod_wu(s, a0, a1, a2);
|
||||||
|
} else {
|
||||||
|
tcg_out_opc_mod_du(s, a0, a1, a2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static const TCGOutOpBinary outop_remu = {
|
||||||
|
.base.static_constraint = C_O1_I2(r, r, r),
|
||||||
|
.out_rrr = tgen_remu,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_sub(TCGContext *s, TCGType type,
|
static void tgen_sub(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
@ -1724,13 +1739,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INDEX_op_remu_i32:
|
|
||||||
tcg_out_opc_mod_wu(s, a0, a1, a2);
|
|
||||||
break;
|
|
||||||
case INDEX_op_remu_i64:
|
|
||||||
tcg_out_opc_mod_du(s, a0, a1, a2);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case INDEX_op_setcond_i32:
|
case INDEX_op_setcond_i32:
|
||||||
case INDEX_op_setcond_i64:
|
case INDEX_op_setcond_i64:
|
||||||
tcg_out_setcond(s, args[3], a0, a1, a2, c2);
|
tcg_out_setcond(s, args[3], a0, a1, a2, c2);
|
||||||
|
@ -2389,10 +2397,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
case INDEX_op_setcond_i64:
|
case INDEX_op_setcond_i64:
|
||||||
return C_O1_I2(r, rz, rJ);
|
return C_O1_I2(r, rz, rJ);
|
||||||
|
|
||||||
case INDEX_op_remu_i32:
|
|
||||||
case INDEX_op_remu_i64:
|
|
||||||
return C_O1_I2(r, rz, rz);
|
|
||||||
|
|
||||||
case INDEX_op_movcond_i32:
|
case INDEX_op_movcond_i32:
|
||||||
case INDEX_op_movcond_i64:
|
case INDEX_op_movcond_i64:
|
||||||
return C_O1_I4(r, rz, rJ, rz, rz);
|
return C_O1_I4(r, rz, rJ, rz, rz);
|
||||||
|
|
|
@ -39,7 +39,6 @@ extern bool use_mips32r2_instructions;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* optional instructions */
|
/* optional instructions */
|
||||||
#define TCG_TARGET_HAS_rem_i32 1
|
|
||||||
#define TCG_TARGET_HAS_mulu2_i32 (!use_mips32r6_instructions)
|
#define TCG_TARGET_HAS_mulu2_i32 (!use_mips32r6_instructions)
|
||||||
#define TCG_TARGET_HAS_muls2_i32 (!use_mips32r6_instructions)
|
#define TCG_TARGET_HAS_muls2_i32 (!use_mips32r6_instructions)
|
||||||
#define TCG_TARGET_HAS_bswap16_i32 1
|
#define TCG_TARGET_HAS_bswap16_i32 1
|
||||||
|
@ -50,7 +49,6 @@ extern bool use_mips32r2_instructions;
|
||||||
#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_extr_i64_i32 1
|
#define TCG_TARGET_HAS_extr_i64_i32 1
|
||||||
#define TCG_TARGET_HAS_rem_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 (!use_mips32r6_instructions)
|
#define TCG_TARGET_HAS_mulu2_i64 (!use_mips32r6_instructions)
|
||||||
|
|
|
@ -1887,6 +1887,27 @@ static const TCGOutOpBinary outop_rems = {
|
||||||
.out_rrr = tgen_rems,
|
.out_rrr = tgen_rems,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void tgen_remu(TCGContext *s, TCGType type,
|
||||||
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
|
{
|
||||||
|
if (use_mips32r6_instructions) {
|
||||||
|
if (type == TCG_TYPE_I32) {
|
||||||
|
tcg_out_opc_reg(s, OPC_MODU, a0, a1, a2);
|
||||||
|
} else {
|
||||||
|
tcg_out_opc_reg(s, OPC_DMODU, a0, a1, a2);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
MIPSInsn insn = type == TCG_TYPE_I32 ? OPC_DIVU : OPC_DDIVU;
|
||||||
|
tcg_out_opc_reg(s, insn, 0, a1, a2);
|
||||||
|
tcg_out_opc_reg(s, OPC_MFHI, a0, 0, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static const TCGOutOpBinary outop_remu = {
|
||||||
|
.base.static_constraint = C_O1_I2(r, r, r),
|
||||||
|
.out_rrr = tgen_remu,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_sub(TCGContext *s, TCGType type,
|
static void tgen_sub(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
@ -2010,24 +2031,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_remu_i32:
|
|
||||||
if (use_mips32r6_instructions) {
|
|
||||||
tcg_out_opc_reg(s, OPC_MODU, a0, a1, a2);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
i1 = OPC_DIVU, i2 = OPC_MFHI;
|
|
||||||
goto do_hilo1;
|
|
||||||
case INDEX_op_remu_i64:
|
|
||||||
if (use_mips32r6_instructions) {
|
|
||||||
tcg_out_opc_reg(s, OPC_DMODU, a0, a1, a2);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
i1 = OPC_DDIVU, i2 = OPC_MFHI;
|
|
||||||
do_hilo1:
|
|
||||||
tcg_out_opc_reg(s, i1, 0, a1, a2);
|
|
||||||
tcg_out_opc_reg(s, i2, a0, 0, 0);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case INDEX_op_muls2_i32:
|
case INDEX_op_muls2_i32:
|
||||||
i1 = OPC_MULT;
|
i1 = OPC_MULT;
|
||||||
goto do_hilo2;
|
goto do_hilo2;
|
||||||
|
@ -2282,9 +2285,7 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
case INDEX_op_st_i64:
|
case INDEX_op_st_i64:
|
||||||
return C_O0_I2(rz, r);
|
return C_O0_I2(rz, r);
|
||||||
|
|
||||||
case INDEX_op_remu_i32:
|
|
||||||
case INDEX_op_setcond_i32:
|
case INDEX_op_setcond_i32:
|
||||||
case INDEX_op_remu_i64:
|
|
||||||
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_muls2_i32:
|
case INDEX_op_muls2_i32:
|
||||||
|
|
|
@ -17,7 +17,6 @@
|
||||||
#define have_vsx (cpuinfo & CPUINFO_VSX)
|
#define have_vsx (cpuinfo & CPUINFO_VSX)
|
||||||
|
|
||||||
/* optional instructions */
|
/* optional instructions */
|
||||||
#define TCG_TARGET_HAS_rem_i32 have_isa_3_00
|
|
||||||
#define TCG_TARGET_HAS_rot_i32 1
|
#define TCG_TARGET_HAS_rot_i32 1
|
||||||
#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
|
||||||
|
@ -34,7 +33,6 @@
|
||||||
#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_extr_i64_i32 0
|
#define TCG_TARGET_HAS_extr_i64_i32 0
|
||||||
#define TCG_TARGET_HAS_rem_i64 have_isa_3_00
|
|
||||||
#define TCG_TARGET_HAS_rot_i64 1
|
#define TCG_TARGET_HAS_rot_i64 1
|
||||||
#define TCG_TARGET_HAS_bswap16_i64 1
|
#define TCG_TARGET_HAS_bswap16_i64 1
|
||||||
#define TCG_TARGET_HAS_bswap32_i64 1
|
#define TCG_TARGET_HAS_bswap32_i64 1
|
||||||
|
|
|
@ -3109,6 +3109,19 @@ static const TCGOutOpBinary outop_rems = {
|
||||||
.out_rrr = tgen_rems,
|
.out_rrr = tgen_rems,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void tgen_remu(TCGContext *s, TCGType type,
|
||||||
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
|
{
|
||||||
|
uint32_t insn = type == TCG_TYPE_I32 ? MODUW : MODUD;
|
||||||
|
tcg_out32(s, insn | TAB(a0, a1, a2));
|
||||||
|
}
|
||||||
|
|
||||||
|
static const TCGOutOpBinary outop_remu = {
|
||||||
|
.base.static_constraint = C_Dynamic,
|
||||||
|
.base.dynamic_constraint = cset_mod,
|
||||||
|
.out_rrr = tgen_remu,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_sub(TCGContext *s, TCGType type,
|
static void tgen_sub(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
@ -3259,10 +3272,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||||
tcg_out32(s, CNTPOPD | SAB(args[1], args[0], 0));
|
tcg_out32(s, CNTPOPD | SAB(args[1], args[0], 0));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INDEX_op_remu_i32:
|
|
||||||
tcg_out32(s, MODUW | TAB(args[0], args[1], args[2]));
|
|
||||||
break;
|
|
||||||
|
|
||||||
case INDEX_op_shl_i32:
|
case INDEX_op_shl_i32:
|
||||||
if (const_args[2]) {
|
if (const_args[2]) {
|
||||||
/* Limit immediate shift count lest we create an illegal insn. */
|
/* Limit immediate shift count lest we create an illegal insn. */
|
||||||
|
@ -3355,10 +3364,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INDEX_op_remu_i64:
|
|
||||||
tcg_out32(s, MODUD | TAB(args[0], args[1], args[2]));
|
|
||||||
break;
|
|
||||||
|
|
||||||
case INDEX_op_qemu_ld_i32:
|
case INDEX_op_qemu_ld_i32:
|
||||||
tcg_out_qemu_ld(s, args[0], -1, args[1], args[2], TCG_TYPE_I32);
|
tcg_out_qemu_ld(s, args[0], -1, args[1], args[2], TCG_TYPE_I32);
|
||||||
break;
|
break;
|
||||||
|
@ -4213,10 +4218,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
case INDEX_op_rotr_i64:
|
case INDEX_op_rotr_i64:
|
||||||
return C_O1_I2(r, r, ri);
|
return C_O1_I2(r, r, ri);
|
||||||
|
|
||||||
case INDEX_op_remu_i32:
|
|
||||||
case INDEX_op_remu_i64:
|
|
||||||
return C_O1_I2(r, r, r);
|
|
||||||
|
|
||||||
case INDEX_op_clz_i32:
|
case INDEX_op_clz_i32:
|
||||||
case INDEX_op_ctz_i32:
|
case INDEX_op_ctz_i32:
|
||||||
case INDEX_op_clz_i64:
|
case INDEX_op_clz_i64:
|
||||||
|
|
|
@ -16,7 +16,6 @@ C_O1_I1(r, r)
|
||||||
C_O1_I2(r, r, r)
|
C_O1_I2(r, r, r)
|
||||||
C_O1_I2(r, r, ri)
|
C_O1_I2(r, r, ri)
|
||||||
C_O1_I2(r, r, rI)
|
C_O1_I2(r, r, rI)
|
||||||
C_O1_I2(r, rz, rz)
|
|
||||||
C_N1_I2(r, r, rM)
|
C_N1_I2(r, r, rM)
|
||||||
C_O1_I4(r, r, rI, rM, rM)
|
C_O1_I4(r, r, rI, rM, rM)
|
||||||
C_O2_I4(r, r, rz, rz, rM, rM)
|
C_O2_I4(r, r, rz, rz, rM, rM)
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
|
|
||||||
/* optional instructions */
|
/* optional instructions */
|
||||||
#define TCG_TARGET_HAS_negsetcond_i32 1
|
#define TCG_TARGET_HAS_negsetcond_i32 1
|
||||||
#define TCG_TARGET_HAS_rem_i32 1
|
|
||||||
#define TCG_TARGET_HAS_rot_i32 (cpuinfo & CPUINFO_ZBB)
|
#define TCG_TARGET_HAS_rot_i32 (cpuinfo & CPUINFO_ZBB)
|
||||||
#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
|
||||||
|
@ -26,7 +25,6 @@
|
||||||
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
#define TCG_TARGET_HAS_qemu_st8_i32 0
|
||||||
|
|
||||||
#define TCG_TARGET_HAS_negsetcond_i64 1
|
#define TCG_TARGET_HAS_negsetcond_i64 1
|
||||||
#define TCG_TARGET_HAS_rem_i64 1
|
|
||||||
#define TCG_TARGET_HAS_rot_i64 (cpuinfo & CPUINFO_ZBB)
|
#define TCG_TARGET_HAS_rot_i64 (cpuinfo & CPUINFO_ZBB)
|
||||||
#define TCG_TARGET_HAS_extract2_i64 0
|
#define TCG_TARGET_HAS_extract2_i64 0
|
||||||
#define TCG_TARGET_HAS_extr_i64_i32 1
|
#define TCG_TARGET_HAS_extr_i64_i32 1
|
||||||
|
|
|
@ -2132,6 +2132,18 @@ static const TCGOutOpBinary outop_rems = {
|
||||||
.out_rrr = tgen_rems,
|
.out_rrr = tgen_rems,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void tgen_remu(TCGContext *s, TCGType type,
|
||||||
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
|
{
|
||||||
|
RISCVInsn insn = type == TCG_TYPE_I32 ? OPC_REMUW : OPC_REMU;
|
||||||
|
tcg_out_opc_reg(s, insn, a0, a1, a2);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const TCGOutOpBinary outop_remu = {
|
||||||
|
.base.static_constraint = C_O1_I2(r, r, r),
|
||||||
|
.out_rrr = tgen_remu,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_sub(TCGContext *s, TCGType type,
|
static void tgen_sub(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
@ -2245,13 +2257,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||||
tcg_out_ldst(s, OPC_SD, a0, a1, a2);
|
tcg_out_ldst(s, OPC_SD, a0, a1, a2);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INDEX_op_remu_i32:
|
|
||||||
tcg_out_opc_reg(s, OPC_REMUW, a0, a1, a2);
|
|
||||||
break;
|
|
||||||
case INDEX_op_remu_i64:
|
|
||||||
tcg_out_opc_reg(s, OPC_REMU, a0, a1, a2);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case INDEX_op_shl_i32:
|
case INDEX_op_shl_i32:
|
||||||
if (c2) {
|
if (c2) {
|
||||||
tcg_out_opc_imm(s, OPC_SLLIW, a0, a1, a2 & 0x1f);
|
tcg_out_opc_imm(s, OPC_SLLIW, a0, a1, a2 & 0x1f);
|
||||||
|
@ -2753,10 +2758,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
case INDEX_op_negsetcond_i64:
|
case INDEX_op_negsetcond_i64:
|
||||||
return C_O1_I2(r, r, rI);
|
return C_O1_I2(r, r, rI);
|
||||||
|
|
||||||
case INDEX_op_remu_i32:
|
|
||||||
case INDEX_op_remu_i64:
|
|
||||||
return C_O1_I2(r, rz, rz);
|
|
||||||
|
|
||||||
case INDEX_op_shl_i32:
|
case INDEX_op_shl_i32:
|
||||||
case INDEX_op_shr_i32:
|
case INDEX_op_shr_i32:
|
||||||
case INDEX_op_sar_i32:
|
case INDEX_op_sar_i32:
|
||||||
|
|
|
@ -2441,6 +2441,10 @@ static const TCGOutOpBinary outop_rems = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const TCGOutOpBinary outop_remu = {
|
||||||
|
.base.static_constraint = C_NotImplemented,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_sub(TCGContext *s, TCGType type,
|
static void tgen_sub(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
|
|
@ -14,7 +14,6 @@ extern bool use_vis3_instructions;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* optional instructions */
|
/* optional instructions */
|
||||||
#define TCG_TARGET_HAS_rem_i32 0
|
|
||||||
#define TCG_TARGET_HAS_rot_i32 0
|
#define TCG_TARGET_HAS_rot_i32 0
|
||||||
#define TCG_TARGET_HAS_bswap16_i32 0
|
#define TCG_TARGET_HAS_bswap16_i32 0
|
||||||
#define TCG_TARGET_HAS_bswap32_i32 0
|
#define TCG_TARGET_HAS_bswap32_i32 0
|
||||||
|
@ -30,7 +29,6 @@ extern bool use_vis3_instructions;
|
||||||
#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
|
||||||
#define TCG_TARGET_HAS_rem_i64 0
|
|
||||||
#define TCG_TARGET_HAS_rot_i64 0
|
#define TCG_TARGET_HAS_rot_i64 0
|
||||||
#define TCG_TARGET_HAS_bswap16_i64 0
|
#define TCG_TARGET_HAS_bswap16_i64 0
|
||||||
#define TCG_TARGET_HAS_bswap32_i64 0
|
#define TCG_TARGET_HAS_bswap32_i64 0
|
||||||
|
|
|
@ -1480,6 +1480,10 @@ static const TCGOutOpBinary outop_rems = {
|
||||||
.base.static_constraint = C_NotImplemented,
|
.base.static_constraint = C_NotImplemented,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const TCGOutOpBinary outop_remu = {
|
||||||
|
.base.static_constraint = C_NotImplemented,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_sub(TCGContext *s, TCGType type,
|
static void tgen_sub(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,8 +12,6 @@
|
||||||
#if TCG_TARGET_REG_BITS == 32
|
#if TCG_TARGET_REG_BITS == 32
|
||||||
/* Turn some undef macros into false macros. */
|
/* Turn some undef macros into false macros. */
|
||||||
#define TCG_TARGET_HAS_extr_i64_i32 0
|
#define TCG_TARGET_HAS_extr_i64_i32 0
|
||||||
#define TCG_TARGET_HAS_div_i64 0
|
|
||||||
#define TCG_TARGET_HAS_rem_i64 0
|
|
||||||
#define TCG_TARGET_HAS_rot_i64 0
|
#define TCG_TARGET_HAS_rot_i64 0
|
||||||
#define TCG_TARGET_HAS_bswap16_i64 0
|
#define TCG_TARGET_HAS_bswap16_i64 0
|
||||||
#define TCG_TARGET_HAS_bswap32_i64 0
|
#define TCG_TARGET_HAS_bswap32_i64 0
|
||||||
|
@ -32,13 +30,6 @@
|
||||||
#define TCG_TARGET_HAS_sub2_i32 1
|
#define TCG_TARGET_HAS_sub2_i32 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef TCG_TARGET_HAS_rem_i32
|
|
||||||
#define TCG_TARGET_HAS_rem_i32 0
|
|
||||||
#endif
|
|
||||||
#ifndef TCG_TARGET_HAS_rem_i64
|
|
||||||
#define TCG_TARGET_HAS_rem_i64 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !defined(TCG_TARGET_HAS_v64) \
|
#if !defined(TCG_TARGET_HAS_v64) \
|
||||||
&& !defined(TCG_TARGET_HAS_v128) \
|
&& !defined(TCG_TARGET_HAS_v128) \
|
||||||
&& !defined(TCG_TARGET_HAS_v256)
|
&& !defined(TCG_TARGET_HAS_v256)
|
||||||
|
|
|
@ -649,7 +649,7 @@ void tcg_gen_divu_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
|
||||||
|
|
||||||
void tcg_gen_remu_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
|
void tcg_gen_remu_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
|
||||||
{
|
{
|
||||||
if (TCG_TARGET_HAS_rem_i32) {
|
if (tcg_op_supported(INDEX_op_remu_i32, TCG_TYPE_I32, 0)) {
|
||||||
tcg_gen_op3_i32(INDEX_op_remu_i32, ret, arg1, arg2);
|
tcg_gen_op3_i32(INDEX_op_remu_i32, ret, arg1, arg2);
|
||||||
} else if (tcg_op_supported(INDEX_op_divu, TCG_TYPE_I32, 0)) {
|
} else if (tcg_op_supported(INDEX_op_divu, TCG_TYPE_I32, 0)) {
|
||||||
TCGv_i32 t0 = tcg_temp_ebb_new_i32();
|
TCGv_i32 t0 = tcg_temp_ebb_new_i32();
|
||||||
|
@ -2017,7 +2017,7 @@ void tcg_gen_divu_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
|
||||||
|
|
||||||
void tcg_gen_remu_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
|
void tcg_gen_remu_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
|
||||||
{
|
{
|
||||||
if (TCG_TARGET_HAS_rem_i64) {
|
if (tcg_op_supported(INDEX_op_remu_i64, TCG_TYPE_I64, 0)) {
|
||||||
tcg_gen_op3_i64(INDEX_op_remu_i64, ret, arg1, arg2);
|
tcg_gen_op3_i64(INDEX_op_remu_i64, ret, arg1, arg2);
|
||||||
} else if (tcg_op_supported(INDEX_op_divu, TCG_TYPE_I64, 0)) {
|
} else if (tcg_op_supported(INDEX_op_divu, TCG_TYPE_I64, 0)) {
|
||||||
TCGv_i64 t0 = tcg_temp_ebb_new_i64();
|
TCGv_i64 t0 = tcg_temp_ebb_new_i64();
|
||||||
|
|
|
@ -1041,6 +1041,8 @@ static const TCGOutOp * const all_outop[NB_OPS] = {
|
||||||
OUTOP(INDEX_op_or, TCGOutOpBinary, outop_or),
|
OUTOP(INDEX_op_or, TCGOutOpBinary, outop_or),
|
||||||
OUTOP(INDEX_op_orc, TCGOutOpBinary, outop_orc),
|
OUTOP(INDEX_op_orc, TCGOutOpBinary, outop_orc),
|
||||||
OUTOP(INDEX_op_rems, TCGOutOpBinary, outop_rems),
|
OUTOP(INDEX_op_rems, TCGOutOpBinary, outop_rems),
|
||||||
|
OUTOP(INDEX_op_remu_i32, TCGOutOpBinary, outop_remu),
|
||||||
|
OUTOP(INDEX_op_remu_i64, TCGOutOpBinary, outop_remu),
|
||||||
OUTOP(INDEX_op_sub, TCGOutOpSubtract, outop_sub),
|
OUTOP(INDEX_op_sub, TCGOutOpSubtract, outop_sub),
|
||||||
OUTOP(INDEX_op_xor, TCGOutOpBinary, outop_xor),
|
OUTOP(INDEX_op_xor, TCGOutOpBinary, outop_xor),
|
||||||
};
|
};
|
||||||
|
@ -2271,8 +2273,6 @@ bool tcg_op_supported(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
|
|
||||||
case INDEX_op_negsetcond_i32:
|
case INDEX_op_negsetcond_i32:
|
||||||
return TCG_TARGET_HAS_negsetcond_i32;
|
return TCG_TARGET_HAS_negsetcond_i32;
|
||||||
case INDEX_op_remu_i32:
|
|
||||||
return TCG_TARGET_HAS_rem_i32;
|
|
||||||
case INDEX_op_rotl_i32:
|
case INDEX_op_rotl_i32:
|
||||||
case INDEX_op_rotr_i32:
|
case INDEX_op_rotr_i32:
|
||||||
return TCG_TARGET_HAS_rot_i32;
|
return TCG_TARGET_HAS_rot_i32;
|
||||||
|
@ -2327,8 +2327,6 @@ bool tcg_op_supported(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
|
|
||||||
case INDEX_op_negsetcond_i64:
|
case INDEX_op_negsetcond_i64:
|
||||||
return TCG_TARGET_HAS_negsetcond_i64;
|
return TCG_TARGET_HAS_negsetcond_i64;
|
||||||
case INDEX_op_remu_i64:
|
|
||||||
return TCG_TARGET_HAS_rem_i64;
|
|
||||||
case INDEX_op_rotl_i64:
|
case INDEX_op_rotl_i64:
|
||||||
case INDEX_op_rotr_i64:
|
case INDEX_op_rotr_i64:
|
||||||
return TCG_TARGET_HAS_rot_i64;
|
return TCG_TARGET_HAS_rot_i64;
|
||||||
|
@ -5425,6 +5423,8 @@ static void tcg_reg_alloc_op(TCGContext *s, const TCGOp *op)
|
||||||
case INDEX_op_or:
|
case INDEX_op_or:
|
||||||
case INDEX_op_orc:
|
case INDEX_op_orc:
|
||||||
case INDEX_op_rems:
|
case INDEX_op_rems:
|
||||||
|
case INDEX_op_remu_i32:
|
||||||
|
case INDEX_op_remu_i64:
|
||||||
case INDEX_op_xor:
|
case INDEX_op_xor:
|
||||||
{
|
{
|
||||||
const TCGOutOpBinary *out =
|
const TCGOutOpBinary *out =
|
||||||
|
|
|
@ -590,7 +590,7 @@ 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] = (int32_t)regs[r1] % (int32_t)regs[r2];
|
regs[r0] = (int32_t)regs[r1] % (int32_t)regs[r2];
|
||||||
break;
|
break;
|
||||||
case INDEX_op_remu_i32:
|
case INDEX_op_tci_remu32:
|
||||||
tci_args_rrr(insn, &r0, &r1, &r2);
|
tci_args_rrr(insn, &r0, &r1, &r2);
|
||||||
regs[r0] = (uint32_t)regs[r1] % (uint32_t)regs[r2];
|
regs[r0] = (uint32_t)regs[r1] % (uint32_t)regs[r2];
|
||||||
break;
|
break;
|
||||||
|
@ -1082,7 +1082,6 @@ int print_insn_tci(bfd_vma addr, disassemble_info *info)
|
||||||
case INDEX_op_rems:
|
case INDEX_op_rems:
|
||||||
case INDEX_op_sub:
|
case INDEX_op_sub:
|
||||||
case INDEX_op_xor:
|
case INDEX_op_xor:
|
||||||
case INDEX_op_remu_i32:
|
|
||||||
case INDEX_op_remu_i64:
|
case INDEX_op_remu_i64:
|
||||||
case INDEX_op_shl_i32:
|
case INDEX_op_shl_i32:
|
||||||
case INDEX_op_shl_i64:
|
case INDEX_op_shl_i64:
|
||||||
|
@ -1101,6 +1100,7 @@ int print_insn_tci(bfd_vma addr, disassemble_info *info)
|
||||||
case INDEX_op_tci_divs32:
|
case INDEX_op_tci_divs32:
|
||||||
case INDEX_op_tci_divu32:
|
case INDEX_op_tci_divu32:
|
||||||
case INDEX_op_tci_rems32:
|
case INDEX_op_tci_rems32:
|
||||||
|
case INDEX_op_tci_remu32:
|
||||||
tci_args_rrr(insn, &r0, &r1, &r2);
|
tci_args_rrr(insn, &r0, &r1, &r2);
|
||||||
info->fprintf_func(info->stream, "%-12s %s, %s, %s",
|
info->fprintf_func(info->stream, "%-12s %s, %s, %s",
|
||||||
op_name, str_r(r0), str_r(r1), str_r(r2));
|
op_name, str_r(r0), str_r(r1), str_r(r2));
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
|
|
||||||
#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_rem_i32 1
|
|
||||||
#define TCG_TARGET_HAS_extract2_i32 0
|
#define TCG_TARGET_HAS_extract2_i32 0
|
||||||
#define TCG_TARGET_HAS_clz_i32 1
|
#define TCG_TARGET_HAS_clz_i32 1
|
||||||
#define TCG_TARGET_HAS_ctz_i32 1
|
#define TCG_TARGET_HAS_ctz_i32 1
|
||||||
|
@ -25,7 +24,6 @@
|
||||||
#define TCG_TARGET_HAS_bswap32_i64 1
|
#define TCG_TARGET_HAS_bswap32_i64 1
|
||||||
#define TCG_TARGET_HAS_bswap64_i64 1
|
#define TCG_TARGET_HAS_bswap64_i64 1
|
||||||
#define TCG_TARGET_HAS_extract2_i64 0
|
#define TCG_TARGET_HAS_extract2_i64 0
|
||||||
#define TCG_TARGET_HAS_rem_i64 1
|
|
||||||
#define TCG_TARGET_HAS_clz_i64 1
|
#define TCG_TARGET_HAS_clz_i64 1
|
||||||
#define TCG_TARGET_HAS_ctz_i64 1
|
#define TCG_TARGET_HAS_ctz_i64 1
|
||||||
#define TCG_TARGET_HAS_ctpop_i64 1
|
#define TCG_TARGET_HAS_ctpop_i64 1
|
||||||
|
|
|
@ -5,3 +5,4 @@ DEF(tci_movl, 1, 0, 1, TCG_OPF_NOT_PRESENT)
|
||||||
DEF(tci_divs32, 1, 2, 0, TCG_OPF_NOT_PRESENT)
|
DEF(tci_divs32, 1, 2, 0, TCG_OPF_NOT_PRESENT)
|
||||||
DEF(tci_divu32, 1, 2, 0, TCG_OPF_NOT_PRESENT)
|
DEF(tci_divu32, 1, 2, 0, TCG_OPF_NOT_PRESENT)
|
||||||
DEF(tci_rems32, 1, 2, 0, TCG_OPF_NOT_PRESENT)
|
DEF(tci_rems32, 1, 2, 0, TCG_OPF_NOT_PRESENT)
|
||||||
|
DEF(tci_remu32, 1, 2, 0, TCG_OPF_NOT_PRESENT)
|
||||||
|
|
|
@ -79,8 +79,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
||||||
case INDEX_op_st_i64:
|
case INDEX_op_st_i64:
|
||||||
return C_O0_I2(r, r);
|
return C_O0_I2(r, r);
|
||||||
|
|
||||||
case INDEX_op_remu_i32:
|
|
||||||
case INDEX_op_remu_i64:
|
|
||||||
case INDEX_op_shl_i32:
|
case INDEX_op_shl_i32:
|
||||||
case INDEX_op_shl_i64:
|
case INDEX_op_shl_i64:
|
||||||
case INDEX_op_shr_i32:
|
case INDEX_op_shr_i32:
|
||||||
|
@ -766,6 +764,20 @@ static const TCGOutOpBinary outop_rems = {
|
||||||
.out_rrr = tgen_rems,
|
.out_rrr = tgen_rems,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void tgen_remu(TCGContext *s, TCGType type,
|
||||||
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
|
{
|
||||||
|
TCGOpcode opc = (type == TCG_TYPE_I32
|
||||||
|
? INDEX_op_tci_remu32
|
||||||
|
: INDEX_op_remu_i64);
|
||||||
|
tcg_out_op_rrr(s, opc, a0, a1, a2);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const TCGOutOpBinary outop_remu = {
|
||||||
|
.base.static_constraint = C_O1_I2(r, r, r),
|
||||||
|
.out_rrr = tgen_remu,
|
||||||
|
};
|
||||||
|
|
||||||
static void tgen_sub(TCGContext *s, TCGType type,
|
static void tgen_sub(TCGContext *s, TCGType type,
|
||||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||||
{
|
{
|
||||||
|
@ -855,7 +867,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
||||||
CASE_32_64(sar)
|
CASE_32_64(sar)
|
||||||
CASE_32_64(rotl) /* Optional (TCG_TARGET_HAS_rot_*). */
|
CASE_32_64(rotl) /* Optional (TCG_TARGET_HAS_rot_*). */
|
||||||
CASE_32_64(rotr) /* Optional (TCG_TARGET_HAS_rot_*). */
|
CASE_32_64(rotr) /* Optional (TCG_TARGET_HAS_rot_*). */
|
||||||
CASE_32_64(remu) /* Optional (TCG_TARGET_HAS_div_*). */
|
|
||||||
CASE_32_64(clz) /* Optional (TCG_TARGET_HAS_clz_*). */
|
CASE_32_64(clz) /* Optional (TCG_TARGET_HAS_clz_*). */
|
||||||
CASE_32_64(ctz) /* Optional (TCG_TARGET_HAS_ctz_*). */
|
CASE_32_64(ctz) /* Optional (TCG_TARGET_HAS_ctz_*). */
|
||||||
tcg_out_op_rrr(s, opc, args[0], args[1], args[2]);
|
tcg_out_op_rrr(s, opc, args[0], args[1], args[2]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue