Lines Matching defs:tpc
64 regs->tpc);
69 unhandled_fault(regs->tpc, current, regs);
79 static unsigned int get_user_insn(unsigned long tpc)
81 pgd_t *pgdp = pgd_offset(current->mm, tpc);
91 p4dp = p4d_offset(pgdp, tpc);
94 pudp = pud_offset(p4dp, tpc);
101 pmdp = pmd_offset(pudp, tpc);
108 pa += tpc & ~HPAGE_MASK;
117 ptep = pte_offset_map(pmdp, tpc);
121 pa += (tpc & ~PAGE_MASK);
149 (void *)regs->tpc, (void *)regs->u_regs[UREG_I7],
152 print_vma_addr(KERN_CONT " in ", regs->tpc);
164 addr = regs->tpc;
185 if (!regs->tpc || (regs->tpc & 0x3))
188 insn = *(unsigned int *) regs->tpc;
190 insn = get_user_insn(regs->tpc);
234 entry = search_exception_tables(regs->tpc);
236 regs->tpc = entry->fixup;
237 regs->tnpc = regs->tpc + 4;
260 regs->tpc);
289 if (unlikely((regs->tpc >> 32) != 0)) {
299 unsigned long tpc = regs->tpc;
302 if ((tpc >= KERNBASE && tpc < (unsigned long) __init_end) ||
303 (tpc >= MODULES_VADDR && tpc < MODULES_END)) {
323 !search_exception_tables(regs->tpc)) {
399 WARN(address != regs->tpc,
400 "address (%lx) != regs->tpc (%lx)\n", address, regs->tpc);