Home
last modified time | relevance | path

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

/f-stack/freebsd/ddb/
H A Ddb_run.c191 if (inst_call(ins) || inst_return(ins)) { in db_stop_at_pc()
200 if (inst_call(ins)) in db_stop_at_pc()
210 if (!inst_call(ins) && in db_stop_at_pc()
241 if (inst_branch(ins) || inst_call(ins)) { in db_restart_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.h81 #define inst_call(ins) (((ins)&0xff) == I_CALL || i_calli(ins) || \ macro
/f-stack/freebsd/i386/include/
H A Ddb_machdep.h82 #define inst_call(ins) (((ins)&0xff) == I_CALL || \ macro
/f-stack/freebsd/arm/include/
H A Ddb_machdep.h71 #define inst_call(ins) (((ins) & 0x0f000000) == 0x0b000000) macro
/f-stack/freebsd/mips/include/
H A Ddb_machdep.h81 #define inst_call(i) (db_inst_type(i) == IT_CALL) macro
/f-stack/freebsd/arm64/include/
H A Ddb_machdep.h65 #define inst_call(ins) (((ins) & 0xfc000000u) == 0x94000000u || /* BL */ \ macro
/f-stack/freebsd/arm/arm/
H A Dmachdep_ptrace.c117 if (inst_branch(cur_instr) || inst_call(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()