Lines Matching refs:t1
651 TCGv_i32 t0, t1;
654 t1 = tcg_temp_new_i32();
658 tcg_gen_sari_i32(t1, TCGV_HIGH(arg1), c);
660 tcg_gen_shri_i32(t1, TCGV_HIGH(arg1), c);
663 tcg_gen_mov_i32(TCGV_HIGH(ret), t1);
666 /* Note: ret can be the same as arg1, so we use t1 */
667 tcg_gen_shli_i32(t1, TCGV_LOW(arg1), c);
670 tcg_gen_mov_i32(TCGV_LOW(ret), t1);
673 tcg_temp_free_i32(t1);