[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 10/48] *: Add missing includes of tcg/tcg.h
|
From: |
Richard Henderson |
|
Subject: |
[PATCH v3 10/48] *: Add missing includes of tcg/tcg.h |
|
Date: |
Tue, 30 May 2023 21:02:52 -0700 |
This had been pulled in from exec/cpu_ldst.h, via exec/exec-all.h,
but the include of tcg.h will be removed.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
accel/tcg/monitor.c | 1 +
accel/tcg/tcg-accel-ops-mttcg.c | 2 +-
accel/tcg/tcg-accel-ops-rr.c | 2 +-
target/i386/helper.c | 3 +++
target/openrisc/sys_helper.c | 1 +
5 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/accel/tcg/monitor.c b/accel/tcg/monitor.c
index 92fce580f1..f171bc6f5e 100644
--- a/accel/tcg/monitor.c
+++ b/accel/tcg/monitor.c
@@ -15,6 +15,7 @@
#include "sysemu/cpus.h"
#include "sysemu/cpu-timers.h"
#include "sysemu/tcg.h"
+#include "tcg/tcg.h"
#include "internal.h"
diff --git a/accel/tcg/tcg-accel-ops-mttcg.c b/accel/tcg/tcg-accel-ops-mttcg.c
index d50239e0e2..5d72c9b1bd 100644
--- a/accel/tcg/tcg-accel-ops-mttcg.c
+++ b/accel/tcg/tcg-accel-ops-mttcg.c
@@ -32,7 +32,7 @@
#include "qemu/guest-random.h"
#include "exec/exec-all.h"
#include "hw/boards.h"
-
+#include "tcg/tcg.h"
#include "tcg-accel-ops.h"
#include "tcg-accel-ops-mttcg.h"
diff --git a/accel/tcg/tcg-accel-ops-rr.c b/accel/tcg/tcg-accel-ops-rr.c
index b6d10fa9a2..70b9b89073 100644
--- a/accel/tcg/tcg-accel-ops-rr.c
+++ b/accel/tcg/tcg-accel-ops-rr.c
@@ -32,7 +32,7 @@
#include "qemu/notify.h"
#include "qemu/guest-random.h"
#include "exec/exec-all.h"
-
+#include "tcg/tcg.h"
#include "tcg-accel-ops.h"
#include "tcg-accel-ops-rr.h"
#include "tcg-accel-ops-icount.h"
diff --git a/target/i386/helper.c b/target/i386/helper.c
index 8857444819..682d10d98a 100644
--- a/target/i386/helper.c
+++ b/target/i386/helper.c
@@ -28,6 +28,9 @@
#include "monitor/monitor.h"
#endif
#include "qemu/log.h"
+#ifdef CONFIG_TCG
+#include "tcg/tcg.h"
+#endif
void cpu_sync_avx_hflag(CPUX86State *env)
{
diff --git a/target/openrisc/sys_helper.c b/target/openrisc/sys_helper.c
index ccdee3b8be..110f157601 100644
--- a/target/openrisc/sys_helper.c
+++ b/target/openrisc/sys_helper.c
@@ -26,6 +26,7 @@
#ifndef CONFIG_USER_ONLY
#include "hw/boards.h"
#endif
+#include "tcg/tcg.h"
#define TO_SPR(group, number) (((group) << 11) + (number))
--
2.34.1
- [PATCH v3 08/48] *: Add missing includes of qemu/error-report.h, (continued)
- [PATCH v3 08/48] *: Add missing includes of qemu/error-report.h, Richard Henderson, 2023/05/31
- [PATCH v3 12/48] target/arm: Fix test of TCG_OVERSIZED_GUEST, Richard Henderson, 2023/05/31
- [PATCH v3 13/48] tcg: Split out tcg/oversized-guest.h, Richard Henderson, 2023/05/31
- [PATCH v3 14/48] tcg: Move TCGv, dup_const_tl definitions to tcg-op.h, Richard Henderson, 2023/05/31
- [PATCH v3 07/48] tcg: Add tlb_fast_offset to TCGContext, Richard Henderson, 2023/05/31
- [PATCH v3 16/48] target/arm: Include helper-gen.h in translator.h, Richard Henderson, 2023/05/31
- [PATCH v3 15/48] tcg: Split tcg/tcg-op-common.h from tcg/tcg-op.h, Richard Henderson, 2023/05/31
- [PATCH v3 21/48] tcg: Move temp_idx and tcgv_i32_temp debug out of line, Richard Henderson, 2023/05/31
- [PATCH v3 22/48] tcg: Split tcg_gen_callN, Richard Henderson, 2023/05/31
- [PATCH v3 10/48] *: Add missing includes of tcg/tcg.h,
Richard Henderson <=
- [PATCH v3 09/48] *: Add missing includes of tcg/debug-assert.h, Richard Henderson, 2023/05/31
- [PATCH v3 18/48] tcg: Remove outdated comments in helper-head.h, Richard Henderson, 2023/05/31
- [PATCH v3 19/48] tcg: Move TCGHelperInfo and dependencies to tcg/helper-info.h, Richard Henderson, 2023/05/31
- [PATCH v3 20/48] tcg: Pass TCGHelperInfo to tcg_gen_callN, Richard Henderson, 2023/05/31
- [PATCH v3 23/48] tcg: Split helper-gen.h, Richard Henderson, 2023/05/31
- [PATCH v3 26/48] tcg: Add guest_mo to TCGContext, Richard Henderson, 2023/05/31
- [PATCH v3 32/48] tcg: Spit out exec/translation-block.h, Richard Henderson, 2023/05/31
- [PATCH v3 37/48] target/arm: Tidy helpers for translation, Richard Henderson, 2023/05/31