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);
406 struct bpt *bp; in xmon_core()
633 struct bpt *bp; in xmon_bpt()
696 struct bpt *bp; in xmon_fault_handler()
713 static struct bpt *at_breakpoint(unsigned long pc) in at_breakpoint()
716 struct bpt *bp; in at_breakpoint()
725 static struct bpt *in_breakpoint_table(unsigned long nip, unsigned long *offp) in in_breakpoint_table()
732 off %= sizeof(struct bpt); in in_breakpoint_table()
733 if (off != offsetof(struct bpt, instr[0]) in in_breakpoint_table()
734 && off != offsetof(struct bpt, instr[1])) in in_breakpoint_table()
736 *offp = off - offsetof(struct bpt, instr[0]); in in_breakpoint_table()
737 return (struct bpt *) (nip - off); in in_breakpoint_table()
740 static struct bpt *new_breakpoint(unsigned long a) in new_breakpoint()
742 struct bpt *bp; in new_breakpoint()
765 struct bpt *bp; in insert_bpts()
814 struct bpt *bp; in remove_bpts()
1192 struct bpt *bp; in bpt_cmds()