[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 08/57] target/loongarch: Do not include tcg-ldst.h
From: |
Richard Henderson |
Subject: |
[PATCH v3 08/57] target/loongarch: Do not include tcg-ldst.h |
Date: |
Tue, 25 Apr 2023 20:30:57 +0100 |
This header is supposed to be private to tcg and in fact
does not need to be included here at all.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/loongarch/csr_helper.c | 1 -
target/loongarch/iocsr_helper.c | 1 -
2 files changed, 2 deletions(-)
diff --git a/target/loongarch/csr_helper.c b/target/loongarch/csr_helper.c
index 7e02787895..6526367946 100644
--- a/target/loongarch/csr_helper.c
+++ b/target/loongarch/csr_helper.c
@@ -15,7 +15,6 @@
#include "exec/cpu_ldst.h"
#include "hw/irq.h"
#include "cpu-csr.h"
-#include "tcg/tcg-ldst.h"
target_ulong helper_csrrd_pgd(CPULoongArchState *env)
{
diff --git a/target/loongarch/iocsr_helper.c b/target/loongarch/iocsr_helper.c
index 505853e17b..dda9845d6c 100644
--- a/target/loongarch/iocsr_helper.c
+++ b/target/loongarch/iocsr_helper.c
@@ -12,7 +12,6 @@
#include "exec/helper-proto.h"
#include "exec/exec-all.h"
#include "exec/cpu_ldst.h"
-#include "tcg/tcg-ldst.h"
#define GET_MEMTXATTRS(cas) \
((MemTxAttrs){.requester_id = env_cpu(cas)->cpu_index})
--
2.34.1
- [PATCH v3 00/57] tcg: Improve atomicity support, Richard Henderson, 2023/04/25
- [PATCH v3 01/57] include/exec/memop: Add bits describing atomicity, Richard Henderson, 2023/04/25
- [PATCH v3 02/57] accel/tcg: Add cpu_in_serial_context, Richard Henderson, 2023/04/25
- [PATCH v3 03/57] accel/tcg: Introduce tlb_read_idx, Richard Henderson, 2023/04/25
- [PATCH v3 04/57] accel/tcg: Reorg system mode load helpers, Richard Henderson, 2023/04/25
- [PATCH v3 05/57] accel/tcg: Reorg system mode store helpers, Richard Henderson, 2023/04/25
- [PATCH v3 06/57] accel/tcg: Honor atomicity of loads, Richard Henderson, 2023/04/25
- [PATCH v3 07/57] accel/tcg: Honor atomicity of stores, Richard Henderson, 2023/04/25
- [PATCH v3 08/57] target/loongarch: Do not include tcg-ldst.h,
Richard Henderson <=
- [PATCH v3 09/57] tcg: Unify helper_{be,le}_{ld,st}*, Richard Henderson, 2023/04/25
- [PATCH v3 10/57] accel/tcg: Implement helper_{ld, st}*_mmu for user-only, Richard Henderson, 2023/04/25
- [PATCH v3 11/57] tcg/tci: Use helper_{ld,st}*_mmu for user-only, Richard Henderson, 2023/04/25
- [PATCH v3 12/57] tcg: Add 128-bit guest memory primitives, Richard Henderson, 2023/04/25
- [PATCH v3 13/57] meson: Detect atomic128 support with optimization, Richard Henderson, 2023/04/25
- [PATCH v3 14/57] tcg/i386: Add have_atomic16, Richard Henderson, 2023/04/25
- [PATCH v3 15/57] accel/tcg: Use have_atomic16 in ldst_atomicity.c.inc, Richard Henderson, 2023/04/25
- [PATCH v3 16/57] accel/tcg: Add aarch64 specific support in ldst_atomicity, Richard Henderson, 2023/04/25
- [PATCH v3 18/57] tcg/aarch64: Detect have_lse, have_lse2 for darwin, Richard Henderson, 2023/04/25