Lines Matching refs:src1

1638 	sljit_s32 src1, sljit_sw src1w,  in sljit_emit_op2()  argument
1644 CHECK(check_sljit_emit_op2(compiler, op, 0, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1646 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_op2()
1655 if (src1 & SLJIT_IMM) in sljit_emit_op2()
1657 else if (src1 & SLJIT_MEM) { in sljit_emit_op2()
1658 emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src1, src1w, TMP_REG1); in sljit_emit_op2()
1662 src1w = src1; in sljit_emit_op2()
1682 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2u() argument
1686 CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w)); in sljit_emit_op2u()
1692 return sljit_emit_op2(compiler, op, TMP_REG1, 0, src1, src1w, src2, src2w); in sljit_emit_op2u()
1847 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp() argument
1852 if (src1 & SLJIT_MEM) { in sljit_emit_fop1_cmp()
1853 emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG1, src1, src1w); in sljit_emit_fop1_cmp()
1854 src1 = TMP_FREG1; in sljit_emit_fop1_cmp()
1862 FAIL_IF(push_inst32(compiler, VCMP_F32 | (op & SLJIT_32) | DD4(src1) | DM4(src2))); in sljit_emit_fop1_cmp()
1915 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2() argument
1921 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
1923 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fop2()
1929 if (src1 & SLJIT_MEM) { in sljit_emit_fop2()
1930 emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG1, src1, src1w); in sljit_emit_fop2()
1931 src1 = TMP_FREG1; in sljit_emit_fop2()
1940 FAIL_IF(push_inst32(compiler, VADD_F32 | (op & SLJIT_32) | DD4(dst_r) | DN4(src1) | DM4(src2))); in sljit_emit_fop2()
1943 FAIL_IF(push_inst32(compiler, VSUB_F32 | (op & SLJIT_32) | DD4(dst_r) | DN4(src1) | DM4(src2))); in sljit_emit_fop2()
1946 FAIL_IF(push_inst32(compiler, VMUL_F32 | (op & SLJIT_32) | DD4(dst_r) | DN4(src1) | DM4(src2))); in sljit_emit_fop2()
1949 FAIL_IF(push_inst32(compiler, VDIV_F32 | (op & SLJIT_32) | DD4(dst_r) | DN4(src1) | DM4(src2))); in sljit_emit_fop2()