Lines Matching refs:bpt
89 struct bpt { struct
103 static struct bpt bpts[NBPTS];
104 static struct bpt dabr;
105 static struct bpt *iabr;
144 static struct bpt *at_breakpoint(unsigned long pc);
145 static struct bpt *in_breakpoint_table(unsigned long pc, unsigned long *offp);
405 struct bpt *bp; in xmon_core()
632 struct bpt *bp; in xmon_bpt()
695 struct bpt *bp; in xmon_fault_handler()
712 static struct bpt *at_breakpoint(unsigned long pc) in at_breakpoint()
715 struct bpt *bp; in at_breakpoint()
724 static struct bpt *in_breakpoint_table(unsigned long nip, unsigned long *offp) in in_breakpoint_table()
731 off %= sizeof(struct bpt); in in_breakpoint_table()
732 if (off != offsetof(struct bpt, instr[0]) in in_breakpoint_table()
733 && off != offsetof(struct bpt, instr[1])) in in_breakpoint_table()
735 *offp = off - offsetof(struct bpt, instr[0]); in in_breakpoint_table()
736 return (struct bpt *) (nip - off); in in_breakpoint_table()
739 static struct bpt *new_breakpoint(unsigned long a) in new_breakpoint()
741 struct bpt *bp; in new_breakpoint()
764 struct bpt *bp; in insert_bpts()
813 struct bpt *bp; in remove_bpts()
1178 struct bpt *bp; in bpt_cmds()