Lines Matching refs:src3w

1988 	sljit_s32 src3, sljit_sw src3w)  in sljit_emit_shift_into()  argument
2000 CHECK(check_sljit_emit_shift_into(compiler, op, dst_reg, src1_reg, src2_reg, src3, src3w)); in sljit_emit_shift_into()
2006 …ler, (is_right ? SLJIT_ROTR : SLJIT_ROTL) | (op & SLJIT_32), dst_reg, 0, src1_reg, 0, src3, src3w); in sljit_emit_shift_into()
2009 ADJUST_LOCAL_OFFSET(src3, src3w); in sljit_emit_shift_into()
2012 src3w &= bit_length - 1; in sljit_emit_shift_into()
2014 if (src3w == 0) in sljit_emit_shift_into()
2020 FAIL_IF(push_inst(compiler, SRDI(src3w) | S(src1_reg) | A(dst_reg))); in sljit_emit_shift_into()
2021 … return push_inst(compiler, RLDIMI | S(src2_reg) | A(dst_reg) | RLDI_SH(64 - src3w) | RLDI_MB(0)); in sljit_emit_shift_into()
2024 FAIL_IF(push_inst(compiler, SLDI(src3w) | S(src1_reg) | A(dst_reg))); in sljit_emit_shift_into()
2026 …IF(push_inst(compiler, RLDICL | S(src2_reg) | A(TMP_REG1) | RLDI_SH(src3w) | RLDI_MB(64 - src3w))); in sljit_emit_shift_into()
2032 FAIL_IF(push_inst(compiler, SRWI(src3w) | S(src1_reg) | A(dst_reg))); in sljit_emit_shift_into()
2033 …h_inst(compiler, RLWIMI | S(src2_reg) | A(dst_reg) | RLWI_SH(32 - src3w) | RLWI_MBE(0, src3w - 1)); in sljit_emit_shift_into()
2036 FAIL_IF(push_inst(compiler, SLWI(src3w) | S(src1_reg) | A(dst_reg))); in sljit_emit_shift_into()
2037 …push_inst(compiler, RLWIMI | S(src2_reg) | A(dst_reg) | RLWI_SH(src3w) | RLWI_MBE(32 - src3w, 31)); in sljit_emit_shift_into()
2041 FAIL_IF(emit_op_mem(compiler, inp_flags, TMP_REG2, src3, src3w, TMP_REG2)); in sljit_emit_shift_into()