Lines Matching refs:debug_info
229 struct debug_info *debug_info = ¤t->thread.debug; in hw_breakpoint_control() local
240 reg_enable = !debug_info->bps_disabled; in hw_breakpoint_control()
247 reg_enable = !debug_info->wps_disabled; in hw_breakpoint_control()
628 struct debug_info *debug_info; in do_breakpoint() local
633 debug_info = ¤t->thread.debug; in do_breakpoint()
668 debug_info->bps_disabled = 1; in do_breakpoint()
672 if (debug_info->wps_disabled) in do_breakpoint()
676 debug_info->suspended_step = 1; in do_breakpoint()
760 struct debug_info *debug_info; in do_watchpoint() local
764 debug_info = ¤t->thread.debug; in do_watchpoint()
817 debug_info->wps_disabled = 1; in do_watchpoint()
820 if (debug_info->bps_disabled) in do_watchpoint()
824 debug_info->suspended_step = 1; in do_watchpoint()
849 struct debug_info *debug_info = ¤t->thread.debug; in try_step_suspended_breakpoints() local
859 if (debug_info->bps_disabled) { in try_step_suspended_breakpoints()
860 debug_info->bps_disabled = 0; in try_step_suspended_breakpoints()
865 if (debug_info->wps_disabled) { in try_step_suspended_breakpoints()
866 debug_info->wps_disabled = 0; in try_step_suspended_breakpoints()
872 if (debug_info->suspended_step) { in try_step_suspended_breakpoints()
873 debug_info->suspended_step = 0; in try_step_suspended_breakpoints()
884 if (!debug_info->wps_disabled) in try_step_suspended_breakpoints()
915 struct debug_info *current_debug_info, *next_debug_info; in hw_breakpoint_thread_switch()