mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
target/arm: Implement debug_check_breakpoint
Reuse the code at the bottom of helper_check_breakpoints, which is what we currently call from *_tr_breakpoint_check. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
e3f7c801f1
commit
b00d86bc8b
@ -1984,6 +1984,7 @@ static const struct TCGCPUOps arm_tcg_ops = {
|
|||||||
.do_unaligned_access = arm_cpu_do_unaligned_access,
|
.do_unaligned_access = arm_cpu_do_unaligned_access,
|
||||||
.adjust_watchpoint_address = arm_adjust_watchpoint_address,
|
.adjust_watchpoint_address = arm_adjust_watchpoint_address,
|
||||||
.debug_check_watchpoint = arm_debug_check_watchpoint,
|
.debug_check_watchpoint = arm_debug_check_watchpoint,
|
||||||
|
.debug_check_breakpoint = arm_debug_check_breakpoint,
|
||||||
#endif /* !CONFIG_USER_ONLY */
|
#endif /* !CONFIG_USER_ONLY */
|
||||||
};
|
};
|
||||||
#endif /* CONFIG_TCG */
|
#endif /* CONFIG_TCG */
|
||||||
|
@ -911,6 +911,7 @@ static const struct TCGCPUOps arm_v7m_tcg_ops = {
|
|||||||
.do_unaligned_access = arm_cpu_do_unaligned_access,
|
.do_unaligned_access = arm_cpu_do_unaligned_access,
|
||||||
.adjust_watchpoint_address = arm_adjust_watchpoint_address,
|
.adjust_watchpoint_address = arm_adjust_watchpoint_address,
|
||||||
.debug_check_watchpoint = arm_debug_check_watchpoint,
|
.debug_check_watchpoint = arm_debug_check_watchpoint,
|
||||||
|
.debug_check_breakpoint = arm_debug_check_breakpoint,
|
||||||
#endif /* !CONFIG_USER_ONLY */
|
#endif /* !CONFIG_USER_ONLY */
|
||||||
};
|
};
|
||||||
#endif /* CONFIG_TCG */
|
#endif /* CONFIG_TCG */
|
||||||
|
@ -216,8 +216,9 @@ static bool check_watchpoints(ARMCPU *cpu)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool check_breakpoints(ARMCPU *cpu)
|
bool arm_debug_check_breakpoint(CPUState *cs)
|
||||||
{
|
{
|
||||||
|
ARMCPU *cpu = ARM_CPU(cs);
|
||||||
CPUARMState *env = &cpu->env;
|
CPUARMState *env = &cpu->env;
|
||||||
int n;
|
int n;
|
||||||
|
|
||||||
@ -240,9 +241,7 @@ static bool check_breakpoints(ARMCPU *cpu)
|
|||||||
|
|
||||||
void HELPER(check_breakpoints)(CPUARMState *env)
|
void HELPER(check_breakpoints)(CPUARMState *env)
|
||||||
{
|
{
|
||||||
ARMCPU *cpu = env_archcpu(env);
|
if (arm_debug_check_breakpoint(env_cpu(env))) {
|
||||||
|
|
||||||
if (check_breakpoints(cpu)) {
|
|
||||||
HELPER(exception_internal(env, EXCP_DEBUG));
|
HELPER(exception_internal(env, EXCP_DEBUG));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -282,6 +282,9 @@ void hw_breakpoint_update(ARMCPU *cpu, int n);
|
|||||||
*/
|
*/
|
||||||
void hw_breakpoint_update_all(ARMCPU *cpu);
|
void hw_breakpoint_update_all(ARMCPU *cpu);
|
||||||
|
|
||||||
|
/* Callback function for checking if a breakpoint should trigger. */
|
||||||
|
bool arm_debug_check_breakpoint(CPUState *cs);
|
||||||
|
|
||||||
/* Callback function for checking if a watchpoint should trigger. */
|
/* Callback function for checking if a watchpoint should trigger. */
|
||||||
bool arm_debug_check_watchpoint(CPUState *cs, CPUWatchpoint *wp);
|
bool arm_debug_check_watchpoint(CPUState *cs, CPUWatchpoint *wp);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user