Lines Matching refs:src2
2003 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2() argument
2008 CHECK(check_sljit_emit_op2(compiler, op, 0, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
2011 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_op2()
2019 if (src2 == SLJIT_IMM) in sljit_emit_op2()
2021 else if (src2 & SLJIT_MEM) { in sljit_emit_op2()
2023 emit_op_mem(compiler, WORD_SIZE, src2_tmp_reg, src2, src2w, TMP_REG1); in sljit_emit_op2()
2026 src2w = src2; in sljit_emit_op2()
2045 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2u() argument
2048 CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w)); in sljit_emit_op2u()
2051 return sljit_emit_op2(compiler, op, TMP_REG1, 0, src1, src1w, src2, src2w); in sljit_emit_op2u()
2057 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2r() argument
2060 CHECK(check_sljit_emit_op2r(compiler, op, dst_reg, src1, src1w, src2, src2w)); in sljit_emit_op2r()
2065 return sljit_emit_op2(compiler, op, dst_reg, 0, src1, src1w, src2, src2w); in sljit_emit_op2r()
2337 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp() argument
2346 if (src2 & SLJIT_MEM) { in sljit_emit_fop1_cmp()
2347 FAIL_IF(emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG2, src2, src2w)); in sljit_emit_fop1_cmp()
2348 src2 = TMP_FREG2; in sljit_emit_fop1_cmp()
2351 FAIL_IF(push_inst32(compiler, VCMP_F32 | (op & SLJIT_32) | VD4(src1) | VM4(src2))); in sljit_emit_fop1_cmp()
2411 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2() argument
2416 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
2419 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_fop2()
2428 if (src2 & SLJIT_MEM) { in sljit_emit_fop2()
2429 FAIL_IF(emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG2, src2, src2w)); in sljit_emit_fop2()
2430 src2 = TMP_FREG2; in sljit_emit_fop2()
2435 FAIL_IF(push_inst32(compiler, VADD_F32 | (op & SLJIT_32) | VD4(dst_r) | VN4(src1) | VM4(src2))); in sljit_emit_fop2()
2438 FAIL_IF(push_inst32(compiler, VSUB_F32 | (op & SLJIT_32) | VD4(dst_r) | VN4(src1) | VM4(src2))); in sljit_emit_fop2()
2441 FAIL_IF(push_inst32(compiler, VMUL_F32 | (op & SLJIT_32) | VD4(dst_r) | VN4(src1) | VM4(src2))); in sljit_emit_fop2()
2444 FAIL_IF(push_inst32(compiler, VDIV_F32 | (op & SLJIT_32) | VD4(dst_r) | VN4(src1) | VM4(src2))); in sljit_emit_fop2()
2447 …FAIL_IF(push_inst32(compiler, VMOV | (1 << 20) | VN4(src2) | RT4(TMP_REG1) | ((op & SLJIT_32) ? (1… in sljit_emit_fop2()