]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
semihosting/uaccess: Avoid including 'cpu.h'
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Wed, 6 Dec 2023 15:11:15 +0000 (16:11 +0100)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Fri, 26 Apr 2024 13:31:37 +0000 (15:31 +0200)
"semihosting/uaccess.h" only requires the following headers:

  - "exec/cpu-defs.h" for target_ulong,
  - "exec/cpu-common.h" for cpu_memory_rw_debug()
  - "exec/tswap.h" for tswap32() and tswap64().

Include them instead of the huge "cpu.h".

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <42c6471e-8383-45e0-85ee-e20ca32ecbad@linaro.org>

include/semihosting/uaccess.h

index 3963eafc3e224c405e44e4b8aaee8a7c68c79e8f..dd289af8dd485c4b0cc76dd2f962890e7f053c9b 100644 (file)
@@ -14,7 +14,9 @@
 #error Cannot include semihosting/uaccess.h from user emulation
 #endif
 
-#include "cpu.h"
+#include "exec/cpu-common.h"
+#include "exec/cpu-defs.h"
+#include "exec/tswap.h"
 
 #define get_user_u64(val, addr)                                         \
     ({ uint64_t val_ = 0;                                               \