[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 18/40] target/arm/debug_helper: only include common helpers
From: |
Pierrick Bouvier |
Subject: |
[PATCH v4 18/40] target/arm/debug_helper: only include common helpers |
Date: |
Sat, 3 May 2025 22:28:52 -0700 |
Avoid pulling helper.h which contains TARGET_AARCH64.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
---
target/arm/debug_helper.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/target/arm/debug_helper.c b/target/arm/debug_helper.c
index 473ee2af38e..357bc2141ae 100644
--- a/target/arm/debug_helper.c
+++ b/target/arm/debug_helper.c
@@ -12,10 +12,12 @@
#include "cpu-features.h"
#include "cpregs.h"
#include "exec/exec-all.h"
-#include "exec/helper-proto.h"
#include "exec/watchpoint.h"
#include "system/tcg.h"
+#define HELPER_H "tcg/helper.h"
+#include "exec/helper-proto.h.inc"
+
#ifdef CONFIG_TCG
/* Return the Exception Level targeted by debug exceptions. */
static int arm_debug_target_el(CPUARMState *env)
--
2.47.2
- [PATCH v4 00/40] single-binary: compile target/arm twice, Pierrick Bouvier, 2025/05/04
- [PATCH v4 02/40] include/system/hvf: missing vaddr include, Pierrick Bouvier, 2025/05/04
- [PATCH v4 03/40] meson: add common libs for target and target_system, Pierrick Bouvier, 2025/05/04
- [PATCH v4 01/40] target/arm: Replace target_ulong -> uint64_t for HWBreakpoint, Pierrick Bouvier, 2025/05/04
- [PATCH v4 06/40] target/arm/kvm-stub: add kvm_arm_reset_vcpu stub, Pierrick Bouvier, 2025/05/04
- [PATCH v4 07/40] target/arm/cpu: move arm_cpu_kvm_set_irq to kvm.c, Pierrick Bouvier, 2025/05/04
- [PATCH v4 09/40] target/arm/cpu: remove TARGET_BIG_ENDIAN dependency, Pierrick Bouvier, 2025/05/04
- [PATCH v4 11/40] target/arm/cpu: remove TARGET_AARCH64 in arm_cpu_finalize_features, Pierrick Bouvier, 2025/05/04
- [PATCH v4 14/40] tcg: add vaddr type for helpers, Pierrick Bouvier, 2025/05/04
- [PATCH v4 18/40] target/arm/debug_helper: only include common helpers,
Pierrick Bouvier <=
- [PATCH v4 17/40] target/arm/helper: extract common helpers, Pierrick Bouvier, 2025/05/04
- [PATCH v4 21/40] target/arm/helper: restrict include to common helpers, Pierrick Bouvier, 2025/05/04
- [PATCH v4 05/40] target/arm: move kvm stubs and remove CONFIG_KVM from kvm_arm.h, Pierrick Bouvier, 2025/05/04
- [PATCH v4 08/40] accel/hvf: add hvf_enabled() for common code, Pierrick Bouvier, 2025/05/04
- [PATCH v4 10/40] target/arm/cpu: remove TARGET_AARCH64 around aarch64_cpu_dump_state common, Pierrick Bouvier, 2025/05/04
- [PATCH v4 04/40] meson: apply target config for picking files from libsystem and libuser, Pierrick Bouvier, 2025/05/04
- [PATCH v4 12/40] target/arm/cpu: compile file twice (user, system) only, Pierrick Bouvier, 2025/05/04
- [PATCH v4 20/40] target/arm/debug_helper: compile file twice (user, system), Pierrick Bouvier, 2025/05/04