accel: Forward-declare AccelOpsClass in 'qemu/typedefs.h'
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 23 Jan 2025 12:39:05 +0000 (13:39 +0100)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 6 Mar 2025 14:46:18 +0000 (15:46 +0100)
The heavily imported "system/cpus.h" header includes "accel-ops.h"
to get AccelOpsClass type declaration. Reduce headers pressure by
forward declaring it in "qemu/typedefs.h", where we already
declare the AccelCPUState type.

Reduce "system/cpus.h" inclusions by only including
"system/accel-ops.h" when necessary.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20250123234415.59850-14-philmd@linaro.org>

19 files changed:
accel/accel-system.c
accel/hvf/hvf-accel-ops.c
accel/kvm/kvm-accel-ops.c
accel/qtest/qtest.c
accel/tcg/cpu-exec-common.c
accel/tcg/cpu-exec.c
accel/tcg/monitor.c
accel/tcg/tcg-accel-ops.c
accel/tcg/translate-all.c
accel/xen/xen-all.c
cpu-common.c
cpu-target.c
gdbstub/system.c
include/qemu/typedefs.h
include/system/accel-ops.h
include/system/cpus.h
system/cpus.c
target/i386/nvmm/nvmm-accel-ops.c
target/i386/whpx/whpx-accel-ops.c

index a7596aef59d1a56e7a6378bba6114725d7faa1a8..5df49fbe831d267c447c6421b9e1479e6777ee64 100644 (file)
@@ -26,6 +26,7 @@
 #include "qemu/osdep.h"
 #include "qemu/accel.h"
 #include "hw/boards.h"
+#include "system/accel-ops.h"
 #include "system/cpus.h"
 #include "qemu/error-report.h"
 #include "accel-system.h"
index 945ba720513aee5d5c4893e8bc7195e56ca14780..12fc30c276115a4fad18b27e67e77f4f5ec04366 100644 (file)
@@ -54,6 +54,7 @@
 #include "exec/exec-all.h"
 #include "gdbstub/enums.h"
 #include "hw/boards.h"
+#include "system/accel-ops.h"
 #include "system/cpus.h"
 #include "system/hvf.h"
 #include "system/hvf_int.h"
index a81e8f3b03bb34b39bb93e0dd4ae8787bc3550c9..54ea60909e2f85ca919fe1d38234ce7d9c90477d 100644 (file)
@@ -16,6 +16,7 @@
 #include "qemu/osdep.h"
 #include "qemu/error-report.h"
 #include "qemu/main-loop.h"
+#include "system/accel-ops.h"
 #include "system/kvm.h"
 #include "system/kvm_int.h"
 #include "system/runstate.h"
index ad7e3441a5a8ae4d0a9fbb80226d0c39e820981a..7fae80f6a1bedf9c37dfba1f31abbae73169b27b 100644 (file)
@@ -18,6 +18,7 @@
 #include "qemu/option.h"
 #include "qemu/config-file.h"
 #include "qemu/accel.h"
+#include "system/accel-ops.h"
 #include "system/qtest.h"
 #include "system/cpus.h"
 #include "qemu/guest-random.h"
index 100746d555aead70ef3a85f28cbbd309277937f0..c5c513f1e4a0666889873f33dde89e7924c66a61 100644 (file)
@@ -19,7 +19,6 @@
 
 #include "qemu/osdep.h"
 #include "exec/log.h"
-#include "system/cpus.h"
 #include "system/tcg.h"
 #include "qemu/plugin.h"
 #include "internal-common.h"
index 3a3c45f52ed84167a1abfd2d5c31860b2527bffe..ef3d967e3af08fa7796136c5adabf689173076b7 100644 (file)
@@ -33,7 +33,6 @@
 #include "qemu/rcu.h"
 #include "exec/log.h"
 #include "qemu/main-loop.h"
-#include "system/cpus.h"
 #include "exec/cpu-all.h"
 #include "system/cpu-timers.h"
 #include "exec/replay-core.h"
index ae1dbeb79f8425b9830b6f029782807de0e8f74b..eeb38a4d9ce6833fdc78aabb7a9e0c85f319eb27 100644 (file)
@@ -13,7 +13,6 @@
 #include "qapi/type-helpers.h"
 #include "qapi/qapi-commands-machine.h"
 #include "monitor/monitor.h"
-#include "system/cpus.h"
 #include "system/cpu-timers.h"
 #include "system/tcg.h"
 #include "tcg/tcg.h"
index 6e3f1fa92b24e5946a2aee75d6f2c43c64707f62..132c5d146138926b8f1a44f25288d032a121c01f 100644 (file)
@@ -26,6 +26,7 @@
  */
 
 #include "qemu/osdep.h"
+#include "system/accel-ops.h"
 #include "system/tcg.h"
 #include "system/replay.h"
 #include "system/cpu-timers.h"
