[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH for-8.0 v3 11/45] tcg: Simplify calls to temp_sync vs mem_coheren
From: |
Richard Henderson |
Subject: |
[PATCH for-8.0 v3 11/45] tcg: Simplify calls to temp_sync vs mem_coherent |
Date: |
Fri, 11 Nov 2022 17:40:27 +1000 |
The first thing that temp_sync does is check mem_coherent,
so there's no need for the caller to do so.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
tcg/tcg.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/tcg/tcg.c b/tcg/tcg.c
index a82c291369..583677a1c4 100644
--- a/tcg/tcg.c
+++ b/tcg/tcg.c
@@ -4117,12 +4117,8 @@ static bool tcg_reg_alloc_dup2(TCGContext *s, const
TCGOp *op)
/* If the two inputs form one 64-bit value, try dupm_vec. */
if (itsl + 1 == itsh && itsl->base_type == TCG_TYPE_I64) {
- if (!itsl->mem_coherent) {
- temp_sync(s, itsl, s->reserved_regs, 0, 0);
- }
- if (!itsh->mem_coherent) {
- temp_sync(s, itsh, s->reserved_regs, 0, 0);
- }
+ temp_sync(s, itsl, s->reserved_regs, 0, 0);
+ temp_sync(s, itsh, s->reserved_regs, 0, 0);
#if HOST_BIG_ENDIAN
TCGTemp *its = itsh;
#else
--
2.34.1
- [PATCH for-8.0 v3 00/45] tcg: Support for Int128 with helpers, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 01/45] meson: Move CONFIG_TCG_INTERPRETER to config_host, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 02/45] tcg: Tidy tcg_reg_alloc_op, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 03/45] tcg: Introduce paired register allocation, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 04/45] tcg/s390x: Use register pair allocation for div and mulu2, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 05/45] tcg/arm: Use register pair allocation for qemu_{ld, st}_i64, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 06/45] tcg: Remove TCG_TARGET_STACK_GROWSUP, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 08/45] target/sparc: Avoid TCGV_{LOW,HIGH}, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 07/45] accel/tcg: Set cflags_next_tb in cpu_common_initfn, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 09/45] tcg: Move TCG_{LOW,HIGH} to tcg-internal.h, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 11/45] tcg: Simplify calls to temp_sync vs mem_coherent,
Richard Henderson <=
- [PATCH for-8.0 v3 10/45] tcg: Add temp_subindex to TCGTemp, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 12/45] tcg: Allocate TCGTemp pairs in host memory order, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 13/45] tcg: Move TCG_TYPE_COUNT outside enum, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 15/45] tcg: Introduce TCGCallReturnKind and TCGCallArgumentKind, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 16/45] tcg: Replace TCG_TARGET_CALL_ALIGN_ARGS with TCG_TARGET_CALL_ARG_I64, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 19/45] accel/tcg/plugin: Don't search for the function pointer index, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 18/45] tcg: Use TCG_CALL_ARG_EVEN for TCI special case, Richard Henderson, 2022/11/11
- [PATCH for-8.0 v3 21/45] accel/tcg/plugin: Use copy_op in append_{udata, mem}_cb, Richard Henderson, 2022/11/11