Lines Matching refs:bpt
82 struct bpt { struct
97 static struct bpt bpts[NBPTS];
98 static struct bpt dabr;
99 static struct bpt *iabr;
138 static struct bpt *at_breakpoint(unsigned long pc);
139 static struct bpt *in_breakpoint_table(unsigned long pc, unsigned long *offp);
368 struct bpt *bp; in xmon_core()
595 struct bpt *bp; in xmon_bpt()
658 struct bpt *bp; in xmon_fault_handler()
675 static struct bpt *at_breakpoint(unsigned long pc) in at_breakpoint()
678 struct bpt *bp; in at_breakpoint()
687 static struct bpt *in_breakpoint_table(unsigned long nip, unsigned long *offp) in in_breakpoint_table()
694 off %= sizeof(struct bpt); in in_breakpoint_table()
695 if (off != offsetof(struct bpt, instr[0]) in in_breakpoint_table()
696 && off != offsetof(struct bpt, instr[1])) in in_breakpoint_table()
698 *offp = off - offsetof(struct bpt, instr[0]); in in_breakpoint_table()
699 return (struct bpt *) (nip - off); in in_breakpoint_table()
702 static struct bpt *new_breakpoint(unsigned long a) in new_breakpoint()
704 struct bpt *bp; in new_breakpoint()
727 struct bpt *bp; in insert_bpts()
776 struct bpt *bp; in remove_bpts()
1141 struct bpt *bp; in bpt_cmds()