Lines Matching refs:bpt
80 struct bpt { struct
95 static struct bpt bpts[NBPTS];
96 static struct bpt dabr;
97 static struct bpt *iabr;
136 static struct bpt *at_breakpoint(unsigned long pc);
137 static struct bpt *in_breakpoint_table(unsigned long pc, unsigned long *offp);
354 struct bpt *bp; in xmon_core()
578 struct bpt *bp; in xmon_bpt()
641 struct bpt *bp; in xmon_fault_handler()
658 static struct bpt *at_breakpoint(unsigned long pc) in at_breakpoint()
661 struct bpt *bp; in at_breakpoint()
670 static struct bpt *in_breakpoint_table(unsigned long nip, unsigned long *offp) in in_breakpoint_table()
677 off %= sizeof(struct bpt); in in_breakpoint_table()
678 if (off != offsetof(struct bpt, instr[0]) in in_breakpoint_table()
679 && off != offsetof(struct bpt, instr[1])) in in_breakpoint_table()
681 *offp = off - offsetof(struct bpt, instr[0]); in in_breakpoint_table()
682 return (struct bpt *) (nip - off); in in_breakpoint_table()
685 static struct bpt *new_breakpoint(unsigned long a) in new_breakpoint()
687 struct bpt *bp; in new_breakpoint()
710 struct bpt *bp; in insert_bpts()
753 struct bpt *bp; in remove_bpts()
1120 struct bpt *bp; in bpt_cmds()