Home
last modified time | relevance | path

Searched refs:nextpc (Results 1 – 5 of 5) sorted by relevance

/linux-2.6.39/arch/sh/kernel/cpu/sh4/
Dfpu.c182 unsigned long nextpc; in ieee_fpe_handler() local
195 nextpc = regs->pc + 4 + ((short)((insn & 0xfff) << 4) >> 3); in ieee_fpe_handler()
200 nextpc = regs->pc + 4 + ((char)(insn & 0xff) << 1); in ieee_fpe_handler()
202 nextpc = regs->pc + 4; in ieee_fpe_handler()
207 nextpc = regs->pc + 4; in ieee_fpe_handler()
209 nextpc = regs->pc + 4 + ((char)(insn & 0xff) << 1); in ieee_fpe_handler()
214 nextpc = regs->regs[nib[1]]; in ieee_fpe_handler()
219 nextpc = regs->pc + 4 + regs->regs[nib[1]]; in ieee_fpe_handler()
223 nextpc = regs->pr; in ieee_fpe_handler()
226 nextpc = regs->pc + instruction_size(insn); in ieee_fpe_handler()
[all …]
/linux-2.6.39/arch/sh/kernel/cpu/sh2a/
Dfpu.c412 unsigned long nextpc; in ieee_fpe_handler() local
423 nextpc = regs->pc + 4 + ((short) ((insn & 0xfff) << 4) >> 3); in ieee_fpe_handler()
427 nextpc = regs->pc + 4 + ((char) (insn & 0xff) << 1); in ieee_fpe_handler()
429 nextpc = regs->pc + 4; in ieee_fpe_handler()
433 nextpc = regs->pc + 4; in ieee_fpe_handler()
435 nextpc = regs->pc + 4 + ((char) (insn & 0xff) << 1); in ieee_fpe_handler()
439 nextpc = regs->regs[nib[1]]; in ieee_fpe_handler()
443 nextpc = regs->pc + 4 + regs->regs[nib[1]]; in ieee_fpe_handler()
446 nextpc = regs->pr; in ieee_fpe_handler()
449 nextpc = regs->pc + 2; in ieee_fpe_handler()
[all …]
/linux-2.6.39/arch/sh/math-emu/
Dmath.c510 unsigned long nextpc; in ieee_fpe_handler() local
523 nextpc = regs->pc + 4 + ((short) ((insn & 0xfff) << 4) >> 3); in ieee_fpe_handler()
527 nextpc = regs->pc + 4 + ((char) (insn & 0xff) << 1); in ieee_fpe_handler()
529 nextpc = regs->pc + 4; in ieee_fpe_handler()
533 nextpc = regs->pc + 4; in ieee_fpe_handler()
535 nextpc = regs->pc + 4 + ((char) (insn & 0xff) << 1); in ieee_fpe_handler()
539 nextpc = regs->regs[nib[1]]; in ieee_fpe_handler()
543 nextpc = regs->pc + 4 + regs->regs[nib[1]]; in ieee_fpe_handler()
546 nextpc = regs->pr; in ieee_fpe_handler()
549 nextpc = regs->pc + 2; in ieee_fpe_handler()
[all …]
/linux-2.6.39/arch/h8300/platform/h8300h/
Dptrace_h8300h.c269 unsigned short *nextpc; in user_enable_single_step() local
270 nextpc = getnextpc(child,(unsigned short *)h8300_get_reg(child, PT_PC)); in user_enable_single_step()
271 child->thread.breakinfo.addr = nextpc; in user_enable_single_step()
272 child->thread.breakinfo.inst = *nextpc; in user_enable_single_step()
273 *nextpc = BREAKINST; in user_enable_single_step()
/linux-2.6.39/arch/mn10300/kernel/
Dkprobes.c404 unsigned long nextpc; in prepare_singlestep() local
410 nextpc = find_nextpc(regs, &cur_kprobe_ss_flags); in prepare_singlestep()
412 cur_kprobe_next_pc = cur_kprobe_orig_pc + (nextpc - regs->pc); in prepare_singlestep()
414 cur_kprobe_next_pc = nextpc; in prepare_singlestep()
418 nextpc = singlestep_branch_setup(regs); in prepare_singlestep()
420 cur_kprobe_bp_addr = nextpc; in prepare_singlestep()
422 *(u8 *) nextpc = BREAKPOINT_INSTRUCTION; in prepare_singlestep()