Home
last modified time | relevance | path

Searched refs:T_BREAKPOINT (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/arm/include/
H A Ddb_machdep.h36 #define T_BREAKPOINT (1) macro
55 #define IS_BREAKPOINT_TRAP(type, code) (type == T_BREAKPOINT)
/freebsd/sys/powerpc/include/
H A Ddb_machdep.h61 #define T_BREAKPOINT 0xffff macro
62 #define IS_BREAKPOINT_TRAP(type, code) ((type) == T_BREAKPOINT)
/freebsd/sys/riscv/include/
H A Ddb_machdep.h42 #define T_BREAKPOINT (SCAUSE_BREAKPOINT) macro
67 #define IS_BREAKPOINT_TRAP(type, code) (type == T_BREAKPOINT)
/freebsd/sys/arm64/include/
H A Ddb_machdep.h38 #define T_BREAKPOINT (EXCP_BRK) macro
64 (type == T_BREAKPOINT || type == T_HW_BREAKPOINT)
/freebsd/sys/arm/arm/
H A Dundefined.c168 return !kgdb_trap(T_BREAKPOINT, frame); in gdb_trapper()
326 kdb_trap(T_BREAKPOINT, 0, frame); in undefinedinstruction()
H A Dgdb_machdep.c124 case T_BREAKPOINT: return (SIGTRAP); in gdb_cpu_signal()
H A Dtrap-v6.c254 kdb_trap((prefetch) ? T_BREAKPOINT : T_WATCHPOINT, 0, tf); in abort_debug()
/freebsd/sys/powerpc/powerpc/
H A Dtrap.c1004 type = T_BREAKPOINT; in db_trap_glue()