mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
tcg: Convert extrh_i64_i32 to TCGOutOpUnary
At the same time, make extrh_i64_i32 mandatory. This closes a hole in which move arguments could be cast between TCGv_i32 and TCGv_i64. Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
1e6fec9dd9
commit
b3b1397664
11 changed files with 103 additions and 30 deletions
|
@ -2220,6 +2220,16 @@ static const TCGOutOpBinary outop_eqv = {
|
|||
.out_rrr = tgen_eqv,
|
||||
};
|
||||
|
||||
static void tgen_extrh_i64_i32(TCGContext *s, TCGType t, TCGReg a0, TCGReg a1)
|
||||
{
|
||||
tcg_out_ubfm(s, TCG_TYPE_I64, a0, a1, 32, 63);
|
||||
}
|
||||
|
||||
static const TCGOutOpUnary outop_extrh_i64_i32 = {
|
||||
.base.static_constraint = C_O1_I1(r, r),
|
||||
.out_rr = tgen_extrh_i64_i32,
|
||||
};
|
||||
|
||||
static void tgen_mul(TCGContext *s, TCGType type,
|
||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||
{
|
||||
|
|
|
@ -2794,6 +2794,18 @@ static const TCGOutOpBinary outop_eqv = {
|
|||
.base.static_constraint = C_NotImplemented,
|
||||
};
|
||||
|
||||
#if TCG_TARGET_REG_BITS == 64
|
||||
static void tgen_extrh_i64_i32(TCGContext *s, TCGType t, TCGReg a0, TCGReg a1)
|
||||
{
|
||||
tcg_out_shifti(s, SHIFT_SHR + P_REXW, a0, 32);
|
||||
}
|
||||
|
||||
static const TCGOutOpUnary outop_extrh_i64_i32 = {
|
||||
.base.static_constraint = C_O1_I1(r, 0),
|
||||
.out_rr = tgen_extrh_i64_i32,
|
||||
};
|
||||
#endif /* TCG_TARGET_REG_BITS == 64 */
|
||||
|
||||
static void tgen_mul(TCGContext *s, TCGType type,
|
||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||
{
|
||||
|
@ -3212,6 +3224,7 @@ static const TCGOutOpExtract outop_sextract = {
|
|||
.out_rr = tgen_sextract,
|
||||
};
|
||||
|
||||
|
||||
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])
|
||||
|
@ -3363,10 +3376,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
tcg_out_st(s, TCG_TYPE_I64, a0, a1, a2);
|
||||
}
|
||||
break;
|
||||
|
||||
case INDEX_op_extrh_i64_i32:
|
||||
tcg_out_shifti(s, SHIFT_SHR + P_REXW, a0, 32);
|
||||
break;
|
||||
#endif
|
||||
|
||||
OP_32_64(deposit):
|
||||
|
@ -3995,9 +4004,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
|||
case INDEX_op_st_i64:
|
||||
return C_O0_I2(re, r);
|
||||
|
||||
case INDEX_op_extrh_i64_i32:
|
||||
return C_O1_I1(r, 0);
|
||||
|
||||
case INDEX_op_extract2_i32:
|
||||
case INDEX_op_extract2_i64:
|
||||
return C_O1_I2(r, 0, r);
|
||||
|
|
|
@ -1467,6 +1467,16 @@ static const TCGOutOpBinary outop_eqv = {
|
|||
.base.static_constraint = C_NotImplemented,
|
||||
};
|
||||
|
||||
static void tgen_extrh_i64_i32(TCGContext *s, TCGType t, TCGReg a0, TCGReg a1)
|
||||
{
|
||||
tcg_out_opc_srai_d(s, a0, a1, 32);
|
||||
}
|
||||
|
||||
static const TCGOutOpUnary outop_extrh_i64_i32 = {
|
||||
.base.static_constraint = C_O1_I1(r, r),
|
||||
.out_rr = tgen_extrh_i64_i32,
|
||||
};
|
||||
|
||||
static void tgen_mul(TCGContext *s, TCGType type,
|
||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||
{
|
||||
|
@ -1867,10 +1877,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
tcg_out_opc_b(s, 0);
|
||||
break;
|
||||
|
||||
case INDEX_op_extrh_i64_i32:
|
||||
tcg_out_opc_srai_d(s, a0, a1, 32);
|
||||
break;
|
||||
|
||||
case INDEX_op_deposit_i32:
|
||||
tcg_out_opc_bstrins_w(s, a0, a2, args[3], args[3] + args[4] - 1);
|
||||
break;
|
||||
|
@ -2462,7 +2468,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
|||
case INDEX_op_qemu_st_i128:
|
||||
return C_O0_I3(r, r, r);
|
||||
|
||||
case INDEX_op_extrh_i64_i32:
|
||||
case INDEX_op_ld8s_i32:
|
||||
case INDEX_op_ld8s_i64:
|
||||
case INDEX_op_ld8u_i32:
|
||||
|
|
|
@ -1793,6 +1793,18 @@ static const TCGOutOpBinary outop_eqv = {
|
|||
.base.static_constraint = C_NotImplemented,
|
||||
};
|
||||
|
||||
#if TCG_TARGET_REG_BITS == 64
|
||||
static void tgen_extrh_i64_i32(TCGContext *s, TCGType t, TCGReg a0, TCGReg a1)
|
||||
{
|
||||
tcg_out_dsra(s, a0, a1, 32);
|
||||
}
|
||||
|
||||
static const TCGOutOpUnary outop_extrh_i64_i32 = {
|
||||
.base.static_constraint = C_O1_I1(r, r),
|
||||
.out_rr = tgen_extrh_i64_i32,
|
||||
};
|
||||
#endif
|
||||
|
||||
static void tgen_mul(TCGContext *s, TCGType type,
|
||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||
{
|
||||
|
@ -2315,10 +2327,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
tcg_out_ldst(s, i1, a0, a1, a2);
|
||||
break;
|
||||
|
||||
case INDEX_op_extrh_i64_i32:
|
||||
tcg_out_dsra(s, a0, a1, 32);
|
||||
break;
|
||||
|
||||
case INDEX_op_deposit_i32:
|
||||
tcg_out_opc_bf(s, OPC_INS, a0, a2, args[3] + args[4] - 1, args[3]);
|
||||
break;
|
||||
|
@ -2388,7 +2396,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
|||
case INDEX_op_ld32s_i64:
|
||||
case INDEX_op_ld32u_i64:
|
||||
case INDEX_op_ld_i64:
|
||||
case INDEX_op_extrh_i64_i32:
|
||||
return C_O1_I1(r, r);
|
||||
|
||||
case INDEX_op_st8_i32:
|
||||
|
|
|
@ -2965,6 +2965,18 @@ static void tgen_eqv(TCGContext *s, TCGType type,
|
|||
tcg_out32(s, EQV | SAB(a1, a0, a2));
|
||||
}
|
||||
|
||||
#if TCG_TARGET_REG_BITS == 64
|
||||
static void tgen_extrh_i64_i32(TCGContext *s, TCGType t, TCGReg a0, TCGReg a1)
|
||||
{
|
||||
tcg_out_shri64(s, a0, a1, 32);
|
||||
}
|
||||
|
||||
static const TCGOutOpUnary outop_extrh_i64_i32 = {
|
||||
.base.static_constraint = C_O1_I1(r, r),
|
||||
.out_rr = tgen_extrh_i64_i32,
|
||||
};
|
||||
#endif
|
||||
|
||||
static void tgen_divs(TCGContext *s, TCGType type,
|
||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||
{
|
||||
|
|
|
@ -2151,6 +2151,16 @@ static const TCGOutOpBinary outop_eqv = {
|
|||
.out_rrr = tgen_eqv,
|
||||
};
|
||||
|
||||
static void tgen_extrh_i64_i32(TCGContext *s, TCGType t, TCGReg a0, TCGReg a1)
|
||||
{
|
||||
tcg_out_opc_imm(s, OPC_SRAI, a0, a1, 32);
|
||||
}
|
||||
|
||||
static const TCGOutOpUnary outop_extrh_i64_i32 = {
|
||||
.base.static_constraint = C_O1_I1(r, r),
|
||||
.out_rr = tgen_extrh_i64_i32,
|
||||
};
|
||||
|
||||
static void tgen_mul(TCGContext *s, TCGType type,
|
||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||
{
|
||||
|
@ -2619,10 +2629,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type,
|
|||
tcg_out_qemu_st(s, a0, a1, a2, TCG_TYPE_I64);
|
||||
break;
|
||||
|
||||
case INDEX_op_extrh_i64_i32:
|
||||
tcg_out_opc_imm(s, OPC_SRAI, a0, a1, 32);
|
||||
break;
|
||||
|
||||
case INDEX_op_mb:
|
||||
tcg_out_mb(s, a0);
|
||||
break;
|
||||
|
@ -2871,7 +2877,6 @@ tcg_target_op_def(TCGOpcode op, TCGType type, unsigned flags)
|
|||
case INDEX_op_ld32s_i64:
|
||||
case INDEX_op_ld32u_i64:
|
||||
case INDEX_op_ld_i64:
|
||||
case INDEX_op_extrh_i64_i32:
|
||||
return C_O1_I1(r, r);
|
||||
|
||||
case INDEX_op_st8_i32:
|
||||
|
|
|
@ -2409,6 +2409,16 @@ static const TCGOutOpBinary outop_eqv = {
|
|||
.out_rrr = tgen_eqv,
|
||||
};
|
||||
|
||||
static void tgen_extrh_i64_i32(TCGContext *s, TCGType t, TCGReg a0, TCGReg a1)
|
||||
{
|
||||
tcg_out_sh64(s, RSY_SRLG, a0, a1, TCG_REG_NONE, 32);
|
||||
}
|
||||
|
||||
static const TCGOutOpUnary outop_extrh_i64_i32 = {
|
||||
.base.static_constraint = C_O1_I1(r, r),
|
||||
.out_rr = tgen_extrh_i64_i32,
|
||||
};
|
||||
|
||||
static void tgen_mul(TCGContext *s, TCGType type,
|
||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||
{
|
||||
|
|
|
@ -1501,6 +1501,16 @@ static const TCGOutOpBinary outop_eqv = {
|
|||
.base.static_constraint = C_NotImplemented,
|
||||
};
|
||||
|
||||
static void tgen_extrh_i64_i32(TCGContext *s, TCGType t, TCGReg a0, TCGReg a1)
|
||||
{
|
||||
tcg_out_arithi(s, a0, a1, 32, SHIFT_SRLX);
|
||||
}
|
||||
|
||||
static const TCGOutOpUnary outop_extrh_i64_i32 = {
|
||||
.base.static_constraint = C_O1_I1(r, r),
|
||||
.out_rr = tgen_extrh_i64_i32,
|
||||
};
|
||||
|
||||
static void tgen_mul(TCGContext *s, TCGType type,
|
||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||
{
|
||||
|
|
|
@ -2972,14 +2972,9 @@ void tcg_gen_extrh_i64_i32(TCGv_i32 ret, TCGv_i64 arg)
|
|||
{
|
||||
if (TCG_TARGET_REG_BITS == 32) {
|
||||
tcg_gen_mov_i32(ret, TCGV_HIGH(arg));
|
||||
} else if (TCG_TARGET_HAS_extr_i64_i32) {
|
||||
} else {
|
||||
tcg_gen_op2(INDEX_op_extrh_i64_i32, TCG_TYPE_I32,
|
||||
tcgv_i32_arg(ret), tcgv_i64_arg(arg));
|
||||
} else {
|
||||
TCGv_i64 t = tcg_temp_ebb_new_i64();
|
||||
tcg_gen_shri_i64(t, arg, 32);
|
||||
tcg_gen_mov_i32(ret, (TCGv_i32)t);
|
||||
tcg_temp_free_i64(t);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1162,6 +1162,7 @@ static const TCGOutOp * const all_outop[NB_OPS] = {
|
|||
OUTOP(INDEX_op_ext_i32_i64, TCGOutOpUnary, outop_exts_i32_i64),
|
||||
OUTOP(INDEX_op_extu_i32_i64, TCGOutOpUnary, outop_extu_i32_i64),
|
||||
OUTOP(INDEX_op_extrl_i64_i32, TCGOutOpUnary, outop_extrl_i64_i32),
|
||||
OUTOP(INDEX_op_extrh_i64_i32, TCGOutOpUnary, outop_extrh_i64_i32),
|
||||
#endif
|
||||
};
|
||||
|
||||
|
@ -2412,13 +2413,12 @@ bool tcg_op_supported(TCGOpcode op, TCGType type, unsigned flags)
|
|||
case INDEX_op_ext_i32_i64:
|
||||
case INDEX_op_extu_i32_i64:
|
||||
case INDEX_op_extrl_i64_i32:
|
||||
case INDEX_op_extrh_i64_i32:
|
||||
case INDEX_op_deposit_i64:
|
||||
return TCG_TARGET_REG_BITS == 64;
|
||||
|
||||
case INDEX_op_extract2_i64:
|
||||
return TCG_TARGET_HAS_extract2_i64;
|
||||
case INDEX_op_extrh_i64_i32:
|
||||
return TCG_TARGET_HAS_extr_i64_i32;
|
||||
case INDEX_op_add2_i64:
|
||||
return TCG_TARGET_HAS_add2_i64;
|
||||
case INDEX_op_sub2_i64:
|
||||
|
@ -5510,6 +5510,7 @@ static void tcg_reg_alloc_op(TCGContext *s, const TCGOp *op)
|
|||
case INDEX_op_ext_i32_i64:
|
||||
case INDEX_op_extu_i32_i64:
|
||||
case INDEX_op_extrl_i64_i32:
|
||||
case INDEX_op_extrh_i64_i32:
|
||||
assert(TCG_TARGET_REG_BITS == 64);
|
||||
/* fall through */
|
||||
case INDEX_op_ctpop:
|
||||
|
|
|
@ -670,6 +670,18 @@ static const TCGOutOpBinary outop_eqv = {
|
|||
.out_rrr = tgen_eqv,
|
||||
};
|
||||
|
||||
#if TCG_TARGET_REG_BITS == 64
|
||||
static void tgen_extrh_i64_i32(TCGContext *s, TCGType t, TCGReg a0, TCGReg a1)
|
||||
{
|
||||
tcg_out_extract(s, TCG_TYPE_I64, a0, a1, 32, 32);
|
||||
}
|
||||
|
||||
static const TCGOutOpUnary outop_extrh_i64_i32 = {
|
||||
.base.static_constraint = C_O1_I1(r, r),
|
||||
.out_rr = tgen_extrh_i64_i32,
|
||||
};
|
||||
#endif
|
||||
|
||||
static void tgen_mul(TCGContext *s, TCGType type,
|
||||
TCGReg a0, TCGReg a1, TCGReg a2)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue