Lines Matching refs:tmp2
2790 TCGv_i32 ahp, tmp, tmp2, tmp3; in trans_VCVT_F16_F32() local
2816 tmp2 = tcg_temp_new_i32(); in trans_VCVT_F16_F32()
2817 read_neon_element32(tmp2, a->vm, 1, MO_32); in trans_VCVT_F16_F32()
2818 gen_helper_vfp_fcvt_f32_to_f16(tmp2, tmp2, fpst, ahp); in trans_VCVT_F16_F32()
2819 tcg_gen_shli_i32(tmp2, tmp2, 16); in trans_VCVT_F16_F32()
2820 tcg_gen_or_i32(tmp2, tmp2, tmp); in trans_VCVT_F16_F32()
2825 write_neon_element32(tmp2, a->vd, 0, MO_32); in trans_VCVT_F16_F32()
2836 TCGv_i32 ahp, tmp, tmp2, tmp3; in trans_VCVT_F32_F16() local
2860 tmp2 = tcg_temp_new_i32(); in trans_VCVT_F32_F16()
2863 read_neon_element32(tmp2, a->vm, 1, MO_32); in trans_VCVT_F32_F16()
2870 tcg_gen_ext16u_i32(tmp3, tmp2); in trans_VCVT_F32_F16()
2873 tcg_gen_shri_i32(tmp2, tmp2, 16); in trans_VCVT_F32_F16()
2874 gen_helper_vfp_fcvt_f16_to_f32(tmp2, tmp2, fpst, ahp); in trans_VCVT_F32_F16()
2875 write_neon_element32(tmp2, a->vd, 3, MO_32); in trans_VCVT_F32_F16()
3287 TCGv_i32 tmp, tmp2; in trans_VTRN() local
3313 tmp2 = tcg_temp_new_i32(); in trans_VTRN()
3317 read_neon_element32(tmp2, a->vd, pass + 1, MO_32); in trans_VTRN()
3318 write_neon_element32(tmp2, a->vm, pass, MO_32); in trans_VTRN()
3324 read_neon_element32(tmp2, a->vd, pass, MO_32); in trans_VTRN()
3326 gen_neon_trn_u8(tmp, tmp2); in trans_VTRN()
3328 gen_neon_trn_u16(tmp, tmp2); in trans_VTRN()
3330 write_neon_element32(tmp2, a->vm, pass, MO_32); in trans_VTRN()