Home | History | Annotate | Download | only in tcg

Lines Matching full:low

1540 static inline void tcg_gen_concat_i32_i64(TCGv_i64 dest, TCGv_i32 low, TCGv_i32 high)
1543 tcg_gen_mov_i32(TCGV_LOW(dest), low);
1551 tcg_gen_extu_i32_i64(dest, low);
1557 static inline void tcg_gen_concat32_i64(TCGv_i64 dest, TCGv_i64 low, TCGv_i64 high)
1560 tcg_gen_concat_i32_i64(dest, TCGV_LOW(low), TCGV_LOW(high));
1563 tcg_gen_ext32u_i64(dest, low);