index 786e2f6f1a7dfef276d4c60e8ebd93bf4b047f47..0914d6e98b205c090233c90141b988d818144685 100644 (file)
@@ -54,7 +54,6 @@
 #include "qemu/cacheinfo.h"
 #include "qemu/timer.h"
 #include "exec/log.h"
-#include "system/cpus.h"
 #include "system/cpu-timers.h"
 #include "system/tcg.h"
 #include "qapi/error.h"
index 852e9fbe5febc9394f7b890cbfd9d3e404384bc9..7aa28b9ab939336e934e6ecf77aafe1e09641a1f 100644 (file)
@@ -18,6 +18,7 @@
 #include "hw/xen/xen_igd.h"
 #include "chardev/char.h"
 #include "qemu/accel.h"
+#include "system/accel-ops.h"
 #include "system/cpus.h"
 #include "system/xen.h"
 #include "system/runstate.h"
index 4248b2d727ed8afa0fbc2165e59bbadd5747b99f..f5dcc2d136bcb261deed190a85240db1d80af0fe 100644 (file)
@@ -21,7 +21,6 @@
 #include "qemu/main-loop.h"
 #include "exec/cpu-common.h"
 #include "hw/core/cpu.h"
-#include "system/cpus.h"
 #include "qemu/lockable.h"
 #include "trace/trace-root.h"
 
index f97f3a14751d20a313067cd1622315a184741ccf..20933bde7d40dfb618fe99d36f7d6e2ce2c5dc94 100644 (file)
@@ -35,6 +35,7 @@
 #include "exec/address-spaces.h"
 #include "exec/memory.h"
 #endif
+#include "system/accel-ops.h"
 #include "system/cpus.h"
 #include "system/tcg.h"
 #include "exec/tswap.h"
index 7f047a285c8c997a445a5a602a186d206d048d46..416c1dbe1e9278c27acb836b8c70521d688cb2bf 100644 (file)
@@ -19,6 +19,7 @@
 #include "gdbstub/commands.h"
 #include "exec/hwaddr.h"
 #include "exec/tb-flush.h"
+#include "system/accel-ops.h"
 #include "system/cpus.h"
 #include "system/runstate.h"
 #include "system/replay.h"
index 3d84efcac47a2f1a34f177a1ed0df5aeae04fdb3..465cc5017730f80f230f4d266eb51857337caf50 100644 (file)
@@ -22,6 +22,7 @@
  * Please keep this list in case-insensitive alphabetical order.
  */
 typedef struct AccelCPUState AccelCPUState;
+typedef struct AccelOpsClass AccelOpsClass;
 typedef struct AccelState AccelState;
 typedef struct AddressSpace AddressSpace;
 typedef struct AioContext AioContext;
index 137fb96d4441baa417228ecc6103c407c8e4d6cd..4c99d25aeffef050d2a8fa6ceeb465bf24ccc1c0 100644 (file)
@@ -17,7 +17,6 @@
 #define TYPE_ACCEL_OPS "accel" ACCEL_OPS_SUFFIX
 #define ACCEL_OPS_NAME(name) (name "-" TYPE_ACCEL_OPS)
 
-typedef struct AccelOpsClass AccelOpsClass;
 DECLARE_CLASS_CHECKERS(AccelOpsClass, ACCEL_OPS, TYPE_ACCEL_OPS)
 
 /**
index 1cffeaaf5c48b3b95dae81bb23969c6daa9a6f0f..3226c765d01041a463b96884b339849c44e4704a 100644 (file)
@@ -1,8 +1,6 @@
 #ifndef QEMU_CPUS_H
 #define QEMU_CPUS_H
 
-#include "system/accel-ops.h"
-
 /* register accel-specific operations */
 void cpus_register_accel(const AccelOpsClass *i);
 
index 37e5892c2404c782552ddbae6a1494ce1274e4db..2cc5f887ab5dad11f98912a830fa8fbd49fbcc94 100644 (file)
@@ -31,6 +31,7 @@
 #include "qapi/qapi-events-run-state.h"
 #include "qapi/qmp/qerror.h"
 #include "exec/gdbstub.h"
+#include "system/accel-ops.h"
 #include "system/hw_accel.h"
 #include "exec/cpu-common.h"
 #include "qemu/thread.h"
index e7b56662feec867035f25f5f159f9ad3cd20bafb..4e4e63de78e992bd5f4a103a79feb42de1fa9a70 100644 (file)
@@ -10,6 +10,7 @@
 #include "qemu/osdep.h"
 #include "system/kvm_int.h"
 #include "qemu/main-loop.h"
+#include "system/accel-ops.h"
 #include "system/cpus.h"
 #include "qemu/guest-random.h"
 
index ab2e014c9eaa2252d2da16f02e3a52bd095cb59f..81fdd06e487aeb1212e1818a0b76c232a8abf20f 100644 (file)
@@ -11,6 +11,7 @@
 #include "qemu/osdep.h"
 #include "system/kvm_int.h"
 #include "qemu/main-loop.h"
+#include "system/accel-ops.h"
 #include "system/cpus.h"
 #include "qemu/guest-random.h"