Lines Matching refs:dst_reg

2652 	sljit_s32 dst_reg,  in sljit_emit_op2r()  argument
2657 CHECK(check_sljit_emit_op2r(compiler, op, dst_reg, src1, src1w, src2, src2w)); in sljit_emit_op2r()
2663 …eturn push_inst(compiler, SELECT_OP(DADDU, ADDU) | S(dst_reg) | T(TMP_REG2) | D(dst_reg), DR(dst_r… in sljit_emit_op2r()
2670 sljit_s32 dst_reg, in sljit_emit_shift_into() argument
2686 CHECK(check_sljit_emit_shift_into(compiler, op, dst_reg, src1_reg, src2_reg, src3, src3w)); in sljit_emit_shift_into()
2692 …return sljit_emit_op2(compiler, (is_left ? SLJIT_ROTL : SLJIT_ROTR) | (op & SLJIT_32), dst_reg, 0,… in sljit_emit_shift_into()
2713 FAIL_IF(push_inst(compiler, ins1 | T(src1_reg) | D(dst_reg), DR(dst_reg))); in sljit_emit_shift_into()
2715 return push_inst(compiler, OR | S(dst_reg) | T(TMP_REG1) | D(dst_reg), DR(dst_reg)); in sljit_emit_shift_into()
2721 } else if (dst_reg == src3) { in sljit_emit_shift_into()
2736 FAIL_IF(push_inst(compiler, ins2 | S(src3) | T(src1_reg) | D(dst_reg), DR(dst_reg))); in sljit_emit_shift_into()
2746 return push_inst(compiler, OR | S(dst_reg) | T(TMP_REG1) | D(dst_reg), DR(dst_reg)); in sljit_emit_shift_into()
3735 sljit_s32 dst_reg, in sljit_emit_select() argument
3753 CHECK(check_sljit_emit_select(compiler, type, dst_reg, src1, src1w, src2_reg)); in sljit_emit_select()
3769 if (dst_reg != src2_reg) { in sljit_emit_select()
3770 if (dst_reg == src1) { in sljit_emit_select()
3774 FAIL_IF(push_inst(compiler, mov_ins | S(src2_reg) | TA(0) | D(dst_reg), DR(dst_reg))); in sljit_emit_select()
3777 return push_inst(compiler, get_select_cc(type, 0) | S(src1) | D(dst_reg), DR(dst_reg)); in sljit_emit_select()
3780 if (dst_reg != src2_reg) { in sljit_emit_select()
3781 if (dst_reg == src1) { in sljit_emit_select()
3786 if (ADDRESSING_DEPENDS_ON(src1, dst_reg)) { in sljit_emit_select()
3787 FAIL_IF(push_inst(compiler, ADDU_W | S(dst_reg) | TA(0) | D(TMP_REG1), DR(TMP_REG1))); in sljit_emit_select()
3789 if ((src1 & REG_MASK) == dst_reg) in sljit_emit_select()
3792 if (OFFS_REG(src1) == dst_reg) in sljit_emit_select()
3796 FAIL_IF(push_inst(compiler, mov_ins | S(src2_reg) | TA(0) | D(dst_reg), DR(dst_reg))); in sljit_emit_select()
3805 FAIL_IF(emit_op_mem(compiler, inp_flags, DR(dst_reg), src1, src1w)); in sljit_emit_select()
3811 FAIL_IF(load_immediate(compiler, DR(dst_reg), src1w)); in sljit_emit_select()
3813 FAIL_IF(push_inst(compiler, mov_ins | S(src1) | TA(0) | D(dst_reg), DR(dst_reg))); in sljit_emit_select()