Home
last modified time | relevance | path

Searched refs:T_WATCHPOINT (Results 1 – 5 of 5) sorted by relevance

/freebsd-head/sys/powerpc/include/
HDdb_machdep.h64 #define T_WATCHPOINT 0xeeee macro
65 #ifdef T_WATCHPOINT
66 #define IS_WATCHPOINT_TRAP(type, code) ((type) == T_WATCHPOINT)
/freebsd-head/sys/arm/include/
HDdb_machdep.h37 #define T_WATCHPOINT (2) macro
56 #define IS_WATCHPOINT_TRAP(type, code) (type == T_WATCHPOINT)
/freebsd-head/sys/riscv/include/
HDdb_machdep.h43 #define T_WATCHPOINT (0) macro
68 #define IS_WATCHPOINT_TRAP(type, code) (type == T_WATCHPOINT)
/freebsd-head/sys/arm64/include/
HDdb_machdep.h41 #define T_WATCHPOINT (EXCP_WATCHPT_EL1) macro
66 #define IS_WATCHPOINT_TRAP(type, code) (type == T_WATCHPOINT)
/freebsd-head/sys/arm/arm/
HDtrap-v6.c254 kdb_trap((prefetch) ? T_BREAKPOINT : T_WATCHPOINT, 0, tf); in abort_debug()