Lines Matching refs:target
77 static int gpr_get(struct task_struct *target,
81 struct pt_regs *regs = task_pt_regs(target);
84 regs->tls = task_thread_info(target)->tp_value;
89 static int gpr_set(struct task_struct *target,
102 regs.sr = (regs.sr & BIT(0)) | (task_pt_regs(target)->sr & ~BIT(0));
104 regs.dcsr = task_pt_regs(target)->dcsr;
106 task_thread_info(target)->tp_value = regs.tls;
108 *task_pt_regs(target) = regs;
113 static int fpr_get(struct task_struct *target,
117 struct user_fp *regs = (struct user_fp *)&target->thread.user_fp;
137 static int fpr_set(struct task_struct *target,
143 struct user_fp *regs = (struct user_fp *)&target->thread.user_fp;