mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 15:41:38 +00:00
39 lines
852 B
C
39 lines
852 B
C
/* radare - LGPL - Copyright 2010-2017 pancake<nopcode.org>, rkx1209 */
|
|
|
|
#include <r_bp.h>
|
|
|
|
static void r_bp_watch_add_hw(RBreakpoint *bp, RBreakpointItem *b) {
|
|
if (bp->breakpoint) {
|
|
bp->breakpoint (bp, b, true);
|
|
}
|
|
}
|
|
|
|
R_API RBreakpointItem* r_bp_watch_add(RBreakpoint *bp, ut64 addr, int size, int hw, int rw) {
|
|
RBreakpointItem *b;
|
|
if (addr == UT64_MAX || size < 1) {
|
|
return NULL;
|
|
}
|
|
if (r_bp_get_in (bp, addr, rw)) {
|
|
eprintf ("Breakpoint already set at this address.\n");
|
|
return NULL;
|
|
}
|
|
b = r_bp_item_new (bp);
|
|
b->addr = addr + bp->delta;
|
|
b->size = size;
|
|
b->enabled = true;
|
|
b->rwx = rw;
|
|
b->hw = hw;
|
|
if (hw) {
|
|
r_bp_watch_add_hw (bp, b);
|
|
} else {
|
|
eprintf ("[TODO]: Software watchpoint is not implmented yet (use ESIL)\n");
|
|
/* TODO */
|
|
}
|
|
bp->nbps++;
|
|
r_list_append (bp->bps, b);
|
|
return b;
|
|
}
|
|
|
|
R_API void r_bp_watch_del() {
|
|
}
|