Home
last modified time | relevance | path

Searched refs:HBP_NUM (Results 1 – 8 of 8) sorted by relevance

/linux-6.1.9/arch/x86/kernel/
Dhw_breakpoint.c43 static DEFINE_PER_CPU(unsigned long, cpu_debugreg[HBP_NUM]);
49 static DEFINE_PER_CPU(struct perf_event *, bp_per_reg[HBP_NUM]);
104 for (i = 0; i < HBP_NUM; i++) { in arch_install_hw_breakpoint()
113 if (WARN_ONCE(i == HBP_NUM, "Can't find any breakpoint slot")) in arch_install_hw_breakpoint()
152 for (i = 0; i < HBP_NUM; i++) { in arch_uninstall_hw_breakpoint()
161 if (WARN_ONCE(i == HBP_NUM, "Can't find any breakpoint slot")) in arch_uninstall_hw_breakpoint()
474 for (i = 0; i < HBP_NUM; i++) { in flush_ptrace_hw_breakpoint()
527 for (i = 0; i < HBP_NUM; ++i) { in hw_breakpoint_handler()
Dkgdb.c185 } breakinfo[HBP_NUM];
193 for (breakno = 0; breakno < HBP_NUM; breakno++) { in kgdb_correct_hw_break()
280 for (i = 0; i < HBP_NUM; i++) in kgdb_remove_hw_break()
283 if (i == HBP_NUM) in kgdb_remove_hw_break()
301 for (i = 0; i < HBP_NUM; i++) { in kgdb_remove_all_hw_break()
325 for (i = 0; i < HBP_NUM; i++) in kgdb_set_hw_break()
328 if (i == HBP_NUM) in kgdb_set_hw_break()
389 for (i = 0; i < HBP_NUM; i++) { in kgdb_disable_hw_debug()
654 for (i = 0; i < HBP_NUM; i++) { in kgdb_arch_late()
Dptrace.c462 for (i = 0; i < HBP_NUM; i++) { in ptrace_triggered()
481 for (i = 0; i < HBP_NUM; i++) { in ptrace_get_dr7()
552 for (i = 0; i < HBP_NUM; i++) { in ptrace_write_dr7()
596 if (n < HBP_NUM) { in ptrace_get_debugreg()
597 int index = array_index_nospec(n, HBP_NUM); in ptrace_get_debugreg()
656 if (n < HBP_NUM) { in ptrace_set_debugreg()
/linux-6.1.9/arch/x86/include/asm/
Dhw_breakpoint.h45 #define HBP_NUM 4 macro
47 #define hw_breakpoint_slots(type) (HBP_NUM)
Dprocessor.h47 #define HBP_NUM 4 macro
498 struct perf_event *ptrace_bps[HBP_NUM];
/linux-6.1.9/arch/sh/include/asm/
Dhw_breakpoint.h49 #define HBP_NUM 2 macro
51 #define hw_breakpoint_slots(type) (HBP_NUM)
Dprocessor_32.h99 struct perf_event *ptrace_bps[HBP_NUM];
/linux-6.1.9/arch/sh/kernel/
Dhw_breakpoint.c29 static DEFINE_PER_CPU(struct perf_event *, bp_per_reg[HBP_NUM]);
405 WARN_ON(ubc->num_events > HBP_NUM); in register_sh_ubc()