Lines Matching refs:src2w

1521 	sljit_s32 src2, sljit_sw src2w)  in emit_op()  argument
1551 if ((src2 & SLJIT_IMM) && src2w != 0 && src2w <= SIMM_MAX && src2w >= SIMM_MIN) { in emit_op()
1553 src2_r = src2w; in emit_op()
1561 src1w = src2w; in emit_op()
1597 if (src2w) { in emit_op()
1598 FAIL_IF(load_immediate(compiler, sugg_src2_r, src2w, TMP_REG3)); in emit_op()
1613 if (getput_arg_fast(compiler, flags | LOAD_DATA, sugg_src2_r, src2, src2w)) in emit_op()
1622 if (!can_cache(src1, src1w, src2, src2w) && can_cache(src1, src1w, dst, dstw)) { in emit_op()
1623 FAIL_IF(getput_arg(compiler, flags | LOAD_DATA, TMP_REG2, src2, src2w, src1, src1w)); in emit_op()
1627 FAIL_IF(getput_arg(compiler, flags | LOAD_DATA, TMP_REG1, src1, src1w, src2, src2w)); in emit_op()
1628 FAIL_IF(getput_arg(compiler, flags | LOAD_DATA, TMP_REG2, src2, src2w, dst, dstw)); in emit_op()
1634 FAIL_IF(getput_arg(compiler, flags | LOAD_DATA, sugg_src2_r, src2, src2w, dst, dstw)); in emit_op()
1756 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2() argument
1761 CHECK(check_sljit_emit_op2(compiler, op, 0, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1764 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_op2()
1772 src2w = (sljit_s32)src2w; in sljit_emit_op2()
1780 return emit_op(compiler, op, flags | CUMULATIVE_OP | IMM_OP, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1785 return emit_op(compiler, op, flags | IMM_OP, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1789 return emit_op(compiler, op, flags | CUMULATIVE_OP, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1794 return emit_op(compiler, op, flags | CUMULATIVE_OP | IMM_OP, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1806 src2w &= 0x1f; in sljit_emit_op2()
1809 src2w &= 0x1f; in sljit_emit_op2()
1811 src2w &= 0x3f; in sljit_emit_op2()
1815 return emit_op(compiler, op, flags | IMM_OP, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1824 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2u() argument
1827 CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w)); in sljit_emit_op2u()
1830 return sljit_emit_op2(compiler, op, TMP_REG2, 0, src1, src1w, src2, src2w); in sljit_emit_op2u()
1836 sljit_s32 src2, sljit_sw src2w) in sljit_emit_shift_into() argument
1852 CHECK(check_sljit_emit_shift_into(compiler, op, src_dst, src1, src1w, src2, src2w)); in sljit_emit_shift_into()
1858 …piler, (is_left ? SLJIT_ROTL : SLJIT_ROTR) | (op & SLJIT_32), src_dst, 0, src_dst, 0, src2, src2w); in sljit_emit_shift_into()
1862 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_shift_into()
1865 src2w &= bit_length - 1; in sljit_emit_shift_into()
1867 if (src2w == 0) in sljit_emit_shift_into()
1870 FAIL_IF(emit_op_mem(compiler, inp_flags, TMP_REG2, src2, src2w)); in sljit_emit_shift_into()
1884 ins1 = SLLI | WORD | IMM_I(src2w); in sljit_emit_shift_into()
1885 src2w = bit_length - src2w; in sljit_emit_shift_into()
1886 ins2 = SRLI | WORD | IMM_I(src2w); in sljit_emit_shift_into()
1888 ins1 = SRLI | WORD | IMM_I(src2w); in sljit_emit_shift_into()
1889 src2w = bit_length - src2w; in sljit_emit_shift_into()
1890 ins2 = SLLI | WORD | IMM_I(src2w); in sljit_emit_shift_into()
2060 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp() argument
2065 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG1, src1, src1w, src2, src2w)); in sljit_emit_fop1_cmp()
2070 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG2, src2, src2w, 0, 0)); in sljit_emit_fop1_cmp()
2169 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2() argument
2174 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
2177 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_fop2()
2193 if (getput_arg_fast(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG2, src2, src2w)) { in sljit_emit_fop2()
2201 if (!can_cache(src1, src1w, src2, src2w) && can_cache(src1, src1w, dst, dstw)) { in sljit_emit_fop2()
2202 FAIL_IF(getput_arg(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG2, src2, src2w, src1, src1w)); in sljit_emit_fop2()
2206 FAIL_IF(getput_arg(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG1, src1, src1w, src2, src2w)); in sljit_emit_fop2()
2207 FAIL_IF(getput_arg(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG2, src2, src2w, dst, dstw)); in sljit_emit_fop2()
2213 FAIL_IF(getput_arg(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG2, src2, src2w, dst, dstw)); in sljit_emit_fop2()
2394 sljit_s32 src2, sljit_sw src2w) in sljit_emit_cmp() argument
2401 CHECK_PTR(check_sljit_emit_cmp(compiler, type, src1, src1w, src2, src2w)); in sljit_emit_cmp()
2403 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_cmp()
2414 PTR_FAIL_IF(emit_op_mem2(compiler, flags, TMP_REG1, src1, src1w, src2, src2w)); in sljit_emit_cmp()
2419 PTR_FAIL_IF(emit_op_mem2(compiler, flags, TMP_REG2, src2, src2w, 0, 0)); in sljit_emit_cmp()
2433 if (src2w != 0) { in sljit_emit_cmp()
2434 PTR_FAIL_IF(load_immediate(compiler, TMP_REG2, src2w, TMP_REG3)); in sljit_emit_cmp()