Lines Matching refs:src1

1410 	sljit_si src1, sljit_sw src1w,  in sljit_emit_op2()  argument
1416 CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1418 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_op2()
1438 if (src1 & SLJIT_MEM) { in sljit_emit_op2()
1439 if (getput_arg_fast(compiler, mem_flags, TMP_REG1, src1, src1w)) in sljit_emit_op2()
1452 if (!can_cache(src1, src1w, src2, src2w) && can_cache(src1, src1w, dst, dstw)) { in sljit_emit_op2()
1453 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src2, src2w, src1, src1w)); in sljit_emit_op2()
1454 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG1, src1, src1w, dst, dstw)); in sljit_emit_op2()
1457 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG1, src1, src1w, src2, src2w)); in sljit_emit_op2()
1462 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG1, src1, src1w, dst, dstw)); in sljit_emit_op2()
1466 if (src1 & SLJIT_MEM) in sljit_emit_op2()
1467 src1 = TMP_REG1; in sljit_emit_op2()
1471 if (src1 & SLJIT_IMM) in sljit_emit_op2()
1474 src1w = src1; in sljit_emit_op2()
1633 sljit_si src1, sljit_sw src1w, in sljit_emit_fop1_cmp() argument
1639 if (src1 & SLJIT_MEM) { in sljit_emit_fop1_cmp()
1640 emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w); in sljit_emit_fop1_cmp()
1641 src1 = TMP_FREG1; in sljit_emit_fop1_cmp()
1649 return push_inst(compiler, (FCMP ^ inv_bits) | VN(src1) | VM(src2)); in sljit_emit_fop1_cmp()
1701 sljit_si src1, sljit_sw src1w, in sljit_emit_fop2() argument
1708 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
1710 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fop2()
1717 if (src1 & SLJIT_MEM) { in sljit_emit_fop2()
1718 emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w); in sljit_emit_fop2()
1719 src1 = TMP_FREG1; in sljit_emit_fop2()
1728 FAIL_IF(push_inst(compiler, (FADD ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1731 FAIL_IF(push_inst(compiler, (FSUB ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1734 FAIL_IF(push_inst(compiler, (FMUL ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1737 FAIL_IF(push_inst(compiler, (FDIV ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()