Lines Matching refs:u

368 	} u;  in read_mem_unaligned()  local
372 u.ul = 0; in read_mem_unaligned()
374 err = copy_mem_in(&u.b[i], ea, nb, regs); in read_mem_unaligned()
376 *dest = u.ul; in read_mem_unaligned()
473 } u; in write_mem_unaligned() local
476 u.ul = val; in write_mem_unaligned()
478 return copy_mem_out(&u.b[i], ea, nb, regs); in write_mem_unaligned()
507 unsigned int u; in do_fp_load() member
512 } u; in do_fp_load() local
518 err = copy_mem_in(u.b, ea, nb, regs); in do_fp_load()
522 do_byte_reverse(u.b, min(nb, 8)); in do_fp_load()
524 do_byte_reverse(&u.b[8], 8); in do_fp_load()
529 conv_sp_to_dp(&u.f, &u.d[0]); in do_fp_load()
531 u.l[0] = u.i; in do_fp_load()
533 u.l[0] = u.u; in do_fp_load()
536 put_fpr(rn, &u.d[0]); in do_fp_load()
538 current->thread.TS_FPR(rn) = u.l[0]; in do_fp_load()
543 put_fpr(rn, &u.d[1]); in do_fp_load()
545 current->thread.TS_FPR(rn) = u.l[1]; in do_fp_load()
557 unsigned int u; in do_fp_store() member
562 } u; in do_fp_store() local
570 get_fpr(rn, &u.d[0]); in do_fp_store()
572 u.l[0] = current->thread.TS_FPR(rn); in do_fp_store()
575 conv_dp_to_sp(&u.d[0], &u.f); in do_fp_store()
577 u.u = u.l[0]; in do_fp_store()
582 get_fpr(rn, &u.d[1]); in do_fp_store()
584 u.l[1] = current->thread.TS_FPR(rn); in do_fp_store()
588 do_byte_reverse(u.b, min(nb, 8)); in do_fp_store()
590 do_byte_reverse(&u.b[8], 8); in do_fp_store()
592 return copy_mem_out(u.b, ea, nb, regs); in do_fp_store()
607 } u = {}; in do_vec_load() local
613 err = copy_mem_in(&u.b[ea & 0xf], ea, size, regs); in do_vec_load()
617 do_byte_reverse(&u.b[ea & 0xf], size); in do_vec_load()
620 put_vr(rn, &u.v); in do_vec_load()
622 current->thread.vr_state.vr[rn] = u.v; in do_vec_load()
634 } u; in do_vec_store() local
643 get_vr(rn, &u.v); in do_vec_store()
645 u.v = current->thread.vr_state.vr[rn]; in do_vec_store()
648 do_byte_reverse(&u.b[ea & 0xf], size); in do_vec_store()
649 return copy_mem_out(&u.b[ea & 0xf], ea, size, regs); in do_vec_store()
1220 unsigned int opcode, ra, rb, rc, rd, spr, u; in analyse_instr() local
2124 u = (word >> 20) & UPDATE; in analyse_instr()
2129 u = word & UPDATE; in analyse_instr()
2178 op->type = MKOP(LOAD, u, 4); in analyse_instr()
2183 op->type = MKOP(LOAD, u, 1); in analyse_instr()
2236 op->type = MKOP(LOAD, u, 8); in analyse_instr()
2241 op->type = MKOP(STORE, u, 8); in analyse_instr()
2247 op->type = MKOP(STORE, u, 4); in analyse_instr()
2252 op->type = MKOP(STORE, u, 1); in analyse_instr()
2257 op->type = MKOP(LOAD, u, 2); in analyse_instr()
2263 op->type = MKOP(LOAD, SIGNEXT | u, 4); in analyse_instr()
2269 op->type = MKOP(LOAD, SIGNEXT | u, 2); in analyse_instr()
2274 op->type = MKOP(STORE, u, 2); in analyse_instr()
2301 op->type = MKOP(LOAD_FP, u | FPCONV, 4); in analyse_instr()
2306 op->type = MKOP(LOAD_FP, u, 8); in analyse_instr()
2311 op->type = MKOP(STORE_FP, u | FPCONV, 4); in analyse_instr()
2316 op->type = MKOP(STORE_FP, u, 8); in analyse_instr()
2587 op->type = MKOP(LOAD, u, 4); in analyse_instr()
2593 op->type = MKOP(LOAD, u, 1); in analyse_instr()
2599 op->type = MKOP(STORE, u, 4); in analyse_instr()
2605 op->type = MKOP(STORE, u, 1); in analyse_instr()
2611 op->type = MKOP(LOAD, u, 2); in analyse_instr()
2617 op->type = MKOP(LOAD, SIGNEXT | u, 2); in analyse_instr()
2623 op->type = MKOP(STORE, u, 2); in analyse_instr()
2642 op->type = MKOP(LOAD_FP, u | FPCONV, 4); in analyse_instr()
2648 op->type = MKOP(LOAD_FP, u, 8); in analyse_instr()
2654 op->type = MKOP(STORE_FP, u | FPCONV, 4); in analyse_instr()
2660 op->type = MKOP(STORE_FP, u, 8); in analyse_instr()