Lines Matching refs:src2
1412 sljit_s32 src2, sljit_sw src2w)
1417 CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
1420 ADJUST_LOCAL_OFFSET(src2, src2w);
1437 if (src2 & SLJIT_IMM)
1439 else if (src2 & SLJIT_MEM) {
1441 emit_op_mem(compiler, WORD_SIZE, src2_reg, src2, src2w, src2_reg);
1445 src2w = src2;
1579 sljit_s32 src2, sljit_sw src2w)
1588 if (src2 & SLJIT_MEM) {
1589 emit_fop_mem(compiler, (op & SLJIT_F32_OP) | FPU_LOAD, TMP_FREG2, src2, src2w);
1590 src2 = TMP_FREG2;
1593 FAIL_IF(push_inst32(compiler, VCMP_F32 | (op & SLJIT_F32_OP) | DD4(src1) | DM4(src2)));
1647 sljit_s32 src2, sljit_sw src2w)
1652 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
1655 ADJUST_LOCAL_OFFSET(src2, src2w);
1664 if (src2 & SLJIT_MEM) {
1665 emit_fop_mem(compiler, (op & SLJIT_F32_OP) | FPU_LOAD, TMP_FREG2, src2, src2w);
1666 src2 = TMP_FREG2;
1671 FAIL_IF(push_inst32(compiler, VADD_F32 | (op & SLJIT_F32_OP) | DD4(dst_r) | DN4(src1) | DM4(src2)));
1674 FAIL_IF(push_inst32(compiler, VSUB_F32 | (op & SLJIT_F32_OP) | DD4(dst_r) | DN4(src1) | DM4(src2)));
1677 FAIL_IF(push_inst32(compiler, VMUL_F32 | (op & SLJIT_F32_OP) | DD4(dst_r) | DN4(src1) | DM4(src2)));
1680 FAIL_IF(push_inst32(compiler, VDIV_F32 | (op & SLJIT_F32_OP) | DD4(dst_r) | DN4(src1) | DM4(src2)));