Searched refs:iasq (Results 1 – 10 of 10) sorted by relevance
/arch/parisc/kernel/ |
D | signal32.c | 86 regs->iasq[0] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32() 92 regs->iasq[1] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32() 95 regs->iasq[0],regs->iasq[1]); in restore_sigcontext32() 190 compat_reg = (compat_uint_t)(regs->iasq[0]); in setup_sigcontext32() 195 compat_reg = (compat_uint_t)(regs->iasq[0] >> 32); in setup_sigcontext32() 200 compat_reg = (compat_uint_t)(regs->iasq[1]); in setup_sigcontext32() 205 compat_reg = (compat_uint_t)(regs->iasq[1] >> 32); in setup_sigcontext32()
|
D | traps.c | 142 level, regs->iasq[0], regs->iasq[1], regs->iaoq[0], regs->iaoq[1]); in show_regs() 363 regs->iasq[0] = pim_wide->cr[17]; in transfer_pim_to_trap_frame() 364 regs->iasq[1] = pim_wide->iasq_back; in transfer_pim_to_trap_frame() 387 regs->iasq[0] = pim_narrow->cr[17]; in transfer_pim_to_trap_frame() 388 regs->iasq[1] = pim_narrow->iasq_back; in transfer_pim_to_trap_frame() 508 ((unsigned long)regs->iasq[0] != (unsigned long)regs->sr[7])) { in handle_interruption() 512 regs->iasq[0] = regs->iasq[1] = regs->sr[7]; in handle_interruption() 571 fault_space = regs->iasq[0]; in handle_interruption() 606 regs->iasq[0] = regs->iasq[1]; in handle_interruption() 726 fault_space = regs->iasq[0]; in handle_interruption()
|
D | ptrace.c | 81 task_regs(task)->iasq[0] = task_regs(task)->iasq[1]; in user_enable_single_step() 471 case RI(iasq[0]): return regs->iasq[0]; in get_reg() 472 case RI(iasq[1]): return regs->iasq[1]; in get_reg() 527 case RI(iasq[0]): return regs->iasq[0]; in set_reg() 528 case RI(iasq[1]): return regs->iasq[1]; in set_reg() 766 REG_OFFSET_INDEX(iasq,0), 767 REG_OFFSET_INDEX(iasq,1),
|
D | kgdb.c | 88 gr->iasq_f = regs->iasq[0]; in pt_regs_to_gdb_regs() 91 gr->iasq_b = regs->iasq[1]; in pt_regs_to_gdb_regs() 119 regs->iasq[0] = gr->iasq_f; in gdb_regs_to_pt_regs() 122 regs->iasq[1] = gr->iasq_b; in gdb_regs_to_pt_regs()
|
D | signal.c | 79 err |= __copy_from_user(regs->iasq, sc->sc_iasq, sizeof(regs->iasq)); in restore_sigcontext() 213 err |= __copy_to_user(sc->sc_iasq, regs->iasq, sizeof(regs->iasq)); in setup_sigcontext()
|
D | asm-offsets.c | 126 DEFINE(TASK_PT_IASQ0, offsetof(struct task_struct, thread.regs.iasq[0])); in main() 127 DEFINE(TASK_PT_IASQ1, offsetof(struct task_struct, thread.regs.iasq[1])); in main() 215 DEFINE(PT_IASQ0, offsetof(struct pt_regs, iasq[0])); in main() 216 DEFINE(PT_IASQ1, offsetof(struct pt_regs, iasq[1])); in main()
|
/arch/parisc/include/uapi/asm/ |
D | ptrace.h | 28 unsigned long iasq[2]; member 55 unsigned long iasq[2]; member
|
/arch/parisc/include/asm/ |
D | processor.h | 148 .iasq = { 0, }, \ 255 regs->iasq[0] = spaceid; \ 256 regs->iasq[1] = spaceid; \
|
D | ptrace.h | 18 #define user_space(regs) (((regs)->iasq[1] != 0) ? 1 : 0)
|
D | elf.h | 284 dst[42] = pt->iasq[0]; dst[43] = pt->iasq[1]; \
|