Lines Matching refs:src1

1421 	sljit_s32 src1, sljit_sw src1w,  in sljit_emit_op2()  argument
1427 CHECK(check_sljit_emit_op2(compiler, op, 0, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1429 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_op2()
1444 if (src1 & SLJIT_MEM) { in sljit_emit_op2()
1445 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG1, src1, src1w, TMP_REG1)); in sljit_emit_op2()
1446 src1 = TMP_REG1; in sljit_emit_op2()
1454 if (src1 & SLJIT_IMM) in sljit_emit_op2()
1457 src1w = src1; in sljit_emit_op2()
1472 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2u() argument
1476 CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w)); in sljit_emit_op2u()
1479 return sljit_emit_op2(compiler, op, TMP_REG1, 0, src1, src1w, src2, src2w); in sljit_emit_op2u()
1484 sljit_s32 src1, sljit_sw src1w, in sljit_emit_shift_into() argument
1492 CHECK(check_sljit_emit_shift_into(compiler, op, src_dst, src1, src1w, src2, src2w)); in sljit_emit_shift_into()
1496 if (src_dst == src1) { in sljit_emit_shift_into()
1501 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_shift_into()
1517 if (src1 & SLJIT_MEM) { in sljit_emit_shift_into()
1518 FAIL_IF(emit_op_mem(compiler, inv_bits ? INT_SIZE : WORD_SIZE, TMP_REG1, src1, src1w, TMP_REG1)); in sljit_emit_shift_into()
1519 src1 = TMP_REG1; in sljit_emit_shift_into()
1520 } else if (src1 & SLJIT_IMM) { in sljit_emit_shift_into()
1522 src1 = TMP_REG1; in sljit_emit_shift_into()
1530 | RN(is_left ? src_dst : src1) | RM(is_left ? src1 : src_dst) | ((sljit_ins)src2w << 10)); in sljit_emit_shift_into()
1542 FAIL_IF(push_inst(compiler, (UBFM ^ inv_bits) | RD(TMP_REG1) | RN(src1) | imm)); in sljit_emit_shift_into()
1548 src1 = TMP_REG1; in sljit_emit_shift_into()
1552 …FAIL_IF(push_inst(compiler, ((is_left ? LSRV : LSLV) ^ inv_bits) | RD(TMP_REG1) | RN(src1) | RM(TM… in sljit_emit_shift_into()
1722 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp() argument
1728 if (src1 & SLJIT_MEM) { in sljit_emit_fop1_cmp()
1729 emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w); in sljit_emit_fop1_cmp()
1730 src1 = TMP_FREG1; in sljit_emit_fop1_cmp()
1738 return push_inst(compiler, (FCMP ^ inv_bits) | VN(src1) | VM(src2)); in sljit_emit_fop1_cmp()
1788 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2() argument
1795 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
1797 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fop2()
1801 if (src1 & SLJIT_MEM) { in sljit_emit_fop2()
1802 emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w); in sljit_emit_fop2()
1803 src1 = TMP_FREG1; in sljit_emit_fop2()
1812 FAIL_IF(push_inst(compiler, (FADD ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1815 FAIL_IF(push_inst(compiler, (FSUB ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1818 FAIL_IF(push_inst(compiler, (FMUL ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
1821 FAIL_IF(push_inst(compiler, (FDIV ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()