Home
last modified time | relevance | path

Searched refs:cur_instr (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/dev/aic7xxx/aicasm/
H A Daicasm.c323 struct instruction *cur_instr; in back_patch() local
325 for (cur_instr = STAILQ_FIRST(&seq_program); in back_patch()
326 cur_instr != NULL; in back_patch()
327 cur_instr = STAILQ_NEXT(cur_instr, links)) { in back_patch()
328 if (cur_instr->patch_label != NULL) { in back_patch()
332 if (cur_instr->patch_label->type != LABEL) { in back_patch()
337 cur_instr->patch_label->name); in back_patch()
341 f3_instr = &cur_instr->format.format3; in back_patch()
343 address += cur_instr->patch_label->info.linfo->address; in back_patch()
352 struct instruction *cur_instr; in output_code() local
[all …]
/freebsd/sys/arm/arm/
H A Dmachdep_ptrace.c109 ptrace_get_alternative_next(struct thread *td, uint32_t cur_instr, in ptrace_get_alternative_next() argument
114 if (inst_branch(cur_instr) || inst_call(cur_instr) || in ptrace_get_alternative_next()
115 inst_return(cur_instr)) { in ptrace_get_alternative_next()
116 error = arm_predict_branch(td, cur_instr, td->td_frame->tf_pc, in ptrace_get_alternative_next()
130 uint32_t cur_instr, alt_next = 0; in ptrace_single_step() local
144 &cur_instr); in ptrace_single_step()
161 error_alt = ptrace_get_alternative_next(td, cur_instr, &alt_next); in ptrace_single_step()