Home
last modified time | relevance | path

Searched refs:inst_return (Results 1 – 9 of 9) sorted by relevance

/freebsd/sys/ddb/
H A Ddb_run.c161 (!inst_return(ins) || --db_call_depth != 0)) { in db_stop_at_pc()
163 if (inst_call(ins) || inst_return(ins)) { in db_stop_at_pc()
183 !inst_return(ins) && in db_stop_at_pc()
/freebsd/sys/amd64/include/
H A Ddb_machdep.h77 #define inst_return(ins) (((ins)&0xff) == I_RET) macro
/freebsd/sys/arm/include/
H A Ddb_machdep.h65 #define inst_return(ins) (((ins) & 0x0e108000) == 0x08108000 || \ macro
/freebsd/sys/i386/include/
H A Ddb_machdep.h78 #define inst_return(ins) (((ins)&0xff) == I_RET) macro
/freebsd/sys/powerpc/include/
H A Ddb_machdep.h81 #define inst_return(ins) (((ins)&M_RTS) == I_RTS) macro
/freebsd/sys/riscv/include/
H A Ddb_machdep.h71 #define inst_return(ins) (ins == 0x00008067) /* ret */ macro
/freebsd/sys/arm64/include/
H A Ddb_machdep.h70 #define inst_return(ins) (((ins) & 0xfffffc1fu) == 0xd65f0000)
67 #define inst_return( global() macro
/freebsd/sys/arm/arm/
H A Dmachdep_ptrace.c115 inst_return(cur_instr)) { in ptrace_get_alternative_next()
H A Ddebug_monitor.c295 if (inst_branch(inst) || inst_call(inst) || inst_return(inst)) { in kdb_cpu_set_singlestep()