Lines Matching refs:next_pc
256 unsigned long *next_pc, in compute_next_pc_for_16bit_insn() argument
281 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_16bit_insn()
289 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_16bit_insn()
296 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_16bit_insn()
316 *next_pc = evb + (trapno << 2); in compute_next_pc_for_16bit_insn()
320 *next_pc = get_stack_long(child, PT_BPC); in compute_next_pc_for_16bit_insn()
327 *next_pc = get_stack_long(child, in compute_next_pc_for_16bit_insn()
335 *next_pc = get_stack_long(child, in compute_next_pc_for_16bit_insn()
344 *next_pc = get_stack_long(child, in compute_next_pc_for_16bit_insn()
352 *next_pc = pc + 4; in compute_next_pc_for_16bit_insn()
354 *next_pc = pc + 2; in compute_next_pc_for_16bit_insn()
359 unsigned long *next_pc, in compute_next_pc_for_32bit_insn() argument
375 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_32bit_insn()
383 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_32bit_insn()
390 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_32bit_insn()
408 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_32bit_insn()
414 *next_pc = pc + 4; in compute_next_pc_for_32bit_insn()
419 unsigned long *next_pc, struct task_struct *child) in compute_next_pc() argument
422 compute_next_pc_for_32bit_insn(insn, pc, next_pc, child); in compute_next_pc()
424 compute_next_pc_for_16bit_insn(insn, pc, next_pc, child); in compute_next_pc()
428 register_debug_trap(struct task_struct *child, unsigned long next_pc, in register_debug_trap() argument
432 unsigned long addr = next_pc & ~3; in register_debug_trap()
442 if (next_pc & 3) { in register_debug_trap()
535 embed_debug_trap(struct task_struct *child, unsigned long next_pc) in embed_debug_trap() argument
538 unsigned long addr = next_pc & ~3; in embed_debug_trap()
546 if (register_debug_trap(child, next_pc, next_insn, &code)) { in embed_debug_trap()
584 unsigned long next_pc; in user_enable_single_step() local
596 compute_next_pc(insn, pc, &next_pc, child); in user_enable_single_step()
597 if (next_pc & 0x80000000) in user_enable_single_step()
600 if (embed_debug_trap(child, next_pc)) in user_enable_single_step()