[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 44/52] accel/tcg: Tidy includes for translator.[ch]
|
From: |
Richard Henderson |
|
Subject: |
[PATCH v2 44/52] accel/tcg: Tidy includes for translator.[ch] |
|
Date: |
Tue, 23 May 2023 06:53:14 -0700 |
Reduce the header to only bswap.h and cpu_ldst.h.
Move exec/translate-all.h to translator.c.
Reduce tcg.h and tcg-op.h to tcg-op-common.h.
Remove otherwise unused headers.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
include/exec/translator.h | 6 +-----
accel/tcg/translator.c | 8 +++-----
2 files changed, 4 insertions(+), 10 deletions(-)
diff --git a/include/exec/translator.h b/include/exec/translator.h
index 228002a623..224ae14aa7 100644
--- a/include/exec/translator.h
+++ b/include/exec/translator.h
@@ -18,12 +18,8 @@
* member in your target-specific DisasContext.
*/
-
#include "qemu/bswap.h"
-#include "exec/exec-all.h"
-#include "exec/cpu_ldst.h"
-#include "exec/translate-all.h"
-#include "tcg/tcg.h"
+#include "exec/cpu_ldst.h" /* for abi_ptr */
/**
* gen_intermediate_code
diff --git a/accel/tcg/translator.c b/accel/tcg/translator.c
index 60a613c99d..fda4e7f637 100644
--- a/accel/tcg/translator.c
+++ b/accel/tcg/translator.c
@@ -8,15 +8,13 @@
*/
#include "qemu/osdep.h"
+#include "qemu/log.h"
#include "qemu/error-report.h"
-#include "tcg/tcg.h"
-#include "tcg/tcg-op.h"
#include "exec/exec-all.h"
-#include "exec/log.h"
#include "exec/translator.h"
+#include "exec/translate-all.h"
#include "exec/plugin-gen.h"
-#include "exec/replay-core.h"
-
+#include "tcg/tcg-op-common.h"
static void gen_io_start(void)
{
--
2.34.1
- [PATCH v2 40/52] target/arm: Tidy helpers for translation, (continued)
- [PATCH v2 40/52] target/arm: Tidy helpers for translation, Richard Henderson, 2023/05/23
- [PATCH v2 45/52] tcg: Define IN_TCG, Richard Henderson, 2023/05/23
- [PATCH v2 46/52] tcg: Fix PAGE/PROT confusion, Richard Henderson, 2023/05/23
- [PATCH v2 48/52] tcg: Remove target-specific headers from tcg.[ch], Richard Henderson, 2023/05/23
- [PATCH v2 52/52] tcg: Build once for system and once for user-only, Richard Henderson, 2023/05/23
- [PATCH v2 43/52] *: Add missing includes of exec/exec-all.h, Richard Henderson, 2023/05/23
- [PATCH v2 49/52] plugins: Move plugin_insn_append to translator.c, Richard Henderson, 2023/05/23
- [PATCH v2 50/52] plugins: Drop unused headers from exec/plugin-gen.h, Richard Henderson, 2023/05/23
- [PATCH v2 47/52] tcg: Move env defines out of NEED_CPU_H in helper-head.h, Richard Henderson, 2023/05/23
- [PATCH v2 51/52] exec/poison: Do not poison CONFIG_SOFTMMU, Richard Henderson, 2023/05/23
- [PATCH v2 44/52] accel/tcg: Tidy includes for translator.[ch],
Richard Henderson <=