Lines Matching refs:src1w

2261 	sljit_s32 src1, sljit_sw src1w,  in emit_op()  argument
2296 …} else if ((flags & CUMULATIVE_OP) && src1 == SLJIT_IMM && src1w != 0 && CHECK_IMM(flags, src1w)) { in emit_op()
2298 src2_r = src1w; in emit_op()
2302 src1w = src2w; in emit_op()
2314 if (src1w) { in emit_op()
2315 FAIL_IF(load_immediate(compiler, DR(TMP_REG1), src1w)); in emit_op()
2322 if (getput_arg_fast(compiler, flags | LOAD_DATA, DR(TMP_REG1), src1, src1w)) in emit_op()
2363 …if ((flags & SLOW_DEST) && !can_cache(src1, src1w, src2, src2w) && can_cache(src1, src1w, dst, dst… in emit_op()
2364 FAIL_IF(getput_arg(compiler, flags | LOAD_DATA, DR(TMP_REG2), src2, src2w, src1, src1w)); in emit_op()
2365 FAIL_IF(getput_arg(compiler, flags | LOAD_DATA, DR(TMP_REG1), src1, src1w, dst, dstw)); in emit_op()
2368 FAIL_IF(getput_arg(compiler, flags | LOAD_DATA, DR(TMP_REG1), src1, src1w, src2, src2w)); in emit_op()
2373 FAIL_IF(getput_arg(compiler, flags | LOAD_DATA, DR(TMP_REG1), src1, src1w, dst, dstw)); in emit_op()
2563 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2() argument
2569 CHECK(check_sljit_emit_op2(compiler, op, 0, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
2571 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_op2()
2578 src1w = (sljit_s32)src1w; in sljit_emit_op2()
2588 return emit_op(compiler, op, flags | CUMULATIVE_OP | IMM_OP, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
2593 return emit_op(compiler, op, flags | IMM_OP, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
2597 return emit_op(compiler, op, flags | CUMULATIVE_OP, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
2600 if ((src1 == SLJIT_IMM && src1w == -1) || (src2 == SLJIT_IMM && src2w == -1)) { in sljit_emit_op2()
2601 … return emit_op(compiler, op, flags | CUMULATIVE_OP | IMM_OP, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
2606 …return emit_op(compiler, op, flags | CUMULATIVE_OP | LOGICAL_OP | IMM_OP, dst, dstw, src1, src1w, … in sljit_emit_op2()
2627 return emit_op(compiler, op, flags | IMM_OP, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
2635 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2u() argument
2639 CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w)); in sljit_emit_op2u()
2642 return sljit_emit_op2(compiler, op, 0, 0, src1, src1w, src2, src2w); in sljit_emit_op2u()
2653 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2r() argument
2657 CHECK(check_sljit_emit_op2r(compiler, op, dst_reg, src1, src1w, src2, src2w)); in sljit_emit_op2r()
2662 …FAIL_IF(sljit_emit_op2(compiler, SLJIT_MUL | (op & SLJIT_32), TMP_REG2, 0, src1, src1w, src2, src2… in sljit_emit_op2r()
3032 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp() argument
3038 …FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, FR(TMP_FREG1), src1, src1w, src2, src2w… in sljit_emit_fop1_cmp()
3132 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2() argument
3138 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
3140 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fop2()
3149 if (getput_arg_fast(compiler, FLOAT_DATA(op) | LOAD_DATA, FR(TMP_FREG1), src1, src1w)) { in sljit_emit_fop2()
3165 …if ((dst & SLJIT_MEM) && !can_cache(src1, src1w, src2, src2w) && can_cache(src1, src1w, dst, dstw)… in sljit_emit_fop2()
3166 …FAIL_IF(getput_arg(compiler, FLOAT_DATA(op) | LOAD_DATA, FR(TMP_FREG2), src2, src2w, src1, src1w)); in sljit_emit_fop2()
3167 FAIL_IF(getput_arg(compiler, FLOAT_DATA(op) | LOAD_DATA, FR(TMP_FREG1), src1, src1w, dst, dstw)); in sljit_emit_fop2()
3169 …FAIL_IF(getput_arg(compiler, FLOAT_DATA(op) | LOAD_DATA, FR(TMP_FREG1), src1, src1w, src2, src2w)); in sljit_emit_fop2()
3174 FAIL_IF(getput_arg(compiler, FLOAT_DATA(op) | LOAD_DATA, FR(TMP_FREG1), src1, src1w, dst, dstw)); in sljit_emit_fop2()
3383 if (src1w) { \
3384 PTR_FAIL_IF(load_immediate(compiler, DR(TMP_REG1), src1w)); \
3402 sljit_s32 src1, sljit_sw src1w, in sljit_emit_cmp() argument
3411 CHECK_PTR(check_sljit_emit_cmp(compiler, type, src1, src1w, src2, src2w)); in sljit_emit_cmp()
3412 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_cmp()
3424 PTR_FAIL_IF(emit_op_mem2(compiler, flags, DR(TMP_REG1), src1, src1w, src2, src2w)); in sljit_emit_cmp()
3445 …} else if (type >= SLJIT_SIG_LESS && ((src1 == SLJIT_IMM && src1w == 0) || (src2 == SLJIT_IMM && s… in sljit_emit_cmp()
3447 if (src1 == SLJIT_IMM && src1w == 0) { in sljit_emit_cmp()
3505 if (src1 == SLJIT_IMM && src1w <= SIMM_MAX && src1w >= SIMM_MIN) in sljit_emit_cmp()
3506 …er, (type <= SLJIT_LESS_EQUAL ? SLTIU : SLTI) | S(src2) | T(TMP_REG1) | IMM(src1w), DR(TMP_REG1))); in sljit_emit_cmp()
3736 sljit_s32 src1, sljit_sw src1w, in sljit_emit_select() argument
3753 CHECK(check_sljit_emit_select(compiler, type, dst_reg, src1, src1w, src2_reg)); in sljit_emit_select()
3754 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_select()
3758 FAIL_IF(emit_op_mem(compiler, inp_flags, DR(TMP_REG1), src1, src1w)); in sljit_emit_select()
3763 src1w = (sljit_s32)src1w; in sljit_emit_select()
3765 FAIL_IF(load_immediate(compiler, DR(TMP_REG1), src1w)); in sljit_emit_select()
3783 src1w = 0; in sljit_emit_select()
3805 FAIL_IF(emit_op_mem(compiler, inp_flags, DR(dst_reg), src1, src1w)); in sljit_emit_select()
3809 src1w = (sljit_s32)src1w; in sljit_emit_select()
3811 FAIL_IF(load_immediate(compiler, DR(dst_reg), src1w)); in sljit_emit_select()
3826 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fselect() argument
3835 CHECK(check_sljit_emit_fselect(compiler, type, dst_freg, src1, src1w, src2_freg)); in sljit_emit_fselect()
3837 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fselect()
3842 src1w = 0; in sljit_emit_fselect()
3850 FAIL_IF(emit_op_mem(compiler, FLOAT_DATA(type) | LOAD_DATA, FR(TMP_FREG2), src1, src1w)); in sljit_emit_fselect()
3862 FAIL_IF(emit_op_mem(compiler, FLOAT_DATA(type) | LOAD_DATA, FR(dst_freg), src1, src1w)); in sljit_emit_fselect()