Lines Matching refs:next_pc

257 			       unsigned long *next_pc,  in compute_next_pc_for_16bit_insn()  argument
282 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_16bit_insn()
290 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_16bit_insn()
297 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_16bit_insn()
317 *next_pc = evb + (trapno << 2); in compute_next_pc_for_16bit_insn()
321 *next_pc = get_stack_long(child, PT_BPC); in compute_next_pc_for_16bit_insn()
328 *next_pc = get_stack_long(child, in compute_next_pc_for_16bit_insn()
336 *next_pc = get_stack_long(child, in compute_next_pc_for_16bit_insn()
345 *next_pc = get_stack_long(child, in compute_next_pc_for_16bit_insn()
353 *next_pc = pc + 4; in compute_next_pc_for_16bit_insn()
355 *next_pc = pc + 2; in compute_next_pc_for_16bit_insn()
360 unsigned long *next_pc, in compute_next_pc_for_32bit_insn() argument
376 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_32bit_insn()
384 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_32bit_insn()
391 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_32bit_insn()
409 *next_pc = (pc & ~0x3) + disp; in compute_next_pc_for_32bit_insn()
415 *next_pc = pc + 4; in compute_next_pc_for_32bit_insn()
420 unsigned long *next_pc, struct task_struct *child) in compute_next_pc() argument
423 compute_next_pc_for_32bit_insn(insn, pc, next_pc, child); in compute_next_pc()
425 compute_next_pc_for_16bit_insn(insn, pc, next_pc, child); in compute_next_pc()
429 register_debug_trap(struct task_struct *child, unsigned long next_pc, in register_debug_trap() argument
433 unsigned long addr = next_pc & ~3; in register_debug_trap()
443 if (next_pc & 3) { in register_debug_trap()
536 embed_debug_trap(struct task_struct *child, unsigned long next_pc) in embed_debug_trap() argument
539 unsigned long addr = next_pc & ~3; in embed_debug_trap()
547 if (register_debug_trap(child, next_pc, next_insn, &code)) { in embed_debug_trap()
585 unsigned long next_pc; in user_enable_single_step() local
597 compute_next_pc(insn, pc, &next_pc, child); in user_enable_single_step()
598 if (next_pc & 0x80000000) in user_enable_single_step()
601 if (embed_debug_trap(child, next_pc)) in user_enable_single_step()