*: Add missing includes of tcg/tcg.h
authorRichard Henderson <richard.henderson@linaro.org>
Tue, 28 Mar 2023 01:24:50 +0000 (18:24 -0700)
committerRichard Henderson <richard.henderson@linaro.org>
Mon, 5 Jun 2023 19:04:28 +0000 (12:04 -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
accel/tcg/tcg-accel-ops-mttcg.c
accel/tcg/tcg-accel-ops-rr.c
target/i386/helper.c
target/openrisc/sys_helper.c

index 92fce580f11aaa4a1c67ad37dbf95d5154707054..f171bc6f5edc1bd9dd72fba6d6af06f973c27bdf 100644 (file)
@@ -15,6 +15,7 @@
 #include "sysemu/cpus.h"
 #include "sysemu/cpu-timers.h"
 #include "sysemu/tcg.h"
+#include "tcg/tcg.h"
 #include "internal.h"
 
 
index d50239e0e28f4925c5d22d7c857210723d4296bd..5d72c9b1bd3c25902f78ca22ea4e8a8be10ac2a8 100644 (file)
@@ -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"
 
index b6d10fa9a2502ffec8a21b04b3eb0c3e4e81994c..70b9b89073c250ba356e5e7fe3a5330885cbe463 100644 (file)
@@ -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"
index 8857444819a0f7827d891eee4350d50993311827..682d10d98a7be44d27802f094960f9f2783eb605 100644 (file)
@@ -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)
 {
index ccdee3b8be606ffbba2ea568d9d1e843b0c6c81c..110f157601fb19b5581d1ae82829bb885cebd7b4 100644 (file)
@@ -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))