[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 07/12] tcg/mips: Split out tcg_out_movi_one
|
From: |
Richard Henderson |
|
Subject: |
[PATCH v4 07/12] tcg/mips: Split out tcg_out_movi_one |
|
Date: |
Fri, 7 Jan 2022 22:36:39 -0800 |
Emit all constants that can be loaded in exactly one insn.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
tcg/mips/tcg-target.c.inc | 26 ++++++++++++++++++++------
1 file changed, 20 insertions(+), 6 deletions(-)
diff --git a/tcg/mips/tcg-target.c.inc b/tcg/mips/tcg-target.c.inc
index 76fb1dada0..8741fdd49c 100644
--- a/tcg/mips/tcg-target.c.inc
+++ b/tcg/mips/tcg-target.c.inc
@@ -524,20 +524,34 @@ static bool tcg_out_mov(TCGContext *s, TCGType type,
TCGReg ret, TCGReg arg)
return true;
}
+static bool tcg_out_movi_one(TCGContext *s, TCGReg ret, tcg_target_long arg)
+{
+ if (arg == (int16_t)arg) {
+ tcg_out_opc_imm(s, OPC_ADDIU, ret, TCG_REG_ZERO, arg);
+ return true;
+ }
+ if (arg == (uint16_t)arg) {
+ tcg_out_opc_imm(s, OPC_ORI, ret, TCG_REG_ZERO, arg);
+ return true;
+ }
+ if (arg == (int32_t)arg && (arg & 0xffff) == 0) {
+ tcg_out_opc_imm(s, OPC_LUI, ret, TCG_REG_ZERO, arg >> 16);
+ 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 (arg == (int16_t)arg) {
- tcg_out_opc_imm(s, OPC_ADDIU, ret, TCG_REG_ZERO, arg);
- return;
- }
- if (arg == (uint16_t)arg) {
- tcg_out_opc_imm(s, OPC_ORI, ret, TCG_REG_ZERO, arg);
+
+ if (tcg_out_movi_one(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);
} else {
--
2.25.1
- [PATCH v4 00/12] tcg/mips: Unaligned access and other cleanup, Richard Henderson, 2022/01/08
- [PATCH v4 01/12] tcg/mips: Support unaligned access for user-only, Richard Henderson, 2022/01/08
- [PATCH v4 03/12] tcg/mips: Move TCG_AREG0 to S8, Richard Henderson, 2022/01/08
- [PATCH v4 02/12] tcg/mips: Support unaligned access for softmmu, Richard Henderson, 2022/01/08
- [PATCH v4 04/12] tcg/mips: Move TCG_GUEST_BASE_REG to S7, Richard Henderson, 2022/01/08
- [PATCH v4 06/12] tcg/mips: Create and use TCG_REG_TB, Richard Henderson, 2022/01/08
- [PATCH v4 05/12] tcg/mips: Unify TCG_GUEST_BASE_REG tests, Richard Henderson, 2022/01/08
- [PATCH v4 07/12] tcg/mips: Split out tcg_out_movi_one,
Richard Henderson <=
- [PATCH v4 08/12] tcg/mips: Split out tcg_out_movi_two, Richard Henderson, 2022/01/08
- [PATCH v4 11/12] tcg/mips: Try tb-relative addresses in tcg_out_movi, Richard Henderson, 2022/01/08
- [PATCH v4 09/12] tcg/mips: Use the constant pool for 64-bit constants, Richard Henderson, 2022/01/08
- [PATCH v4 12/12] tcg/mips: Try three insns with shift and add in tcg_out_movi, Richard Henderson, 2022/01/08
- [PATCH v4 10/12] tcg/mips: Aggressively use the constant pool for n64 calls, Richard Henderson, 2022/01/08