Lines Matching refs:t
2946 TCGv_i64 t = tcg_temp_new_i64();
2958 tcg_gen_shli_i64(t, d, 7);
2959 tcg_gen_or_i64(d, d, t);
2960 tcg_gen_shli_i64(t, d, 14);
2961 tcg_gen_or_i64(d, d, t);
2962 tcg_gen_shli_i64(t, d, 28);
2963 tcg_gen_or_i64(d, d, t);
2968 TCGv_vec t = tcg_temp_new_vec_matching(d);
2973 tcg_gen_shli_vec(vece, t, d, 7);
2974 tcg_gen_or_vec(vece, d, d, t);
2975 tcg_gen_shli_vec(vece, t, d, 14);
2976 tcg_gen_or_vec(vece, d, d, t);
2977 tcg_gen_shli_vec(vece, t, d, 28);
2978 tcg_gen_or_vec(vece, d, d, t);
2993 TCGv t = tcg_temp_new();
3007 tcg_gen_ld_tl(t, tcg_env, offsetof(CPUX86State, xmm_t0.ZMM_Q((vec_len - 1) / 8)));
3009 tcg_gen_ld_tl(t, tcg_env, offsetof(CPUX86State, xmm_t0.ZMM_L((vec_len - 1) / 4)));
3012 tcg_gen_extract2_tl(s->T0, t, s->T0, TARGET_LONG_BITS - 8);
3015 * The _previous_ value is deposited into bits 8 and higher of t. Because
3019 tcg_gen_ld8u_tl(t, tcg_env, offsetof(CPUX86State, xmm_t0.ZMM_B(vec_len - 1)));
3020 tcg_gen_deposit_tl(s->T0, t, s->T0, 8, TARGET_LONG_BITS - 8);