target/arm/kvm: Move kvm_arm_hw_debug_active and unexport
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Gavin Shan <gshan@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
ec4145f728
commit
ea79c59989
@ -1021,6 +1021,17 @@ int kvm_arch_process_async_events(CPUState *cs)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* kvm_arm_hw_debug_active:
|
||||||
|
* @cs: CPU State
|
||||||
|
*
|
||||||
|
* Return: TRUE if any hardware breakpoints in use.
|
||||||
|
*/
|
||||||
|
static bool kvm_arm_hw_debug_active(CPUState *cs)
|
||||||
|
{
|
||||||
|
return ((cur_hw_wps > 0) || (cur_hw_bps > 0));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* kvm_arm_copy_hw_debug_data:
|
* kvm_arm_copy_hw_debug_data:
|
||||||
* @ptr: kvm_guest_debug_arch structure
|
* @ptr: kvm_guest_debug_arch structure
|
||||||
|
@ -73,11 +73,6 @@ void kvm_arch_remove_all_hw_breakpoints(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool kvm_arm_hw_debug_active(CPUState *cs)
|
|
||||||
{
|
|
||||||
return ((cur_hw_wps > 0) || (cur_hw_bps > 0));
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool kvm_arm_set_device_attr(CPUState *cs, struct kvm_device_attr *attr,
|
static bool kvm_arm_set_device_attr(CPUState *cs, struct kvm_device_attr *attr,
|
||||||
const char *name)
|
const char *name)
|
||||||
{
|
{
|
||||||
|
@ -454,12 +454,4 @@ static inline uint32_t kvm_arm_sve_get_vls(CPUState *cs)
|
|||||||
*/
|
*/
|
||||||
bool kvm_arm_handle_debug(CPUState *cs, struct kvm_debug_exit_arch *debug_exit);
|
bool kvm_arm_handle_debug(CPUState *cs, struct kvm_debug_exit_arch *debug_exit);
|
||||||
|
|
||||||
/**
|
|
||||||
* kvm_arm_hw_debug_active:
|
|
||||||
* @cs: CPU State
|
|
||||||
*
|
|
||||||
* Return: TRUE if any hardware breakpoints in use.
|
|
||||||
*/
|
|
||||||
bool kvm_arm_hw_debug_active(CPUState *cs);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user