Lines Matching refs:src2

1433 	sljit_si src2, sljit_sw src2w)  in sljit_emit_op2()  argument
1438 CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1441 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_op2()
1466 if (src2 & SLJIT_MEM) { in sljit_emit_op2()
1467 if (getput_arg_fast(compiler, mem_flags, TMP_REG2, src2, src2w)) in sljit_emit_op2()
1474 if (!can_cache(src1, src1w, src2, src2w) && can_cache(src1, src1w, dst, dstw)) { in sljit_emit_op2()
1475 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src2, src2w, src1, src1w)); in sljit_emit_op2()
1479 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG1, src1, src1w, src2, src2w)); in sljit_emit_op2()
1480 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src2, src2w, dst, dstw)); in sljit_emit_op2()
1486 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src2, src2w, dst, dstw)); in sljit_emit_op2()
1490 if (src2 & SLJIT_MEM) in sljit_emit_op2()
1491 src2 = TMP_REG2; in sljit_emit_op2()
1497 if (src2 & SLJIT_IMM) in sljit_emit_op2()
1500 src2w = src2; in sljit_emit_op2()
1656 sljit_si src2, sljit_sw src2w) in sljit_emit_fop1_cmp() argument
1666 if (src2 & SLJIT_MEM) { in sljit_emit_fop1_cmp()
1667 emit_fop_mem(compiler, mem_flags, TMP_FREG2, src2, src2w); in sljit_emit_fop1_cmp()
1668 src2 = TMP_FREG2; in sljit_emit_fop1_cmp()
1671 return push_inst(compiler, (FCMP ^ inv_bits) | VN(src1) | VM(src2)); in sljit_emit_fop1_cmp()
1724 sljit_si src2, sljit_sw src2w) in sljit_emit_fop2() argument
1730 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
1733 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_fop2()
1743 if (src2 & SLJIT_MEM) { in sljit_emit_fop2()
1744 emit_fop_mem(compiler, mem_flags, TMP_FREG2, src2, src2w); in sljit_emit_fop2()
1745 src2 = TMP_FREG2; in sljit_emit_fop2()
1750 FAIL_IF(push_inst(compiler, (FADD ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1753 FAIL_IF(push_inst(compiler, (FSUB ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1756 FAIL_IF(push_inst(compiler, (FMUL ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1759 FAIL_IF(push_inst(compiler, (FDIV ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()