Lines Matching refs:src2w

1765 	sljit_s32 src2, sljit_sw src2w)  in sljit_emit_op2()  argument
1770 CHECK(check_sljit_emit_op2(compiler, op, 0, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1773 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_op2()
1794 emit_op_mem(compiler, WORD_SIZE, src2_reg, src2, src2w, src2_reg); in sljit_emit_op2()
1795 src2w = src2_reg; in sljit_emit_op2()
1798 src2w = src2; in sljit_emit_op2()
1800 emit_op_imm(compiler, flags | GET_OPCODE(op), dst_reg, (sljit_uw)src1w, (sljit_uw)src2w); in sljit_emit_op2()
1809 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2u() argument
1812 CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w)); in sljit_emit_op2u()
1815 return sljit_emit_op2(compiler, op, TMP_REG1, 0, src1, src1w, src2, src2w); in sljit_emit_op2u()
1821 sljit_s32 src2, sljit_sw src2w) in sljit_emit_shift_into() argument
1826 CHECK(check_sljit_emit_shift_into(compiler, op, src_dst, src1, src1w, src2, src2w)); in sljit_emit_shift_into()
1833 …n sljit_emit_op2(compiler, is_left ? SLJIT_ROTL : SLJIT_ROTR, src_dst, 0, src_dst, 0, src2, src2w); in sljit_emit_shift_into()
1837 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_shift_into()
1840 src2w &= 0x1f; in sljit_emit_shift_into()
1842 if (src2w == 0) in sljit_emit_shift_into()
1845 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG2, src2, src2w, TMP_REG2)); in sljit_emit_shift_into()
1859 …st16(compiler, (is_left ? LSLSI : LSRSI) | RD3(src_dst) | RN3(src_dst) | ((sljit_ins)src2w << 6))); in sljit_emit_shift_into()
1861 …IF(push_inst32(compiler, (is_left ? LSL_WI : LSR_WI) | RD4(src_dst) | RM4(src_dst) | IMM5(src2w))); in sljit_emit_shift_into()
1863 src2w = (src2w ^ 0x1f) + 1; in sljit_emit_shift_into()
1864 …(compiler, ORR_W | RD4(src_dst) | RN4(src_dst) | RM4(src1) | (is_left ? 0x10 : 0x0) | IMM5(src2w)); in sljit_emit_shift_into()
2036 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp() argument
2046 emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG2, src2, src2w); in sljit_emit_fop1_cmp()
2104 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2() argument
2109 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
2112 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_fop2()
2122 emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG2, src2, src2w); in sljit_emit_fop2()