Lines Matching full:tmp64
292 TCGv_i64 tmp64 = tcg_temp_new_i64();
294 tcg_gen_extu_i32_i64(tmp64, b);
296 tcg_gen_shli_i64(tmp64, tmp64, 32);
297 tcg_gen_add_i64(a, tmp64, a);
299 tcg_temp_free_i64(tmp64);
306 TCGv_i64 tmp64 = tcg_temp_new_i64();
308 tcg_gen_extu_i32_i64(tmp64, b);
310 tcg_gen_shli_i64(tmp64, tmp64, 32);
311 tcg_gen_sub_i64(a, tmp64, a);
313 tcg_temp_free_i64(tmp64);
4429 TCGv_i64 tmp64;
5047 tmp64 = tcg_const_i64(shift);
5059 gen_helper_neon_rshl_u64(cpu_V0, in, tmp64);
5061 gen_helper_neon_rshl_s64(cpu_V0, in, tmp64);
5065 gen_helper_neon_shl_u64(cpu_V0, in, tmp64);
5067 gen_helper_neon_shl_s64(cpu_V0, in, tmp64);
5074 tcg_temp_free_i64(tmp64);
5627 tmp64 = tcg_temp_new_i64();
5630 neon_load_reg64(tmp64, rn + 1);
5633 neon_load_reg64(tmp64, rm);
5636 tcg_gen_shli_i64(cpu_V1, tmp64, 64 - ((imm & 7) * 8));
5645 tcg_gen_shri_i64(tmp64, tmp64, imm * 8);
5646 tcg_gen_or_i64(cpu_V1, cpu_V1, tmp64);
5647 tcg_temp_free_i64(tmp64);
6423 TCGv_i64 tmp64;
6810 tmp64
6811 tcg_gen_shri_i64(tmp64, tmp64, 16);
6813 tcg_gen_trunc_i64_i32(tmp, tmp64);
6814 tcg_temp_free_i64(tmp64);
6828 tmp64 = tcg_temp_new_i64();
6829 tcg_gen_ext_i32_i64(tmp64, tmp);
6831 gen_addq(s, tmp64, rn, rd);
6832 gen_storeq_reg(s, rn, rd, tmp64);
6833 tcg_temp_free_i64(tmp64);
7071 tmp64 = gen_mulu_i64_i32(tmp, tmp2);
7072 gen_addq_lo(s, tmp64, rn);
7073 gen_addq_lo(s, tmp64, rd);
7074 gen_storeq_reg(s, rn, rd, tmp64);
7075 tcg_temp_free_i64(tmp64);
7083 tmp64 = gen_muls_i64_i32(tmp, tmp2);
7085 tmp64 = gen_mulu_i64_i32(tmp, tmp2);
7088 gen_addq(s, tmp64, rn, rd);
7091 gen_logicq_cc(tmp64);
7093 gen_storeq_reg(s, rn, rd, tmp64);
7094 tcg_temp_free_i64(tmp64);
7381 tmp64 = gen_muls_i64_i32(tmp, tmp2);
7386 tmp64 = gen_subq_msw(tmp64, tmp);
7388 tmp64 = gen_addq_msw(tmp64, tmp);
7392 tcg_gen_addi_i64(tmp64, tmp64, 0x80000000u);
7394 tcg_gen_shri_i64(tmp64, tmp64, 32);
7396 tcg_gen_trunc_i64_i32(tmp, tmp64);
7397 tcg_temp_free_i64(tmp64);
7416 tmp64 = tcg_temp_new_i64();
7417 tcg_gen_ext_i32_i64(tmp64, tmp);
7419 gen_addq(s, tmp64, rd, rn);
7420 gen_storeq_reg(s, rd, rn, tmp64);
7421 tcg_temp_free_i64(tmp64);
7787 TCGv_i64 tmp64;
8261 tmp64 = gen_muls_i64_i32(tmp, tmp2);
8262 tcg_gen_shri_i64(tmp64, tmp64, 16);
8264 tcg_gen_trunc_i64_i32(tmp, tmp64);
8265 tcg_temp_free_i64(tmp64);
8274 tmp64 = gen_muls_i64_i32(tmp, tmp2);
8278 tmp64 = gen_addq_msw(tmp64, tmp);
8280 tmp64 = gen_subq_msw(tmp64, tmp);
8284 tcg_gen_addi_i64(tmp64, tmp64, 0x80000000u);
8286 tcg_gen_shri_i64(tmp64, tmp64, 32);
8288 tcg_gen_trunc_i64_i32(tmp, tmp64);
8289 tcg_temp_free_i64(tmp64);
8329 tmp64 = tcg_temp_new_i64();
8330 tcg_gen_ext_i32_i64(tmp64, tmp);
8332 gen_addq(s, tmp64, rs, rd);
8333 gen_storeq_reg(s, rs, rd, tmp64);
8334 tcg_temp_free_i64(tmp64);
8338 tmp64 = gen_mulu_i64_i32(tmp, tmp2);
8344 tmp64 = tcg_temp_new_i64();
8345 tcg_gen_ext_i32_i64(tmp64, tmp);
8349 tmp64 = gen_muls_i64_i32(tmp, tmp2);
8354 gen_addq_lo(s, tmp64, rs);
8355 gen_addq_lo(s, tmp64, rd);
8358 gen_addq(s, tmp64, rs, rd);
8360 gen_storeq_reg(s, rs, rd, tmp64);
8361 tcg_temp_free_i64(tmp64);