Lines Matching refs:src2

1261 	sljit_s32 src2, sljit_sw src2w)  in sljit_emit_op2()  argument
1266 CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1269 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_op2()
1291 if (src2 & SLJIT_MEM) { in sljit_emit_op2()
1292 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG2, src2, src2w, TMP_REG2)); in sljit_emit_op2()
1293 src2 = TMP_REG2; in sljit_emit_op2()
1301 if (src2 & SLJIT_IMM) in sljit_emit_op2()
1304 src2w = src2; in sljit_emit_op2()
1480 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp() argument
1490 if (src2 & SLJIT_MEM) { in sljit_emit_fop1_cmp()
1491 emit_fop_mem(compiler, mem_flags, TMP_FREG2, src2, src2w); in sljit_emit_fop1_cmp()
1492 src2 = TMP_FREG2; in sljit_emit_fop1_cmp()
1495 return push_inst(compiler, (FCMP ^ inv_bits) | VN(src1) | VM(src2)); in sljit_emit_fop1_cmp()
1546 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2() argument
1552 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
1555 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_fop2()
1562 if (src2 & SLJIT_MEM) { in sljit_emit_fop2()
1563 emit_fop_mem(compiler, mem_flags, TMP_FREG2, src2, src2w); in sljit_emit_fop2()
1564 src2 = TMP_FREG2; in sljit_emit_fop2()
1569 FAIL_IF(push_inst(compiler, (FADD ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1572 FAIL_IF(push_inst(compiler, (FSUB ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1575 FAIL_IF(push_inst(compiler, (FMUL ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1578 FAIL_IF(push_inst(compiler, (FDIV ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()