Lines Matching refs:src1

1264 	sljit_s32 src1, sljit_sw src1w,  in sljit_emit_op2()  argument
1270 CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1272 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_op2()
1290 if (src1 & SLJIT_MEM) { in sljit_emit_op2()
1291 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG1, src1, src1w, TMP_REG1)); in sljit_emit_op2()
1292 src1 = TMP_REG1; in sljit_emit_op2()
1300 if (src1 & SLJIT_IMM) in sljit_emit_op2()
1303 src1w = src1; in sljit_emit_op2()
1483 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp() argument
1489 if (src1 & SLJIT_MEM) { in sljit_emit_fop1_cmp()
1490 emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w); in sljit_emit_fop1_cmp()
1491 src1 = TMP_FREG1; in sljit_emit_fop1_cmp()
1499 return push_inst(compiler, (FCMP ^ inv_bits) | VN(src1) | VM(src2)); in sljit_emit_fop1_cmp()
1549 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2() argument
1556 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
1558 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fop2()
1562 if (src1 & SLJIT_MEM) { in sljit_emit_fop2()
1563 emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w); in sljit_emit_fop2()
1564 src1 = TMP_FREG1; in sljit_emit_fop2()
1573 FAIL_IF(push_inst(compiler, (FADD ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1576 FAIL_IF(push_inst(compiler, (FSUB ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1579 FAIL_IF(push_inst(compiler, (FMUL ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1582 FAIL_IF(push_inst(compiler, (FDIV ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()