Lines Matching refs:src3w
2050 sljit_s32 src3, sljit_sw src3w) in sljit_emit_shift_into() argument
2059 CHECK(check_sljit_emit_shift_into(compiler, op, dst_reg, src1_reg, src2_reg, src3, src3w)); in sljit_emit_shift_into()
2065 …iler, (is_left ? SLJIT_ROTL : SLJIT_ROTR) | (op & SLJIT_32), dst_reg, 0, src1_reg, 0, src3, src3w); in sljit_emit_shift_into()
2068 ADJUST_LOCAL_OFFSET(src3, src3w); in sljit_emit_shift_into()
2071 src3w &= bit_length - 1; in sljit_emit_shift_into()
2073 if (src3w == 0) in sljit_emit_shift_into()
2077 ins1 = INST(SLLI, op) | IMM_I12(src3w); in sljit_emit_shift_into()
2078 src3w = bit_length - src3w; in sljit_emit_shift_into()
2079 ins2 = INST(SRLI, op) | IMM_I12(src3w); in sljit_emit_shift_into()
2081 ins1 = INST(SRLI, op) | IMM_I12(src3w); in sljit_emit_shift_into()
2082 src3w = bit_length - src3w; in sljit_emit_shift_into()
2083 ins2 = INST(SLLI, op) | IMM_I12(src3w); in sljit_emit_shift_into()
2092 FAIL_IF(emit_op_mem(compiler, inp_flags, TMP_REG2, src3, src3w)); in sljit_emit_shift_into()