[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 14/14] RFC tcg/ppc: Disable TCG_REG_TB for Power9/Power10
From: |
Richard Henderson |
Subject: |
[PATCH v3 14/14] RFC tcg/ppc: Disable TCG_REG_TB for Power9/Power10 |
Date: |
Tue, 15 Aug 2023 12:57:41 -0700 |
This may or may not improve performance.
It appears to result in slightly larger code,
but perhaps not enough to matter.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
tcg/ppc/tcg-target.c.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tcg/ppc/tcg-target.c.inc b/tcg/ppc/tcg-target.c.inc
index 20aaa90af2..c1e0efb498 100644
--- a/tcg/ppc/tcg-target.c.inc
+++ b/tcg/ppc/tcg-target.c.inc
@@ -83,7 +83,7 @@
#define TCG_VEC_TMP2 TCG_REG_V1
#define TCG_REG_TB TCG_REG_R31
-#define USE_REG_TB (TCG_TARGET_REG_BITS == 64)
+#define USE_REG_TB (TCG_TARGET_REG_BITS == 64 && !have_isa_3_00)
/* Shorthand for size of a pointer. Avoid promotion to unsigned. */
#define SZP ((int)sizeof(void *))
--
2.34.1
- Re: [PATCH v3 05/14] tcg/ppc: Use ADDPCIS in tcg_out_tb_start, (continued)
- [PATCH v3 06/14] tcg/ppc: Use ADDPCIS in tcg_out_movi_int, Richard Henderson, 2023/08/15
- [PATCH v3 07/14] tcg/ppc: Use ADDPCIS for the constant pool, Richard Henderson, 2023/08/15
- [PATCH v3 08/14] tcg/ppc: Use ADDPCIS in tcg_out_goto_tb, Richard Henderson, 2023/08/15
- [PATCH v3 09/14] tcg/ppc: Use PADDI in tcg_out_movi, Richard Henderson, 2023/08/15
- [PATCH v3 10/14] tcg/ppc: Use prefixed instructions in tcg_out_mem_long, Richard Henderson, 2023/08/15
- [PATCH v3 11/14] tcg/ppc: Use PLD in tcg_out_movi for constant pool, Richard Henderson, 2023/08/15
- [PATCH v3 12/14] tcg/ppc: Use prefixed instructions in tcg_out_dupi_vec, Richard Henderson, 2023/08/15
- [PATCH v3 13/14] tcg/ppc: Use PLD in tcg_out_goto_tb, Richard Henderson, 2023/08/15
- [PATCH v3 14/14] RFC tcg/ppc: Disable TCG_REG_TB for Power9/Power10,
Richard Henderson <=