[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 20/49] target/arm/helper: restrict include to common helpers
From: |
Pierrick Bouvier |
Subject: |
[PATCH v7 20/49] target/arm/helper: restrict include to common helpers |
Date: |
Wed, 7 May 2025 16:42:11 -0700 |
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
---
target/arm/helper.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/target/arm/helper.c b/target/arm/helper.c
index 360e6ac0f59..941fc35d24d 100644
--- a/target/arm/helper.c
+++ b/target/arm/helper.c
@@ -12,7 +12,6 @@
#include "cpu.h"
#include "internals.h"
#include "cpu-features.h"
-#include "exec/helper-proto.h"
#include "exec/page-protection.h"
#include "exec/mmap-lock.h"
#include "qemu/main-loop.h"
@@ -35,6 +34,9 @@
#include "cpregs.h"
#include "target/arm/gtimer.h"
+#define HELPER_H "tcg/helper.h"
+#include "exec/helper-proto.h.inc"
+
#define ARM_CPU_FREQ 1000000000 /* FIXME: 1 GHz, should be configurable */
static void switch_mode(CPUARMState *env, int mode);
--
2.47.2
- [PATCH v7 18/49] target/arm/debug_helper: remove target_ulong, (continued)
- [PATCH v7 18/49] target/arm/debug_helper: remove target_ulong, Pierrick Bouvier, 2025/05/07
- [PATCH v7 19/49] target/arm/debug_helper: compile file twice (user, system), Pierrick Bouvier, 2025/05/07
- [PATCH v7 21/49] target/arm/helper: replace target_ulong by vaddr, Pierrick Bouvier, 2025/05/07
- [PATCH v7 16/49] target/arm/helper: extract common helpers, Pierrick Bouvier, 2025/05/07
- [PATCH v7 23/49] target/arm/helper: remove remaining TARGET_AARCH64, Pierrick Bouvier, 2025/05/07
- [PATCH v7 24/49] target/arm/helper: compile file twice (user, system), Pierrick Bouvier, 2025/05/07
- [PATCH v7 10/49] target/arm/cpu: remove TARGET_AARCH64 in arm_cpu_finalize_features, Pierrick Bouvier, 2025/05/07
- [PATCH v7 13/49] tcg: add vaddr type for helpers, Pierrick Bouvier, 2025/05/07
- [PATCH v7 14/49] target/arm/helper: use vaddr instead of target_ulong for exception_pc_alignment, Pierrick Bouvier, 2025/05/07
- [PATCH v7 17/49] target/arm/debug_helper: only include common helpers, Pierrick Bouvier, 2025/05/07
- [PATCH v7 20/49] target/arm/helper: restrict include to common helpers,
Pierrick Bouvier <=
- [PATCH v7 25/49] target/arm/vfp_fpscr: compile file twice (user, system), Pierrick Bouvier, 2025/05/07
- [PATCH v7 26/49] target/arm/arch_dump: remove TARGET_AARCH64 conditionals, Pierrick Bouvier, 2025/05/07
- [PATCH v7 29/49] target/arm/cortex-regs: compile file once (system), Pierrick Bouvier, 2025/05/07
- [PATCH v7 30/49] target/arm/ptw: replace target_ulong with int64_t, Pierrick Bouvier, 2025/05/07
- [PATCH v7 35/49] target/arm/machine: reduce migration include to avoid target specific definitions, Pierrick Bouvier, 2025/05/07
- [PATCH v7 27/49] target/arm/arch_dump: compile file once (system), Pierrick Bouvier, 2025/05/07
- [PATCH v7 31/49] target/arm/ptw: replace TARGET_AARCH64 by CONFIG_ATOMIC64 from arm_casq_ptw, Pierrick Bouvier, 2025/05/07
- [PATCH v7 33/49] target/arm/meson: accelerator files are not needed in user mode, Pierrick Bouvier, 2025/05/07
- [PATCH v7 36/49] target/arm/machine: remove TARGET_AARCH64 from migration state, Pierrick Bouvier, 2025/05/07
- [PATCH v7 37/49] target/arm/machine: move cpu_post_load kvm bits to kvm_arm_cpu_post_load function, Pierrick Bouvier, 2025/05/07