Home
last modified time | relevance | path

Searched refs:iaoq (Results 1 – 17 of 17) sorted by relevance

/linux/arch/parisc/kernel/
H A Dkgdb.c88 gr->iaoq_f = regs->iaoq[0]; in pt_regs_to_gdb_regs()
91 gr->iaoq_b = regs->iaoq[1]; in pt_regs_to_gdb_regs()
119 regs->iaoq[0] = gr->iaoq_f; in gdb_regs_to_pt_regs()
122 regs->iaoq[1] = gr->iaoq_b; in gdb_regs_to_pt_regs()
130 unsigned long gr30, iaoq; in sleeping_thread_to_gdb_regs() local
133 iaoq = regs->iaoq[0]; in sleeping_thread_to_gdb_regs()
136 regs->iaoq[0] = regs->kpc; in sleeping_thread_to_gdb_regs()
140 regs->iaoq[0] = iaoq; in sleeping_thread_to_gdb_regs()
[all...]
H A Dtraps.c149 level, regs->iasq[0], regs->iasq[1], regs->iaoq[0], regs->iaoq[1]); in show_regs()
157 printk("%s IAOQ[0]: " RFMT "\n", level, regs->iaoq[0]); in show_regs()
158 printk("%s IAOQ[1]: " RFMT "\n", level, regs->iaoq[1]); in show_regs()
161 printk("%s IAOQ[0]: %pS\n", level, (void *) regs->iaoq[0]); in show_regs()
162 printk("%s IAOQ[1]: %pS\n", level, (void *) regs->iaoq[1]); in show_regs()
213 int is_valid_bugaddr(unsigned long iaoq) in is_valid_bugaddr() argument
226 current->comm, task_pid_nr(current), str, err, regs->iaoq[0]); in die_if_kernel()
279 (void __user *) (regs->iaoq[0] & ~3)); in handle_gdb_break()
289 tt = report_bug(regs->iaoq[ in handle_break()
[all...]
H A Dkprobes.c80 kcb->iaoq[0] = regs->iaoq[0]; in setup_singlestep()
81 kcb->iaoq[1] = regs->iaoq[1]; in setup_singlestep()
93 p = get_kprobe((unsigned long *)regs->iaoq[0]); in parisc_kprobe_break_handler()
143 if (regs->iaoq[0] != (unsigned long)p->ainsn.insn+4) in parisc_kprobe_ss_handler()
166 /* for absolute branches, regs->iaoq[1] has already the right in parisc_kprobe_ss_handler()
169 regs->iaoq[0] = kcb->iaoq[1]; in parisc_kprobe_ss_handler()
172 regs->iaoq[ in parisc_kprobe_ss_handler()
[all...]
H A Dsignal32.c68 regs->iaoq[0] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
69 DBG(2,"restore_sigcontext32: upper half of iaoq[0] = %#lx\n", compat_regt); in restore_sigcontext32()
76 regs->iaoq[1] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
77 DBG(2,"restore_sigcontext32: upper half of iaoq[1] = %#lx\n", compat_regt); in restore_sigcontext32()
80 DBG(2,"restore_sigcontext32: iaoq is %#lx / %#lx\n", in restore_sigcontext32()
81 regs->iaoq[0],regs->iaoq[1]); in restore_sigcontext32()
134 /* regs->iaoq is undefined in the syscall return path */ in setup_sigcontext32()
142 DBG(2,"setup_sigcontext32: upper half iaoq[0] = %#x\n", compat_reg); in setup_sigcontext32()
152 DBG(2,"setup_sigcontext32: upper half iaoq[ in setup_sigcontext32()
[all...]
H A Dsignal.c67 err |= __copy_from_user(regs->iaoq, sc->sc_iaoq, sizeof(regs->iaoq)); in restore_sigcontext()
70 DBG(2, "%s: iaoq is %#lx / %#lx\n", in restore_sigcontext()
71 __func__, regs->iaoq[0], regs->iaoq[1]); in restore_sigcontext()
146 regs->gr[31] = regs->iaoq[0]; in sys_rt_sigreturn()
189 /* regs->iaoq is undefined in the syscall return path */ in setup_sigcontext()
194 DBG(1, "%s: iaoq %#lx / %#lx (in syscall)\n", in setup_sigcontext()
197 err |= __copy_to_user(sc->sc_iaoq, regs->iaoq, sizeof(regs->iaoq)); in setup_sigcontext()
[all...]
H A Dptrace.c78 task_regs(task)->iaoq[0] = task_regs(task)->iaoq[1]; in user_enable_single_step()
80 task_regs(task)->iaoq[1] = task_regs(task)->iaoq[0] + 4; in user_enable_single_step()
90 (void __user *) (task_regs(task)->iaoq[0] & ~3), in user_enable_single_step()
155 * entry.S:syscall_restore_rfi; e.g. iaoq is written with in arch_ptrace()
279 * entry.S:syscall_restore_rfi; e.g. iaoq is written with in compat_arch_ptrace()
452 case RI(iaoq[0]): return regs->iaoq[0]; in get_reg()
453 case RI(iaoq[ in get_reg()
[all...]
H A Dtoc.c32 regs->iaoq[0] = (unsigned long)toc->cr[18]; in toc20_to_pt_regs()
33 regs->iaoq[1] = (unsigned long)toc->iaoq_back; in toc20_to_pt_regs()
55 regs->iaoq[0] = toc->cr[18]; in toc11_to_pt_regs()
56 regs->iaoq[1] = toc->iaoq_back; in toc11_to_pt_regs()
H A Dftrace.c231 regs->iaoq[0] = ip; in kprobe_ftrace_handler()
232 regs->iaoq[1] = ip + 4; in kprobe_ftrace_handler()
235 regs->iaoq[0] = ip + 4; in kprobe_ftrace_handler()
236 regs->iaoq[1] = ip + 8; in kprobe_ftrace_handler()
H A Dunwind.c236 info->prev_ip = regs->iaoq[0]; in unwind_special()
252 info->prev_ip = regs->iaoq[0]; in unwind_special()
391 info->ip = regs->iaoq[0]; in unwind_frame_init()
409 r2->iaoq[0] = r->kpc; in unwind_frame_init_from_blocked_task()
430 r.iaoq[0] = _THIS_IP_; in unwind_frame_init_task()
H A Dasm-offsets.c124 DEFINE(TASK_PT_IAOQ0, offsetof(struct task_struct, thread.regs.iaoq[0])); in main()
125 DEFINE(TASK_PT_IAOQ1, offsetof(struct task_struct, thread.regs.iaoq[1])); in main()
209 DEFINE(PT_IAOQ0, offsetof(struct pt_regs, iaoq[0])); in main()
210 DEFINE(PT_IAOQ1, offsetof(struct pt_regs, iaoq[1])); in main()
H A Dunaligned.c393 regs->iaoq[0], regs->iir); in handle_unaligned()
408 regs->ior, (void *)regs->iaoq[0], regs->iir); in handle_unaligned()
/linux/arch/parisc/include/asm/
H A Dptrace.h16 /* XXX should we use iaoq[1] or iaoq[0] ? */
17 #define user_mode(regs) (((regs)->iaoq[0] & 3) != PRIV_KERNEL)
19 #define instruction_pointer(regs) ((regs)->iaoq[0] & ~3)
31 regs->iaoq[0] = val; in instruction_pointer_set()
32 regs->iaoq[1] = val + 4; in instruction_pointer_set()
H A Dkprobes.h50 unsigned long iaoq[2]; member
H A Delf.h282 dst[40] = pt->iaoq[0]; dst[41] = pt->iaoq[1]; \
/linux/arch/parisc/mm/
H A Dfault.c147 fix = search_exception_tables(regs->iaoq[0]); in fixup_exception()
162 fault_error_reg, (void*)regs->iaoq[0]); in fixup_exception()
172 regs->iaoq[0] = (unsigned long)&fix->fixup + fix->fixup; in fixup_exception()
173 regs->iaoq[0] &= ~3; in fixup_exception()
178 * increment iaoq[1], instead we set it to be in fixup_exception()
179 * iaoq[0]+4, and clear the B bit in the PSW in fixup_exception()
181 regs->iaoq[1] = regs->iaoq[0] + 4; in fixup_exception()
255 print_vma_addr(KERN_CONT " in ", regs->iaoq[0]); in show_signal_msg()
/linux/arch/parisc/include/uapi/asm/
H A Dptrace.h29 unsigned long iaoq[2]; member
54 unsigned long iaoq[2]; member
/linux/arch/parisc/math-emu/
H A Ddriver.c111 (void __user *) regs->iaoq[0]); in handle_fpe()