Skip to content

Commit

Permalink
tcg/mips: Split out tcg_out_movi_two
Browse files Browse the repository at this point in the history
Emit all 32-bit signed constants, which can be loaded in two insns.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
rth7680 committed May 25, 2023
1 parent 47a5728 commit 1d9c5b3
Showing 1 changed file with 24 additions and 11 deletions.
35 changes: 24 additions & 11 deletions tcg/mips/tcg-target.c.inc
Original file line number Diff line number Diff line change
Expand Up @@ -527,28 +527,41 @@ static bool tcg_out_movi_one(TCGContext *s, TCGReg ret, tcg_target_long arg)
return false;
}

static bool tcg_out_movi_two(TCGContext *s, TCGReg ret, tcg_target_long arg)
{
/*
* All signed 32-bit constants are loadable with two immediates,
* and everything else requires more work.
*/
if (arg == (int32_t)arg) {
if (!tcg_out_movi_one(s, ret, arg)) {
tcg_out_opc_imm(s, OPC_LUI, ret, TCG_REG_ZERO, arg >> 16);
tcg_out_opc_imm(s, OPC_ORI, ret, ret, arg & 0xffff);
}
return true;
}
return false;
}

static void tcg_out_movi(TCGContext *s, TCGType type,
TCGReg ret, tcg_target_long arg)
{
if (TCG_TARGET_REG_BITS == 64 && type == TCG_TYPE_I32) {
arg = (int32_t)arg;
}

if (tcg_out_movi_one(s, ret, arg)) {
/* Load all 32-bit constants. */
if (tcg_out_movi_two(s, ret, arg)) {
return;
}

if (TCG_TARGET_REG_BITS == 32 || arg == (int32_t)arg) {
tcg_out_opc_imm(s, OPC_LUI, ret, TCG_REG_ZERO, arg >> 16);
tcg_out_movi(s, TCG_TYPE_I32, ret, arg >> 31 >> 1);
if (arg & 0xffff0000ull) {
tcg_out_dsll(s, ret, ret, 16);
tcg_out_opc_imm(s, OPC_ORI, ret, ret, arg >> 16);
tcg_out_dsll(s, ret, ret, 16);
} else {
tcg_out_movi(s, TCG_TYPE_I32, ret, arg >> 31 >> 1);
if (arg & 0xffff0000ull) {
tcg_out_dsll(s, ret, ret, 16);
tcg_out_opc_imm(s, OPC_ORI, ret, ret, arg >> 16);
tcg_out_dsll(s, ret, ret, 16);
} else {
tcg_out_dsll(s, ret, ret, 32);
}
tcg_out_dsll(s, ret, ret, 32);
}
if (arg & 0xffff) {
tcg_out_opc_imm(s, OPC_ORI, ret, ret, arg & 0xffff);
Expand Down

0 comments on commit 1d9c5b3

Please sign in to comment.