• Home
  • Raw
  • Download

Lines Matching refs:t0

482         TCGv_i32 t0 = tcg_const_i32(arg2);  in tcg_gen_addi_i32()  local
483 tcg_gen_add_i32(ret, arg1, t0); in tcg_gen_addi_i32()
484 tcg_temp_free_i32(t0); in tcg_gen_addi_i32()
495 TCGv_i32 t0 = tcg_const_i32(arg1); in tcg_gen_subfi_i32() local
496 tcg_gen_sub_i32(ret, t0, arg2); in tcg_gen_subfi_i32()
497 tcg_temp_free_i32(t0); in tcg_gen_subfi_i32()
506 TCGv_i32 t0 = tcg_const_i32(arg2); in tcg_gen_subi_i32() local
507 tcg_gen_sub_i32(ret, arg1, t0); in tcg_gen_subi_i32()
508 tcg_temp_free_i32(t0); in tcg_gen_subi_i32()
529 TCGv_i32 t0 = tcg_const_i32(arg2); in tcg_gen_andi_i32() local
530 tcg_gen_and_i32(ret, arg1, t0); in tcg_gen_andi_i32()
531 tcg_temp_free_i32(t0); in tcg_gen_andi_i32()
552 TCGv_i32 t0 = tcg_const_i32(arg2); in tcg_gen_ori_i32() local
553 tcg_gen_or_i32(ret, arg1, t0); in tcg_gen_ori_i32()
554 tcg_temp_free_i32(t0); in tcg_gen_ori_i32()
573 TCGv_i32 t0 = tcg_const_i32(arg2); in tcg_gen_xori_i32() local
574 tcg_gen_xor_i32(ret, arg1, t0); in tcg_gen_xori_i32()
575 tcg_temp_free_i32(t0); in tcg_gen_xori_i32()
589 TCGv_i32 t0 = tcg_const_i32(arg2); in tcg_gen_shli_i32() local
590 tcg_gen_shl_i32(ret, arg1, t0); in tcg_gen_shli_i32()
591 tcg_temp_free_i32(t0); in tcg_gen_shli_i32()
605 TCGv_i32 t0 = tcg_const_i32(arg2); in tcg_gen_shri_i32() local
606 tcg_gen_shr_i32(ret, arg1, t0); in tcg_gen_shri_i32()
607 tcg_temp_free_i32(t0); in tcg_gen_shri_i32()
621 TCGv_i32 t0 = tcg_const_i32(arg2); in tcg_gen_sari_i32() local
622 tcg_gen_sar_i32(ret, arg1, t0); in tcg_gen_sari_i32()
623 tcg_temp_free_i32(t0); in tcg_gen_sari_i32()
636 TCGv_i32 t0 = tcg_const_i32(arg2); in tcg_gen_brcondi_i32() local
637 tcg_gen_brcond_i32(cond, arg1, t0, label_index); in tcg_gen_brcondi_i32()
638 tcg_temp_free_i32(t0); in tcg_gen_brcondi_i32()
650 TCGv_i32 t0 = tcg_const_i32(arg2); in tcg_gen_setcondi_i32() local
651 tcg_gen_setcond_i32(cond, ret, arg1, t0); in tcg_gen_setcondi_i32()
652 tcg_temp_free_i32(t0); in tcg_gen_setcondi_i32()
662 TCGv_i32 t0 = tcg_const_i32(arg2); in tcg_gen_muli_i32() local
663 tcg_gen_mul_i32(ret, arg1, t0); in tcg_gen_muli_i32()
664 tcg_temp_free_i32(t0); in tcg_gen_muli_i32()
690 TCGv_i32 t0; in tcg_gen_div_i32() local
691 t0 = tcg_temp_new_i32(); in tcg_gen_div_i32()
692 tcg_gen_sari_i32(t0, arg1, 31); in tcg_gen_div_i32()
693 tcg_gen_op5_i32(INDEX_op_div2_i32, ret, t0, arg1, t0, arg2); in tcg_gen_div_i32()
694 tcg_temp_free_i32(t0); in tcg_gen_div_i32()
699 TCGv_i32 t0; in tcg_gen_rem_i32() local
700 t0 = tcg_temp_new_i32(); in tcg_gen_rem_i32()
701 tcg_gen_sari_i32(t0, arg1, 31); in tcg_gen_rem_i32()
702 tcg_gen_op5_i32(INDEX_op_div2_i32, t0, ret, arg1, t0, arg2); in tcg_gen_rem_i32()
703 tcg_temp_free_i32(t0); in tcg_gen_rem_i32()
708 TCGv_i32 t0; in tcg_gen_divu_i32() local
709 t0 = tcg_temp_new_i32(); in tcg_gen_divu_i32()
710 tcg_gen_movi_i32(t0, 0); in tcg_gen_divu_i32()
711 tcg_gen_op5_i32(INDEX_op_divu2_i32, ret, t0, arg1, t0, arg2); in tcg_gen_divu_i32()
712 tcg_temp_free_i32(t0); in tcg_gen_divu_i32()
717 TCGv_i32 t0; in tcg_gen_remu_i32() local
718 t0 = tcg_temp_new_i32(); in tcg_gen_remu_i32()
719 tcg_gen_movi_i32(t0, 0); in tcg_gen_remu_i32()
720 tcg_gen_op5_i32(INDEX_op_divu2_i32, t0, ret, arg1, t0, arg2); in tcg_gen_remu_i32()
721 tcg_temp_free_i32(t0); in tcg_gen_remu_i32()
990 TCGv_i64 t0; in tcg_gen_mul_i64() local
993 t0 = tcg_temp_new_i64(); in tcg_gen_mul_i64()
996 tcg_gen_op4_i32(INDEX_op_mulu2_i32, TCGV_LOW(t0), TCGV_HIGH(t0), in tcg_gen_mul_i64()
1000 tcg_gen_add_i32(TCGV_HIGH(t0), TCGV_HIGH(t0), t1); in tcg_gen_mul_i64()
1002 tcg_gen_add_i32(TCGV_HIGH(t0), TCGV_HIGH(t0), t1); in tcg_gen_mul_i64()
1004 tcg_gen_mov_i64(ret, t0); in tcg_gen_mul_i64()
1005 tcg_temp_free_i64(t0); in tcg_gen_mul_i64()
1151 TCGv_i64 t0 = tcg_const_i64(arg2); in tcg_gen_andi_i64() local
1152 tcg_gen_and_i64(ret, arg1, t0); in tcg_gen_andi_i64()
1153 tcg_temp_free_i64(t0); in tcg_gen_andi_i64()
1167 TCGv_i64 t0 = tcg_const_i64(arg2); in tcg_gen_ori_i64() local
1168 tcg_gen_or_i64(ret, arg1, t0); in tcg_gen_ori_i64()
1169 tcg_temp_free_i64(t0); in tcg_gen_ori_i64()
1183 TCGv_i64 t0 = tcg_const_i64(arg2); in tcg_gen_xori_i64() local
1184 tcg_gen_xor_i64(ret, arg1, t0); in tcg_gen_xori_i64()
1185 tcg_temp_free_i64(t0); in tcg_gen_xori_i64()
1198 TCGv_i64 t0 = tcg_const_i64(arg2); in tcg_gen_shli_i64() local
1199 tcg_gen_shl_i64(ret, arg1, t0); in tcg_gen_shli_i64()
1200 tcg_temp_free_i64(t0); in tcg_gen_shli_i64()
1214 TCGv_i64 t0 = tcg_const_i64(arg2); in tcg_gen_shri_i64() local
1215 tcg_gen_shr_i64(ret, arg1, t0); in tcg_gen_shri_i64()
1216 tcg_temp_free_i64(t0); in tcg_gen_shri_i64()
1230 TCGv_i64 t0 = tcg_const_i64(arg2); in tcg_gen_sari_i64() local
1231 tcg_gen_sar_i64(ret, arg1, t0); in tcg_gen_sari_i64()
1232 tcg_temp_free_i64(t0); in tcg_gen_sari_i64()
1276 TCGv_i64 t0; in tcg_gen_div_i64() local
1277 t0 = tcg_temp_new_i64(); in tcg_gen_div_i64()
1278 tcg_gen_sari_i64(t0, arg1, 63); in tcg_gen_div_i64()
1279 tcg_gen_op5_i64(INDEX_op_div2_i64, ret, t0, arg1, t0, arg2); in tcg_gen_div_i64()
1280 tcg_temp_free_i64(t0); in tcg_gen_div_i64()
1285 TCGv_i64 t0; in tcg_gen_rem_i64() local
1286 t0 = tcg_temp_new_i64(); in tcg_gen_rem_i64()
1287 tcg_gen_sari_i64(t0, arg1, 63); in tcg_gen_rem_i64()
1288 tcg_gen_op5_i64(INDEX_op_div2_i64, t0, ret, arg1, t0, arg2); in tcg_gen_rem_i64()
1289 tcg_temp_free_i64(t0); in tcg_gen_rem_i64()
1294 TCGv_i64 t0; in tcg_gen_divu_i64() local
1295 t0 = tcg_temp_new_i64(); in tcg_gen_divu_i64()
1296 tcg_gen_movi_i64(t0, 0); in tcg_gen_divu_i64()
1297 tcg_gen_op5_i64(INDEX_op_divu2_i64, ret, t0, arg1, t0, arg2); in tcg_gen_divu_i64()
1298 tcg_temp_free_i64(t0); in tcg_gen_divu_i64()
1303 TCGv_i64 t0; in tcg_gen_remu_i64() local
1304 t0 = tcg_temp_new_i64(); in tcg_gen_remu_i64()
1305 tcg_gen_movi_i64(t0, 0); in tcg_gen_remu_i64()
1306 tcg_gen_op5_i64(INDEX_op_divu2_i64, t0, ret, arg1, t0, arg2); in tcg_gen_remu_i64()
1307 tcg_temp_free_i64(t0); in tcg_gen_remu_i64()
1363 TCGv_i64 t0 = tcg_const_i64(arg2); in tcg_gen_addi_i64() local
1364 tcg_gen_add_i64(ret, arg1, t0); in tcg_gen_addi_i64()
1365 tcg_temp_free_i64(t0); in tcg_gen_addi_i64()
1371 TCGv_i64 t0 = tcg_const_i64(arg1); in tcg_gen_subfi_i64() local
1372 tcg_gen_sub_i64(ret, t0, arg2); in tcg_gen_subfi_i64()
1373 tcg_temp_free_i64(t0); in tcg_gen_subfi_i64()
1382 TCGv_i64 t0 = tcg_const_i64(arg2); in tcg_gen_subi_i64() local
1383 tcg_gen_sub_i64(ret, arg1, t0); in tcg_gen_subi_i64()
1384 tcg_temp_free_i64(t0); in tcg_gen_subi_i64()
1390 TCGv_i64 t0 = tcg_const_i64(arg2); in tcg_gen_brcondi_i64() local
1391 tcg_gen_brcond_i64(cond, arg1, t0, label_index); in tcg_gen_brcondi_i64()
1392 tcg_temp_free_i64(t0); in tcg_gen_brcondi_i64()
1398 TCGv_i64 t0 = tcg_const_i64(arg2); in tcg_gen_setcondi_i64() local
1399 tcg_gen_setcond_i64(cond, ret, arg1, t0); in tcg_gen_setcondi_i64()
1400 tcg_temp_free_i64(t0); in tcg_gen_setcondi_i64()
1405 TCGv_i64 t0 = tcg_const_i64(arg2); in tcg_gen_muli_i64() local
1406 tcg_gen_mul_i64(ret, arg1, t0); in tcg_gen_muli_i64()
1407 tcg_temp_free_i64(t0); in tcg_gen_muli_i64()
1458 TCGv_i32 t0 = tcg_temp_new_i32(); in tcg_gen_bswap16_i32()
1460 tcg_gen_ext8u_i32(t0, arg); in tcg_gen_bswap16_i32()
1461 tcg_gen_shli_i32(t0, t0, 8); in tcg_gen_bswap16_i32()
1463 tcg_gen_or_i32(ret, ret, t0); in tcg_gen_bswap16_i32()
1464 tcg_temp_free_i32(t0); in tcg_gen_bswap16_i32()
1473 TCGv_i32 t0, t1; in tcg_gen_bswap32_i32()
1474 t0 = tcg_temp_new_i32(); in tcg_gen_bswap32_i32()
1477 tcg_gen_shli_i32(t0, arg, 24); in tcg_gen_bswap32_i32()
1481 tcg_gen_or_i32(t0, t0, t1); in tcg_gen_bswap32_i32()
1485 tcg_gen_or_i32(t0, t0, t1); in tcg_gen_bswap32_i32()
1488 tcg_gen_or_i32(ret, t0, t1); in tcg_gen_bswap32_i32()
1489 tcg_temp_free_i32(t0); in tcg_gen_bswap32_i32()
1564 TCGv_i32 t0, t1; in tcg_gen_bswap64_i64() local
1565 t0 = tcg_temp_new_i32(); in tcg_gen_bswap64_i64()
1568 tcg_gen_bswap32_i32(t0, TCGV_LOW(arg)); in tcg_gen_bswap64_i64()
1571 tcg_gen_mov_i32(TCGV_HIGH(ret), t0); in tcg_gen_bswap64_i64()
1572 tcg_temp_free_i32(t0); in tcg_gen_bswap64_i64()
1661 TCGv_i64 t0 = tcg_temp_new_i64(); in tcg_gen_bswap16_i64()
1663 tcg_gen_ext8u_i64(t0, arg); in tcg_gen_bswap16_i64()
1664 tcg_gen_shli_i64(t0, t0, 8); in tcg_gen_bswap16_i64()
1666 tcg_gen_or_i64(ret, ret, t0); in tcg_gen_bswap16_i64()
1667 tcg_temp_free_i64(t0); in tcg_gen_bswap16_i64()
1677 TCGv_i64 t0, t1; in tcg_gen_bswap32_i64()
1678 t0 = tcg_temp_new_i64(); in tcg_gen_bswap32_i64()
1681 tcg_gen_shli_i64(t0, arg, 24); in tcg_gen_bswap32_i64()
1682 tcg_gen_ext32u_i64(t0, t0); in tcg_gen_bswap32_i64()
1686 tcg_gen_or_i64(t0, t0, t1); in tcg_gen_bswap32_i64()
1690 tcg_gen_or_i64(t0, t0, t1); in tcg_gen_bswap32_i64()
1693 tcg_gen_or_i64(ret, t0, t1); in tcg_gen_bswap32_i64()
1694 tcg_temp_free_i64(t0); in tcg_gen_bswap32_i64()
1704 TCGv_i64 t0 = tcg_temp_new_i64(); in tcg_gen_bswap64_i64()
1707 tcg_gen_shli_i64(t0, arg, 56); in tcg_gen_bswap64_i64()
1711 tcg_gen_or_i64(t0, t0, t1); in tcg_gen_bswap64_i64()
1715 tcg_gen_or_i64(t0, t0, t1); in tcg_gen_bswap64_i64()
1719 tcg_gen_or_i64(t0, t0, t1); in tcg_gen_bswap64_i64()
1723 tcg_gen_or_i64(t0, t0, t1); in tcg_gen_bswap64_i64()
1727 tcg_gen_or_i64(t0, t0, t1); in tcg_gen_bswap64_i64()
1731 tcg_gen_or_i64(t0, t0, t1); in tcg_gen_bswap64_i64()
1734 tcg_gen_or_i64(ret, t0, t1); in tcg_gen_bswap64_i64()
1735 tcg_temp_free_i64(t0); in tcg_gen_bswap64_i64()
1747 TCGv_i32 t0 = tcg_const_i32(0); in tcg_gen_neg_i32()
1748 tcg_gen_sub_i32(ret, t0, arg); in tcg_gen_neg_i32()
1749 tcg_temp_free_i32(t0); in tcg_gen_neg_i32()
1758 TCGv_i64 t0 = tcg_const_i64(0); in tcg_gen_neg_i64()
1759 tcg_gen_sub_i64(ret, t0, arg); in tcg_gen_neg_i64()
1760 tcg_temp_free_i64(t0); in tcg_gen_neg_i64()
1838 TCGv_i32 t0; in tcg_gen_andc_i32()
1839 t0 = tcg_temp_new_i32(); in tcg_gen_andc_i32()
1840 tcg_gen_not_i32(t0, arg2); in tcg_gen_andc_i32()
1841 tcg_gen_and_i32(ret, arg1, t0); in tcg_gen_andc_i32()
1842 tcg_temp_free_i32(t0); in tcg_gen_andc_i32()
1854 TCGv_i64 t0; in tcg_gen_andc_i64()
1855 t0 = tcg_temp_new_i64(); in tcg_gen_andc_i64()
1856 tcg_gen_not_i64(t0, arg2); in tcg_gen_andc_i64()
1857 tcg_gen_and_i64(ret, arg1, t0); in tcg_gen_andc_i64()
1858 tcg_temp_free_i64(t0); in tcg_gen_andc_i64()
1936 TCGv_i32 t0; in tcg_gen_orc_i32()
1937 t0 = tcg_temp_new_i32(); in tcg_gen_orc_i32()
1938 tcg_gen_not_i32(t0, arg2); in tcg_gen_orc_i32()
1939 tcg_gen_or_i32(ret, arg1, t0); in tcg_gen_orc_i32()
1940 tcg_temp_free_i32(t0); in tcg_gen_orc_i32()
1952 TCGv_i64 t0; in tcg_gen_orc_i64()
1953 t0 = tcg_temp_new_i64(); in tcg_gen_orc_i64()
1954 tcg_gen_not_i64(t0, arg2); in tcg_gen_orc_i64()
1955 tcg_gen_or_i64(ret, arg1, t0); in tcg_gen_orc_i64()
1956 tcg_temp_free_i64(t0); in tcg_gen_orc_i64()
1965 TCGv_i32 t0, t1; in tcg_gen_rotl_i32()
1967 t0 = tcg_temp_new_i32(); in tcg_gen_rotl_i32()
1969 tcg_gen_shl_i32(t0, arg1, arg2); in tcg_gen_rotl_i32()
1972 tcg_gen_or_i32(ret, t0, t1); in tcg_gen_rotl_i32()
1973 tcg_temp_free_i32(t0); in tcg_gen_rotl_i32()
1983 TCGv_i64 t0, t1; in tcg_gen_rotl_i64()
1985 t0 = tcg_temp_new_i64(); in tcg_gen_rotl_i64()
1987 tcg_gen_shl_i64(t0, arg1, arg2); in tcg_gen_rotl_i64()
1990 tcg_gen_or_i64(ret, t0, t1); in tcg_gen_rotl_i64()
1991 tcg_temp_free_i64(t0); in tcg_gen_rotl_i64()
2003 TCGv_i32 t0 = tcg_const_i32(arg2); in tcg_gen_rotli_i32() local
2004 tcg_gen_rotl_i32(ret, arg1, t0); in tcg_gen_rotli_i32()
2005 tcg_temp_free_i32(t0); in tcg_gen_rotli_i32()
2007 TCGv_i32 t0, t1; in tcg_gen_rotli_i32()
2008 t0 = tcg_temp_new_i32(); in tcg_gen_rotli_i32()
2010 tcg_gen_shli_i32(t0, arg1, arg2); in tcg_gen_rotli_i32()
2012 tcg_gen_or_i32(ret, t0, t1); in tcg_gen_rotli_i32()
2013 tcg_temp_free_i32(t0); in tcg_gen_rotli_i32()
2026 TCGv_i64 t0 = tcg_const_i64(arg2); in tcg_gen_rotli_i64() local
2027 tcg_gen_rotl_i64(ret, arg1, t0); in tcg_gen_rotli_i64()
2028 tcg_temp_free_i64(t0); in tcg_gen_rotli_i64()
2030 TCGv_i64 t0, t1; in tcg_gen_rotli_i64()
2031 t0 = tcg_temp_new_i64(); in tcg_gen_rotli_i64()
2033 tcg_gen_shli_i64(t0, arg1, arg2); in tcg_gen_rotli_i64()
2035 tcg_gen_or_i64(ret, t0, t1); in tcg_gen_rotli_i64()
2036 tcg_temp_free_i64(t0); in tcg_gen_rotli_i64()
2047 TCGv_i32 t0, t1; in tcg_gen_rotr_i32()
2049 t0 = tcg_temp_new_i32(); in tcg_gen_rotr_i32()
2051 tcg_gen_shr_i32(t0, arg1, arg2); in tcg_gen_rotr_i32()
2054 tcg_gen_or_i32(ret, t0, t1); in tcg_gen_rotr_i32()
2055 tcg_temp_free_i32(t0); in tcg_gen_rotr_i32()
2065 TCGv_i64 t0, t1; in tcg_gen_rotr_i64()
2067 t0 = tcg_temp_new_i64(); in tcg_gen_rotr_i64()
2069 tcg_gen_shr_i64(t0, arg1, arg2); in tcg_gen_rotr_i64()
2072 tcg_gen_or_i64(ret, t0, t1); in tcg_gen_rotr_i64()
2073 tcg_temp_free_i64(t0); in tcg_gen_rotr_i64()