Home
last modified time | relevance | path

Searched refs:TS_FPR (Results 1 – 6 of 6) sorted by relevance

/linux/arch/powerpc/math-emu/
H A Dmath.c332 op0 = (void *)&current->thread.TS_FPR((insn >> 21) & 0x1f); in do_mathemu()
333 op1 = (void *)&current->thread.TS_FPR((insn >> 16) & 0x1f); in do_mathemu()
334 op2 = (void *)&current->thread.TS_FPR((insn >> 11) & 0x1f); in do_mathemu()
338 op0 = (void *)&current->thread.TS_FPR((insn >> 21) & 0x1f); in do_mathemu()
339 op1 = (void *)&current->thread.TS_FPR((insn >> 16) & 0x1f); in do_mathemu()
340 op2 = (void *)&current->thread.TS_FPR((insn >> 6) & 0x1f); in do_mathemu()
344 op0 = (void *)&current->thread.TS_FPR((insn >> 21) & 0x1f); in do_mathemu()
345 op1 = (void *)&current->thread.TS_FPR((insn >> 16) & 0x1f); in do_mathemu()
346 op2 = (void *)&current->thread.TS_FPR((insn >> 11) & 0x1f); in do_mathemu()
347 op3 = (void *)&current->thread.TS_FPR((insn >> 6) & 0x1f); in do_mathemu()
[all …]
/linux/arch/powerpc/kernel/ptrace/
H A Dptrace-vsx.c31 buf[i] = target->thread.TS_FPR(i); in fpr_get()
59 buf[i] = target->thread.TS_FPR(i); in fpr_set()
68 target->thread.TS_FPR(i) = buf[i]; in fpr_set()
H A Dptrace-fpu.c25 memcpy(data, &child->thread.TS_FPR(fpidx), sizeof(long)); in ptrace_get_fpr()
51 memcpy(&child->thread.TS_FPR(fpidx), &data, sizeof(long)); in ptrace_put_fpr()
/linux/arch/powerpc/kernel/
H A Dsignal.h54 unsafe_put_user(__t->thread.TS_FPR(i), &buf[i], label); \
74 unsafe_get_user(__t->thread.TS_FPR(i), &buf[i], label); \
H A Dsignal.c34 buf[i] = task->thread.TS_FPR(i); in copy_fpr_to_user()
48 task->thread.TS_FPR(i) = buf[i]; in copy_fpr_from_user()
/linux/arch/powerpc/include/asm/
H A Dprocessor.h79 #define TS_FPR(i) fp_state.fpr[i][TS_FPROFFSET] macro