[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 55/57] tcg/riscv: Simplify constraints on qemu_ld/st
From: |
Richard Henderson |
Subject: |
[PATCH v3 55/57] tcg/riscv: Simplify constraints on qemu_ld/st |
Date: |
Mon, 24 Apr 2023 06:41:03 +0100 |
The softmmu tlb uses TCG_REG_TMP[0-2], not any of the normally available
registers. Now that we handle overlap betwen inputs and helper arguments,
we can allow any allocatable reg.
Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
tcg/riscv/tcg-target-con-set.h | 2 --
tcg/riscv/tcg-target-con-str.h | 1 -
tcg/riscv/tcg-target.c.inc | 16 +++-------------
3 files changed, 3 insertions(+), 16 deletions(-)
diff --git a/tcg/riscv/tcg-target-con-set.h b/tcg/riscv/tcg-target-con-set.h
index c11710d117..1a8b8e9f2b 100644
--- a/tcg/riscv/tcg-target-con-set.h
+++ b/tcg/riscv/tcg-target-con-set.h
@@ -10,11 +10,9 @@
* tcg-target-con-str.h; the constraint combination is inclusive or.
*/
C_O0_I1(r)
-C_O0_I2(LZ, L)
C_O0_I2(rZ, r)
C_O0_I2(rZ, rZ)
C_O0_I4(rZ, rZ, rZ, rZ)
-C_O1_I1(r, L)
C_O1_I1(r, r)
C_O1_I2(r, r, ri)
C_O1_I2(r, r, rI)
diff --git a/tcg/riscv/tcg-target-con-str.h b/tcg/riscv/tcg-target-con-str.h
index 8d8afaee53..6f1cfb976c 100644
--- a/tcg/riscv/tcg-target-con-str.h
+++ b/tcg/riscv/tcg-target-con-str.h
@@ -9,7 +9,6 @@
* REGS(letter, register_mask)
*/
REGS('r', ALL_GENERAL_REGS)
-REGS('L', ALL_GENERAL_REGS & ~SOFTMMU_RESERVE_REGS)
/*
* Define constraint letters for constants:
diff --git a/tcg/riscv/tcg-target.c.inc b/tcg/riscv/tcg-target.c.inc
index 4c8e38599b..d5239418dd 100644
--- a/tcg/riscv/tcg-target.c.inc
+++ b/tcg/riscv/tcg-target.c.inc
@@ -125,17 +125,7 @@ static TCGReg tcg_target_call_oarg_reg(TCGCallReturnKind
kind, int slot)
#define TCG_CT_CONST_N12 0x400
#define TCG_CT_CONST_M12 0x800
-#define ALL_GENERAL_REGS MAKE_64BIT_MASK(0, 32)
-/*
- * For softmmu, we need to avoid conflicts with the first 5
- * argument registers to call the helper. Some of these are
- * also used for the tlb lookup.
- */
-#ifdef CONFIG_SOFTMMU
-#define SOFTMMU_RESERVE_REGS MAKE_64BIT_MASK(TCG_REG_A0, 5)
-#else
-#define SOFTMMU_RESERVE_REGS 0
-#endif
+#define ALL_GENERAL_REGS MAKE_64BIT_MASK(0, 32)
#define sextreg sextract64
@@ -1626,10 +1616,10 @@ static TCGConstraintSetIndex
tcg_target_op_def(TCGOpcode op)
case INDEX_op_qemu_ld_i32:
case INDEX_op_qemu_ld_i64:
- return C_O1_I1(r, L);
+ return C_O1_I1(r, r);
case INDEX_op_qemu_st_i32:
case INDEX_op_qemu_st_i64:
- return C_O0_I2(LZ, L);
+ return C_O0_I2(rZ, r);
default:
g_assert_not_reached();
--
2.34.1
- Re: [PATCH v3 34/57] tcg: Move TCGLabelQemuLdst to tcg.c, (continued)
- [PATCH v3 36/57] tcg: Introduce arg_slot_stk_ofs, Richard Henderson, 2023/04/24
- [PATCH v3 37/57] tcg: Widen helper_*_st[bw]_mmu val arguments, Richard Henderson, 2023/04/24
- [PATCH v3 39/57] tcg/i386: Convert tcg_out_qemu_ld_slow_path, Richard Henderson, 2023/04/24
- [PATCH v3 42/57] tcg/arm: Convert tcg_out_qemu_{ld,st}_slow_path, Richard Henderson, 2023/04/24
- [PATCH v3 40/57] tcg/i386: Convert tcg_out_qemu_st_slow_path, Richard Henderson, 2023/04/24
- [PATCH v3 45/57] tcg/ppc: Convert tcg_out_qemu_{ld,st}_slow_path, Richard Henderson, 2023/04/24
- [PATCH v3 43/57] tcg/loongarch64: Convert tcg_out_qemu_{ld, st}_slow_path, Richard Henderson, 2023/04/24
- [PATCH v3 54/57] tcg/ppc: Remove unused constraints A, B, C, D, Richard Henderson, 2023/04/24
- [PATCH v3 55/57] tcg/riscv: Simplify constraints on qemu_ld/st,
Richard Henderson <=
- [PATCH v3 44/57] tcg/mips: Convert tcg_out_qemu_{ld,st}_slow_path, Richard Henderson, 2023/04/24
- [PATCH v3 50/57] tcg/mips: Reorg tlb load within prepare_host_addr, Richard Henderson, 2023/04/24
- [PATCH v3 51/57] tcg/mips: Simplify constraints on qemu_ld/st, Richard Henderson, 2023/04/24
- [PATCH v3 56/57] tcg/s390x: Use ALGFR in constructing softmmu host address, Richard Henderson, 2023/04/24
- [PATCH v3 47/57] tcg/s390x: Convert tcg_out_qemu_{ld,st}_slow_path, Richard Henderson, 2023/04/24
- [PATCH v3 53/57] tcg/ppc: Adjust constraints on qemu_ld/st, Richard Henderson, 2023/04/24
- [PATCH v3 46/57] tcg/riscv: Convert tcg_out_qemu_{ld,st}_slow_path, Richard Henderson, 2023/04/24
- [PATCH v3 57/57] tcg/s390x: Simplify constraints on qemu_ld/st, Richard Henderson, 2023/04/24
- [PATCH v3 41/57] tcg/aarch64: Convert tcg_out_qemu_{ld,st}_slow_path, Richard Henderson, 2023/04/24
- [PATCH v3 52/57] tcg/ppc: Reorg tcg_out_tlb_read, Richard Henderson, 2023/04/24