Lines Matching refs:tmp3
3084 TCGv_i32 ahp, tmp, tmp2, tmp3; in trans_VCVT_F16_F32() local
3117 tmp3 = tcg_temp_new_i32(); in trans_VCVT_F16_F32()
3118 read_neon_element32(tmp3, a->vm, 3, MO_32); in trans_VCVT_F16_F32()
3120 gen_helper_vfp_fcvt_f32_to_f16(tmp3, tmp3, fpst, ahp); in trans_VCVT_F16_F32()
3121 tcg_gen_shli_i32(tmp3, tmp3, 16); in trans_VCVT_F16_F32()
3122 tcg_gen_or_i32(tmp3, tmp3, tmp); in trans_VCVT_F16_F32()
3123 write_neon_element32(tmp3, a->vd, 1, MO_32); in trans_VCVT_F16_F32()
3130 TCGv_i32 ahp, tmp, tmp2, tmp3; in trans_VCVT_F32_F16() local
3153 tmp3 = tcg_temp_new_i32(); in trans_VCVT_F32_F16()
3158 tcg_gen_ext16u_i32(tmp3, tmp); in trans_VCVT_F32_F16()
3159 gen_helper_vfp_fcvt_f16_to_f32(tmp3, tmp3, fpst, ahp); in trans_VCVT_F32_F16()
3160 write_neon_element32(tmp3, a->vd, 0, MO_32); in trans_VCVT_F32_F16()
3164 tcg_gen_ext16u_i32(tmp3, tmp2); in trans_VCVT_F32_F16()
3165 gen_helper_vfp_fcvt_f16_to_f32(tmp3, tmp3, fpst, ahp); in trans_VCVT_F32_F16()
3166 write_neon_element32(tmp3, a->vd, 2, MO_32); in trans_VCVT_F32_F16()