Lines Matching refs:slots

189 static int hw_breakpoint_slot_setup(struct perf_event **slots, int max_slots,  in hw_breakpoint_slot_setup()  argument
197 slot = &slots[i]; in hw_breakpoint_slot_setup()
227 struct perf_event **slots; in hw_breakpoint_control() local
237 slots = this_cpu_ptr(bp_on_reg); in hw_breakpoint_control()
244 slots = this_cpu_ptr(wp_on_reg); in hw_breakpoint_control()
249 i = hw_breakpoint_slot_setup(slots, max_slots, bp, ops); in hw_breakpoint_control()
585 struct perf_event **slots; in toggle_bp_registers() local
589 slots = this_cpu_ptr(bp_on_reg); in toggle_bp_registers()
593 slots = this_cpu_ptr(wp_on_reg); in toggle_bp_registers()
601 if (!slots[i]) in toggle_bp_registers()
604 privilege = counter_arch_bp(slots[i])->ctrl.privilege; in toggle_bp_registers()
627 struct perf_event *bp, **slots; in breakpoint_handler() local
631 slots = this_cpu_ptr(bp_on_reg); in breakpoint_handler()
638 bp = slots[i]; in breakpoint_handler()
762 struct perf_event *wp, **slots; in watchpoint_handler() local
766 slots = this_cpu_ptr(wp_on_reg); in watchpoint_handler()
775 wp = slots[i]; in watchpoint_handler()
806 step = watchpoint_report(slots[closest_match], addr, regs); in watchpoint_handler()
945 struct perf_event **slots; in hw_breakpoint_reset() local
956 for (slots = this_cpu_ptr(bp_on_reg), i = 0; i < core_num_brps; ++i) { in hw_breakpoint_reset()
957 if (slots[i]) { in hw_breakpoint_reset()
958 hw_breakpoint_control(slots[i], HW_BREAKPOINT_RESTORE); in hw_breakpoint_reset()
965 for (slots = this_cpu_ptr(wp_on_reg), i = 0; i < core_num_wrps; ++i) { in hw_breakpoint_reset()
966 if (slots[i]) { in hw_breakpoint_reset()
967 hw_breakpoint_control(slots[i], HW_BREAKPOINT_RESTORE); in hw_breakpoint_reset()