Lines Matching refs:src3w
2075 sljit_s32 src3, sljit_sw src3w) in sljit_emit_shift_into() argument
2080 CHECK(check_sljit_emit_shift_into(compiler, op, dst_reg, src1_reg, src2_reg, src3, src3w)); in sljit_emit_shift_into()
2087 … sljit_emit_op2(compiler, is_left ? SLJIT_ROTL : SLJIT_ROTR, dst_reg, 0, src1_reg, 0, src3, src3w); in sljit_emit_shift_into()
2090 ADJUST_LOCAL_OFFSET(src3, src3w); in sljit_emit_shift_into()
2093 src3w &= 0x1f; in sljit_emit_shift_into()
2095 if (src3w == 0) in sljit_emit_shift_into()
2099 …t16(compiler, (is_left ? LSLSI : LSRSI) | RD3(dst_reg) | RN3(src1_reg) | ((sljit_ins)src3w << 6))); in sljit_emit_shift_into()
2101 …F(push_inst32(compiler, (is_left ? LSL_WI : LSR_WI) | RD4(dst_reg) | RM4(src1_reg) | IMM5(src3w))); in sljit_emit_shift_into()
2103 src3w = (src3w ^ 0x1f) + 1; in sljit_emit_shift_into()
2104 …piler, ORR_W | RD4(dst_reg) | RN4(dst_reg) | RM4(src2_reg) | (is_left ? 0x10 : 0x0) | IMM5(src3w)); in sljit_emit_shift_into()
2108 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG2, src3, src3w, TMP_REG2)); in sljit_emit_shift_into()