Lines Matching refs:src1

1338 	sljit_s32 src1, sljit_sw src1w,  in sljit_emit_op2()  argument
1344 CHECK(check_sljit_emit_op2(compiler, op, 0, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1346 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_op2()
1361 if (src1 & SLJIT_MEM) { in sljit_emit_op2()
1362 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG1, src1, src1w, TMP_REG1)); in sljit_emit_op2()
1363 src1 = TMP_REG1; in sljit_emit_op2()
1371 if (src1 & SLJIT_IMM) in sljit_emit_op2()
1374 src1w = src1; in sljit_emit_op2()
1389 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2u() argument
1393 CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w)); in sljit_emit_op2u()
1399 return sljit_emit_op2(compiler, op, TMP_REG1, 0, src1, src1w, src2, src2w); in sljit_emit_op2u()
1569 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp() argument
1575 if (src1 & SLJIT_MEM) { in sljit_emit_fop1_cmp()
1576 emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w); in sljit_emit_fop1_cmp()
1577 src1 = TMP_FREG1; in sljit_emit_fop1_cmp()
1585 return push_inst(compiler, (FCMP ^ inv_bits) | VN(src1) | VM(src2)); in sljit_emit_fop1_cmp()
1635 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2() argument
1642 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
1644 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fop2()
1648 if (src1 & SLJIT_MEM) { in sljit_emit_fop2()
1649 emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w); in sljit_emit_fop2()
1650 src1 = TMP_FREG1; in sljit_emit_fop2()
1659 FAIL_IF(push_inst(compiler, (FADD ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1662 FAIL_IF(push_inst(compiler, (FSUB ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1665 FAIL_IF(push_inst(compiler, (FMUL ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1668 FAIL_IF(push_inst(compiler, (FDIV ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()