Lines Matching refs:src1

1417 	sljit_si src1, sljit_sw src1w,  in sljit_emit_op2()  argument
1423 CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1425 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_op2()
1437 if (src1 & SLJIT_MEM) { in sljit_emit_op2()
1438 if (getput_arg_fast(compiler, WORD_SIZE, TMP_REG1, src1, src1w)) in sljit_emit_op2()
1451 if (!can_cache(src1, src1w, src2, src2w) && can_cache(src1, src1w, dst, dstw)) { in sljit_emit_op2()
1452 FAIL_IF(getput_arg(compiler, WORD_SIZE, TMP_REG2, src2, src2w, src1, src1w)); in sljit_emit_op2()
1453 FAIL_IF(getput_arg(compiler, WORD_SIZE, TMP_REG1, src1, src1w, dst, dstw)); in sljit_emit_op2()
1456 FAIL_IF(getput_arg(compiler, WORD_SIZE, TMP_REG1, src1, src1w, src2, src2w)); in sljit_emit_op2()
1461 FAIL_IF(getput_arg(compiler, WORD_SIZE, TMP_REG1, src1, src1w, dst, dstw)); in sljit_emit_op2()
1465 if (src1 & SLJIT_MEM) in sljit_emit_op2()
1466 src1 = TMP_REG1; in sljit_emit_op2()
1470 if (src1 & SLJIT_IMM) in sljit_emit_op2()
1473 src1w = src1; in sljit_emit_op2()
1643 sljit_si src1, sljit_sw src1w, in sljit_emit_fop1_cmp() argument
1646 if (src1 & SLJIT_MEM) { in sljit_emit_fop1_cmp()
1647 emit_fop_mem(compiler, (op & SLJIT_SINGLE_OP) | FPU_LOAD, TMP_FREG1, src1, src1w); in sljit_emit_fop1_cmp()
1648 src1 = TMP_FREG1; in sljit_emit_fop1_cmp()
1656 FAIL_IF(push_inst32(compiler, VCMP_F32 | (op & SLJIT_SINGLE_OP) | DD4(src1) | DM4(src2))); in sljit_emit_fop1_cmp()
1710 sljit_si src1, sljit_sw src1w, in sljit_emit_fop2() argument
1716 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
1718 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fop2()
1726 if (src1 & SLJIT_MEM) { in sljit_emit_fop2()
1727 emit_fop_mem(compiler, (op & SLJIT_SINGLE_OP) | FPU_LOAD, TMP_FREG1, src1, src1w); in sljit_emit_fop2()
1728 src1 = TMP_FREG1; in sljit_emit_fop2()
1737 …FAIL_IF(push_inst32(compiler, VADD_F32 | (op & SLJIT_SINGLE_OP) | DD4(dst_r) | DN4(src1) | DM4(src… in sljit_emit_fop2()
1740 …FAIL_IF(push_inst32(compiler, VSUB_F32 | (op & SLJIT_SINGLE_OP) | DD4(dst_r) | DN4(src1) | DM4(src… in sljit_emit_fop2()
1743 …FAIL_IF(push_inst32(compiler, VMUL_F32 | (op & SLJIT_SINGLE_OP) | DD4(dst_r) | DN4(src1) | DM4(src… in sljit_emit_fop2()
1746 …FAIL_IF(push_inst32(compiler, VDIV_F32 | (op & SLJIT_SINGLE_OP) | DD4(dst_r) | DN4(src1) | DM4(src… in sljit_emit_fop2()