• Home
  • Raw
  • Download

Lines Matching refs:slots

200 static int hw_breakpoint_slot_setup(struct perf_event **slots, int max_slots,  in hw_breakpoint_slot_setup()  argument
208 slot = &slots[i]; in hw_breakpoint_slot_setup()
238 struct perf_event **slots; in hw_breakpoint_control() local
248 slots = this_cpu_ptr(bp_on_reg); in hw_breakpoint_control()
255 slots = this_cpu_ptr(wp_on_reg); in hw_breakpoint_control()
260 i = hw_breakpoint_slot_setup(slots, max_slots, bp, ops); in hw_breakpoint_control()
591 struct perf_event **slots; in toggle_bp_registers() local
595 slots = this_cpu_ptr(bp_on_reg); in toggle_bp_registers()
599 slots = this_cpu_ptr(wp_on_reg); in toggle_bp_registers()
607 if (!slots[i]) in toggle_bp_registers()
610 privilege = counter_arch_bp(slots[i])->ctrl.privilege; in toggle_bp_registers()
632 struct perf_event *bp, **slots; in breakpoint_handler() local
636 slots = this_cpu_ptr(bp_on_reg); in breakpoint_handler()
643 bp = slots[i]; in breakpoint_handler()
743 struct perf_event *wp, **slots; in watchpoint_handler() local
748 slots = this_cpu_ptr(wp_on_reg); in watchpoint_handler()
757 wp = slots[i]; in watchpoint_handler()
793 wp = slots[closest_match]; in watchpoint_handler()
937 struct perf_event **slots; in hw_breakpoint_reset() local
948 for (slots = this_cpu_ptr(bp_on_reg), i = 0; i < core_num_brps; ++i) { in hw_breakpoint_reset()
949 if (slots[i]) { in hw_breakpoint_reset()
950 hw_breakpoint_control(slots[i], HW_BREAKPOINT_RESTORE); in hw_breakpoint_reset()
957 for (slots = this_cpu_ptr(wp_on_reg), i = 0; i < core_num_wrps; ++i) { in hw_breakpoint_reset()
958 if (slots[i]) { in hw_breakpoint_reset()
959 hw_breakpoint_control(slots[i], HW_BREAKPOINT_RESTORE); in hw_breakpoint_reset()