Lines Matching refs:rn
37 extern void get_fpr(int rn, double *p);
38 extern void put_fpr(int rn, const double *p);
39 extern void get_vr(int rn, __vector128 *p);
40 extern void put_vr(int rn, __vector128 *p);
461 int err, rn, nb; in do_fp_load() local
474 rn = op->reg; in do_fp_load()
493 put_fpr(rn, &u.d[0]); in do_fp_load()
495 current->thread.TS_FPR(rn) = u.l[0]; in do_fp_load()
498 rn |= 1; in do_fp_load()
500 put_fpr(rn, &u.d[1]); in do_fp_load()
502 current->thread.TS_FPR(rn) = u.l[1]; in do_fp_load()
512 int rn, nb; in do_fp_store() local
524 rn = op->reg; in do_fp_store()
527 get_fpr(rn, &u.d[0]); in do_fp_store()
529 u.l[0] = current->thread.TS_FPR(rn); in do_fp_store()
537 rn |= 1; in do_fp_store()
539 get_fpr(rn, &u.d[1]); in do_fp_store()
541 u.l[1] = current->thread.TS_FPR(rn); in do_fp_store()
556 static nokprobe_inline int do_vec_load(int rn, unsigned long ea, in do_vec_load() argument
577 put_vr(rn, &u.v); in do_vec_load()
579 current->thread.vr_state.vr[rn] = u.v; in do_vec_load()
584 static nokprobe_inline int do_vec_store(int rn, unsigned long ea, in do_vec_store() argument
600 get_vr(rn, &u.v); in do_vec_store()
602 u.v = current->thread.vr_state.vr[rn]; in do_vec_store()