Lines Matching refs:d0
8231 uint64_t d0, d1; in helper_msa_ld_b() local
8234 d0 = cpu_ldq_le_data_ra(env, addr + 0, ra); in helper_msa_ld_b()
8236 pwd->d[0] = d0; in helper_msa_ld_b()
8245 uint64_t d0, d1; in helper_msa_ld_h() local
8251 d0 = cpu_ldq_le_data_ra(env, addr + 0, ra); in helper_msa_ld_h()
8254 d0 = bswap16x4(d0); in helper_msa_ld_h()
8257 pwd->d[0] = d0; in helper_msa_ld_h()
8266 uint64_t d0, d1; in helper_msa_ld_w() local
8272 d0 = cpu_ldq_le_data_ra(env, addr + 0, ra); in helper_msa_ld_w()
8275 d0 = bswap32x2(d0); in helper_msa_ld_w()
8278 pwd->d[0] = d0; in helper_msa_ld_w()
8287 uint64_t d0, d1; in helper_msa_ld_d() local
8289 d0 = cpu_ldq_data_ra(env, addr + 0, ra); in helper_msa_ld_d()
8291 pwd->d[0] = d0; in helper_msa_ld_d()
8333 uint64_t d0, d1; in helper_msa_st_h() local
8338 d0 = pwd->d[0]; in helper_msa_st_h()
8341 d0 = bswap16x4(d0); in helper_msa_st_h()
8344 cpu_stq_le_data_ra(env, addr + 0, d0, ra); in helper_msa_st_h()
8354 uint64_t d0, d1; in helper_msa_st_w() local
8359 d0 = pwd->d[0]; in helper_msa_st_w()
8362 d0 = bswap32x2(d0); in helper_msa_st_w()
8365 cpu_stq_le_data_ra(env, addr + 0, d0, ra); in helper_msa_st_w()