Lines Matching refs:slots
188 static int hw_breakpoint_slot_setup(struct perf_event **slots, int max_slots, in hw_breakpoint_slot_setup() argument
196 slot = &slots[i]; in hw_breakpoint_slot_setup()
226 struct perf_event **slots; in hw_breakpoint_control() local
236 slots = this_cpu_ptr(bp_on_reg); in hw_breakpoint_control()
243 slots = this_cpu_ptr(wp_on_reg); in hw_breakpoint_control()
248 i = hw_breakpoint_slot_setup(slots, max_slots, bp, ops); in hw_breakpoint_control()
584 struct perf_event **slots; in toggle_bp_registers() local
588 slots = this_cpu_ptr(bp_on_reg); in toggle_bp_registers()
592 slots = this_cpu_ptr(wp_on_reg); in toggle_bp_registers()
600 if (!slots[i]) in toggle_bp_registers()
603 privilege = counter_arch_bp(slots[i])->ctrl.privilege; in toggle_bp_registers()
626 struct perf_event *bp, **slots; in breakpoint_handler() local
630 slots = this_cpu_ptr(bp_on_reg); in breakpoint_handler()
637 bp = slots[i]; in breakpoint_handler()
761 struct perf_event *wp, **slots; in watchpoint_handler() local
765 slots = this_cpu_ptr(wp_on_reg); in watchpoint_handler()
774 wp = slots[i]; in watchpoint_handler()
805 step = watchpoint_report(slots[closest_match], addr, regs); in watchpoint_handler()
944 struct perf_event **slots; in hw_breakpoint_reset() local
955 for (slots = this_cpu_ptr(bp_on_reg), i = 0; i < core_num_brps; ++i) { in hw_breakpoint_reset()
956 if (slots[i]) { in hw_breakpoint_reset()
957 hw_breakpoint_control(slots[i], HW_BREAKPOINT_RESTORE); in hw_breakpoint_reset()
964 for (slots = this_cpu_ptr(wp_on_reg), i = 0; i < core_num_wrps; ++i) { in hw_breakpoint_reset()
965 if (slots[i]) { in hw_breakpoint_reset()
966 hw_breakpoint_control(slots[i], HW_BREAKPOINT_RESTORE); in hw_breakpoint_reset()