Lines Matching refs:pc
45 ah = (regs->pc) >> 32; in show_regs()
46 al = (regs->pc) & 0xffffffff; in show_regs()
399 p->thread.pc = (unsigned long) ret_from_kernel_thread; in copy_thread()
417 p->thread.pc = (unsigned long) ret_from_fork; in copy_thread()
423 static int in_sh64_switch_to(unsigned long pc) in in_sh64_switch_to() argument
428 return (pc >= (unsigned long) sh64_switch_to) && in in_sh64_switch_to()
429 (pc < (unsigned long) &__sh64_switch_to_end); in in_sh64_switch_to()
435 unsigned long pc; in get_wchan() local
443 pc = thread_saved_pc(p); in get_wchan()
446 if (in_sh64_switch_to(pc)) { in get_wchan()
461 return pc; in get_wchan()