Home
last modified time | relevance | path

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

/f-stack/freebsd/ddb/
H A Ddb_run.c189 (!inst_return(ins) || --db_call_depth != 0)) { in db_stop_at_pc()
191 if (inst_call(ins) || inst_return(ins)) { in db_stop_at_pc()
211 !inst_return(ins) && in db_stop_at_pc()
309 if (inst_branch(inst) || inst_call(inst) || inst_return(inst)) { in db_set_single_step()
/f-stack/freebsd/amd64/include/
H A Ddb_machdep.h80 #define inst_return(ins) (((ins)&0xff) == I_RET) macro
/f-stack/freebsd/i386/include/
H A Ddb_machdep.h81 #define inst_return(ins) (((ins)&0xff) == I_RET) macro
/f-stack/freebsd/arm/include/
H A Ddb_machdep.h66 #define inst_return(ins) (((ins) & 0x0e108000) == 0x08108000 || \ macro
/f-stack/freebsd/mips/include/
H A Ddb_machdep.h82 #define inst_return(i) ((i) == 0x03e00008) macro
/f-stack/freebsd/arm64/include/
H A Ddb_machdep.h64 #define inst_return(ins) (((ins) & 0xfffffc1fu) == 0xd65f0000) macro
/f-stack/freebsd/arm/arm/
H A Dmachdep_ptrace.c118 inst_return(cur_instr)) { in ptrace_get_alternative_next()
H A Ddebug_monitor.c297 if (inst_branch(inst) || inst_call(inst) || inst_return(inst)) { in kdb_cpu_set_singlestep()