Searched defs:nip (Results 1 - 9 of 9) sorted by relevance

/arch/powerpc/kernel/
H A Dmce.c73 uint64_t nip, uint64_t addr)
89 mce->srr0 = nip;
71 save_mce_event(struct pt_regs *regs, long handled, struct mce_error_info *mce_err, uint64_t nip, uint64_t addr) argument
H A Dmce_power.c221 uint64_t srr1, nip, addr; local
226 nip = regs->nip;
241 addr = regs->nip;
248 save_mce_event(regs, handled, &mce_error_info, nip, addr);
290 uint64_t srr1, nip, addr; local
295 nip = regs->nip;
304 addr = regs->nip;
311 save_mce_event(regs, handled, &mce_error_info, nip, add
[all...]
H A Dppc32.h21 unsigned int nip; member in struct:pt_regs32
H A Dtraps.c238 info->si_addr = (void __user *)regs->nip;
245 "at %08lx nip %08lx lr %08lx code %x\n";
247 "at %016lx nip %016lx lr %016lx code %x\n";
257 addr, regs->nip, regs->link, code);
292 * regs->nip and regs->msr contains srr0 and ssr1.
332 unsigned int *nip = (unsigned int *)regs->nip; local
335 && (entry = search_exception_tables(regs->nip)) != NULL) {
344 if (*nip == 0x60000000) /* nop */
345 nip
[all...]
/arch/powerpc/perf/
H A Dcallchain.c76 next_ip = regs->nip;
204 static int is_sigreturn_64_address(unsigned long nip, unsigned long fp) argument
206 if (nip == fp + offsetof(struct signal_frame_64, tramp))
209 nip == current->mm->context.vdso_base + vdso64_rt_sigtramp)
363 static int is_sigreturn_32_address(unsigned int nip, unsigned int fp) argument
365 if (nip == fp + offsetof(struct signal_frame_32, mctx.mc_pad))
368 nip == current->mm->context.vdso_base + vdso32_sigtramp)
373 static int is_rt_sigreturn_32_address(unsigned int nip, unsigned int fp) argument
375 if (nip == fp + offsetof(struct rt_signal_frame_32,
379 nip
[all...]
/arch/um/sys-ppc/shared/sysdep/
H A Dptrace.h19 PPC_REG nip; member in struct:sys_pt_regs_s
/arch/powerpc/platforms/powernv/
H A Dopal.c499 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
509 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
575 static uint64_t find_recovery_address(uint64_t nip) argument
580 if ((nip >= mc_recoverable_range[i].start_addr) &&
581 (nip < mc_recoverable_range[i].end_addr))
593 if ((regs->nip >= opal.base) &&
594 (regs->nip <= (opal.base + opal.size)))
595 recover_addr = find_recovery_address(regs->nip);
598 * Setup regs->nip to rfi into fixup address.
601 regs->nip
[all...]
/arch/powerpc/include/uapi/asm/
H A Dptrace.h33 unsigned long nip; member in struct:pt_regs
/arch/powerpc/xmon/
H A Dxmon.c380 bp = in_breakpoint_table(regs->nip, &offset);
382 regs->nip = bp->address + offset;
416 bp = at_breakpoint(regs->nip);
426 xmon_print_symbol(regs->nip, " ", ")\n");
467 ppc_inst_dump(regs->nip, 1, 0);
516 bp = at_breakpoint(regs->nip);
519 xmon_print_symbol(regs->nip, " ", ")\n");
528 ppc_inst_dump(regs->nip, 1, 0);
540 bp = at_breakpoint(regs->nip);
542 regs->nip
686 in_breakpoint_table(unsigned long nip, unsigned long *offp) argument
[all...]

Completed in 211 milliseconds