mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-24 10:32:02 -06:00
tcg: Merge INDEX_op_div2_{i32,i64}
Rename to INDEX_op_divs2 to emphasize signed inputs, and mirroring INDEX_op_divu2_*. Document the opcode. Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
d6cad9c927
commit
ee1805b9e6
4 changed files with 20 additions and 14 deletions
|
@ -297,6 +297,15 @@ Arithmetic
|
||||||
- | *t0* = *t1* % *t2* (unsigned)
|
- | *t0* = *t1* % *t2* (unsigned)
|
||||||
| Undefined behavior if division by zero.
|
| Undefined behavior if division by zero.
|
||||||
|
|
||||||
|
* - divs2 *q*, *r*, *nl*, *nh*, *d*
|
||||||
|
|
||||||
|
- | *q* = *nh:nl* / *d* (signed)
|
||||||
|
| *r* = *nh:nl* % *d*
|
||||||
|
| Undefined behaviour if division by zero, or the double-word
|
||||||
|
numerator divided by the single-word divisor does not fit
|
||||||
|
within the single-word quotient. The code generator will
|
||||||
|
pass *nh* as a simple sign-extension of *nl*, so the only
|
||||||
|
overflow should be *INT_MIN* / -1.
|
||||||
|
|
||||||
Logical
|
Logical
|
||||||
-------
|
-------
|
||||||
|
|
|
@ -43,6 +43,7 @@ DEF(add, 1, 2, 0, TCG_OPF_INT)
|
||||||
DEF(and, 1, 2, 0, TCG_OPF_INT)
|
DEF(and, 1, 2, 0, TCG_OPF_INT)
|
||||||
DEF(andc, 1, 2, 0, TCG_OPF_INT)
|
DEF(andc, 1, 2, 0, TCG_OPF_INT)
|
||||||
DEF(divs, 1, 2, 0, TCG_OPF_INT)
|
DEF(divs, 1, 2, 0, TCG_OPF_INT)
|
||||||
|
DEF(divs2, 2, 3, 0, TCG_OPF_INT)
|
||||||
DEF(divu, 1, 2, 0, TCG_OPF_INT)
|
DEF(divu, 1, 2, 0, TCG_OPF_INT)
|
||||||
DEF(eqv, 1, 2, 0, TCG_OPF_INT)
|
DEF(eqv, 1, 2, 0, TCG_OPF_INT)
|
||||||
DEF(mul, 1, 2, 0, TCG_OPF_INT)
|
DEF(mul, 1, 2, 0, TCG_OPF_INT)
|
||||||
|
@ -72,7 +73,6 @@ DEF(st_i32, 0, 2, 1, 0)
|
||||||
/* arith */
|
/* arith */
|
||||||
DEF(rem_i32, 1, 2, 0, 0)
|
DEF(rem_i32, 1, 2, 0, 0)
|
||||||
DEF(remu_i32, 1, 2, 0, 0)
|
DEF(remu_i32, 1, 2, 0, 0)
|
||||||
DEF(div2_i32, 2, 3, 0, 0)
|
|
||||||
DEF(divu2_i32, 2, 3, 0, 0)
|
DEF(divu2_i32, 2, 3, 0, 0)
|
||||||
/* shifts/rotates */
|
/* shifts/rotates */
|
||||||
DEF(shl_i32, 1, 2, 0, 0)
|
DEF(shl_i32, 1, 2, 0, 0)
|
||||||
|
@ -118,7 +118,6 @@ DEF(st_i64, 0, 2, 1, 0)
|
||||||
/* arith */
|
/* arith */
|
||||||
DEF(rem_i64, 1, 2, 0, 0)
|
DEF(rem_i64, 1, 2, 0, 0)
|
||||||
DEF(remu_i64, 1, 2, 0, 0)
|
DEF(remu_i64, 1, 2, 0, 0)
|
||||||
DEF(div2_i64, 2, 3, 0, 0)
|
|
||||||
DEF(divu2_i64, 2, 3, 0, 0)
|
DEF(divu2_i64, 2, 3, 0, 0)
|
||||||
/* shifts/rotates */
|
/* shifts/rotates */
|
||||||
DEF(shl_i64, 1, 2, 0, 0)
|
DEF(shl_i64, 1, 2, 0, 0)
|
||||||
|
|
16
tcg/tcg-op.c
16
tcg/tcg-op.c
|
@ -603,10 +603,10 @@ void tcg_gen_div_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
|
||||||
{
|
{
|
||||||
if (tcg_op_supported(INDEX_op_divs, TCG_TYPE_I32, 0)) {
|
if (tcg_op_supported(INDEX_op_divs, TCG_TYPE_I32, 0)) {
|
||||||
tcg_gen_op3_i32(INDEX_op_divs, ret, arg1, arg2);
|
tcg_gen_op3_i32(INDEX_op_divs, ret, arg1, arg2);
|
||||||
} else if (TCG_TARGET_HAS_div2_i32) {
|
} else if (tcg_op_supported(INDEX_op_divs2, TCG_TYPE_I32, 0)) {
|
||||||
TCGv_i32 t0 = tcg_temp_ebb_new_i32();
|
TCGv_i32 t0 = tcg_temp_ebb_new_i32();
|
||||||
tcg_gen_sari_i32(t0, arg1, 31);
|
tcg_gen_sari_i32(t0, arg1, 31);
|
||||||
tcg_gen_op5_i32(INDEX_op_div2_i32, ret, t0, arg1, t0, arg2);
|
tcg_gen_op5_i32(INDEX_op_divs2, ret, t0, arg1, t0, arg2);
|
||||||
tcg_temp_free_i32(t0);
|
tcg_temp_free_i32(t0);
|
||||||
} else {
|
} else {
|
||||||
gen_helper_div_i32(ret, arg1, arg2);
|
gen_helper_div_i32(ret, arg1, arg2);
|
||||||
|
@ -623,10 +623,10 @@ void tcg_gen_rem_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
|
||||||
tcg_gen_mul_i32(t0, t0, arg2);
|
tcg_gen_mul_i32(t0, t0, arg2);
|
||||||
tcg_gen_sub_i32(ret, arg1, t0);
|
tcg_gen_sub_i32(ret, arg1, t0);
|
||||||
tcg_temp_free_i32(t0);
|
tcg_temp_free_i32(t0);
|
||||||
} else if (TCG_TARGET_HAS_div2_i32) {
|
} else if (tcg_op_supported(INDEX_op_divs2, TCG_TYPE_I32, 0)) {
|
||||||
TCGv_i32 t0 = tcg_temp_ebb_new_i32();
|
TCGv_i32 t0 = tcg_temp_ebb_new_i32();
|
||||||
tcg_gen_sari_i32(t0, arg1, 31);
|
tcg_gen_sari_i32(t0, arg1, 31);
|
||||||
tcg_gen_op5_i32(INDEX_op_div2_i32, t0, ret, arg1, t0, arg2);
|
tcg_gen_op5_i32(INDEX_op_divs2, t0, ret, arg1, t0, arg2);
|
||||||
tcg_temp_free_i32(t0);
|
tcg_temp_free_i32(t0);
|
||||||
} else {
|
} else {
|
||||||
gen_helper_rem_i32(ret, arg1, arg2);
|
gen_helper_rem_i32(ret, arg1, arg2);
|
||||||
|
@ -1971,10 +1971,10 @@ void tcg_gen_div_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
|
||||||
{
|
{
|
||||||
if (tcg_op_supported(INDEX_op_divs, TCG_TYPE_I64, 0)) {
|
if (tcg_op_supported(INDEX_op_divs, TCG_TYPE_I64, 0)) {
|
||||||
tcg_gen_op3_i64(INDEX_op_divs, ret, arg1, arg2);
|
tcg_gen_op3_i64(INDEX_op_divs, ret, arg1, arg2);
|
||||||
} else if (TCG_TARGET_HAS_div2_i64) {
|
} else if (tcg_op_supported(INDEX_op_divs2, TCG_TYPE_I64, 0)) {
|
||||||
TCGv_i64 t0 = tcg_temp_ebb_new_i64();
|
TCGv_i64 t0 = tcg_temp_ebb_new_i64();
|
||||||
tcg_gen_sari_i64(t0, arg1, 63);
|
tcg_gen_sari_i64(t0, arg1, 63);
|
||||||
tcg_gen_op5_i64(INDEX_op_div2_i64, ret, t0, arg1, t0, arg2);
|
tcg_gen_op5_i64(INDEX_op_divs2, ret, t0, arg1, t0, arg2);
|
||||||
tcg_temp_free_i64(t0);
|
tcg_temp_free_i64(t0);
|
||||||
} else {
|
} else {
|
||||||
gen_helper_div_i64(ret, arg1, arg2);
|
gen_helper_div_i64(ret, arg1, arg2);
|
||||||
|
@ -1991,10 +1991,10 @@ void tcg_gen_rem_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
|
||||||
tcg_gen_mul_i64(t0, t0, arg2);
|
tcg_gen_mul_i64(t0, t0, arg2);
|
||||||
tcg_gen_sub_i64(ret, arg1, t0);
|
tcg_gen_sub_i64(ret, arg1, t0);
|
||||||
tcg_temp_free_i64(t0);
|
tcg_temp_free_i64(t0);
|
||||||
} else if (TCG_TARGET_HAS_div2_i64) {
|
} else if (tcg_op_supported(INDEX_op_divs2, TCG_TYPE_I64, 0)) {
|
||||||
TCGv_i64 t0 = tcg_temp_ebb_new_i64();
|
TCGv_i64 t0 = tcg_temp_ebb_new_i64();
|
||||||
tcg_gen_sari_i64(t0, arg1, 63);
|
tcg_gen_sari_i64(t0, arg1, 63);
|
||||||
tcg_gen_op5_i64(INDEX_op_div2_i64, t0, ret, arg1, t0, arg2);
|
tcg_gen_op5_i64(INDEX_op_divs2, t0, ret, arg1, t0, arg2);
|
||||||
tcg_temp_free_i64(t0);
|
tcg_temp_free_i64(t0);
|
||||||
} else {
|
} else {
|
||||||
gen_helper_rem_i64(ret, arg1, arg2);
|
gen_helper_rem_i64(ret, arg1, arg2);
|
||||||
|
|
|
@ -1028,8 +1028,7 @@ static const TCGOutOp * const all_outop[NB_OPS] = {
|
||||||
OUTOP(INDEX_op_andc, TCGOutOpBinary, outop_andc),
|
OUTOP(INDEX_op_andc, TCGOutOpBinary, outop_andc),
|
||||||
OUTOP(INDEX_op_divs, TCGOutOpBinary, outop_divs),
|
OUTOP(INDEX_op_divs, TCGOutOpBinary, outop_divs),
|
||||||
OUTOP(INDEX_op_divu, TCGOutOpBinary, outop_divu),
|
OUTOP(INDEX_op_divu, TCGOutOpBinary, outop_divu),
|
||||||
OUTOP(INDEX_op_div2_i32, TCGOutOpDivRem, outop_divs2),
|
OUTOP(INDEX_op_divs2, TCGOutOpDivRem, outop_divs2),
|
||||||
OUTOP(INDEX_op_div2_i64, TCGOutOpDivRem, outop_divs2),
|
|
||||||
OUTOP(INDEX_op_eqv, TCGOutOpBinary, outop_eqv),
|
OUTOP(INDEX_op_eqv, TCGOutOpBinary, outop_eqv),
|
||||||
OUTOP(INDEX_op_mul, TCGOutOpBinary, outop_mul),
|
OUTOP(INDEX_op_mul, TCGOutOpBinary, outop_mul),
|
||||||
OUTOP(INDEX_op_mulsh, TCGOutOpBinary, outop_mulsh),
|
OUTOP(INDEX_op_mulsh, TCGOutOpBinary, outop_mulsh),
|
||||||
|
@ -5473,8 +5472,7 @@ static void tcg_reg_alloc_op(TCGContext *s, const TCGOp *op)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INDEX_op_div2_i32:
|
case INDEX_op_divs2:
|
||||||
case INDEX_op_div2_i64:
|
|
||||||
{
|
{
|
||||||
const TCGOutOpDivRem *out =
|
const TCGOutOpDivRem *out =
|
||||||
container_of(all_outop[op->opc], TCGOutOpDivRem, base);
|
container_of(all_outop[op->opc], TCGOutOpDivRem, base);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue