Lines Matching refs:src2
1675 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2() argument
1680 CHECK(check_sljit_emit_op2(compiler, op, 0, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1683 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_op2()
1702 if (src2 & SLJIT_MEM) { in sljit_emit_op2()
1703 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG2, src2, src2w, TMP_REG2)); in sljit_emit_op2()
1704 src2 = TMP_REG2; in sljit_emit_op2()
1712 if (src2 == SLJIT_IMM) in sljit_emit_op2()
1715 src2w = src2; in sljit_emit_op2()
1726 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2u() argument
1729 CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w)); in sljit_emit_op2u()
1732 return sljit_emit_op2(compiler, op, TMP_REG2, 0, src1, src1w, src2, src2w); in sljit_emit_op2u()
1738 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2r() argument
1741 CHECK(check_sljit_emit_op2r(compiler, op, dst_reg, src1, src1w, src2, src2w)); in sljit_emit_op2r()
1746 return sljit_emit_op2(compiler, op, dst_reg, 0, src1, src1w, src2, src2w); in sljit_emit_op2r()
2040 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp() argument
2050 if (src2 & SLJIT_MEM) { in sljit_emit_fop1_cmp()
2051 FAIL_IF(emit_fop_mem(compiler, mem_flags, TMP_FREG2, src2, src2w)); in sljit_emit_fop1_cmp()
2052 src2 = TMP_FREG2; in sljit_emit_fop1_cmp()
2055 FAIL_IF(push_inst(compiler, (FCMP ^ inv_bits) | VN(src1) | VM(src2))); in sljit_emit_fop1_cmp()
2112 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2() argument
2118 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
2121 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_fop2()
2128 if (src2 & SLJIT_MEM) { in sljit_emit_fop2()
2129 FAIL_IF(emit_fop_mem(compiler, mem_flags, TMP_FREG2, src2, src2w)); in sljit_emit_fop2()
2130 src2 = TMP_FREG2; in sljit_emit_fop2()
2135 FAIL_IF(push_inst(compiler, (FADD ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
2138 FAIL_IF(push_inst(compiler, (FSUB ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
2141 FAIL_IF(push_inst(compiler, (FMUL ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
2144 FAIL_IF(push_inst(compiler, (FDIV ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
2147 …FAIL_IF(push_inst(compiler, (FMOV_R ^ ((op & SLJIT_32) ? (W_OP | (1 << 22)) : 0)) | VN(src2) | RD(… in sljit_emit_fop2()