Lines Matching refs:src2_reg
1552 sljit_s32 src2_reg; in emit_op() local
1561 src2_reg = 0; in emit_op()
1568 src2_reg = get_imm(src2w); in emit_op()
1569 if (src2_reg) in emit_op()
1572 src2_reg = get_imm(~src2w); in emit_op()
1573 if (src2_reg) { in emit_op()
1579 src2_reg = get_imm(-src2w); in emit_op()
1580 if (src2_reg) { in emit_op()
1586 src2_reg = get_imm(-src2w); in emit_op()
1587 if (src2_reg) { in emit_op()
1595 src2_reg = get_imm(src1w); in emit_op()
1596 if (src2_reg) { in emit_op()
1603 src2_reg = get_imm(~src1w); in emit_op()
1604 if (src2_reg) { in emit_op()
1612 src2_reg = get_imm(-src1w); in emit_op()
1613 if (src2_reg) { in emit_op()
1653 if (src2_reg == 0) { in emit_op()
1654 src2_reg = (op <= SLJIT_MOV_P) ? dst_reg : TMP_REG2; in emit_op()
1657 src2_reg = src2; in emit_op()
1659 FAIL_IF(emit_op_mem(compiler, inp_flags | LOAD_DATA, src2_reg, src2, src2w, TMP_REG2)); in emit_op()
1661 FAIL_IF(load_immediate(compiler, src2_reg, src2w)); in emit_op()
1664 FAIL_IF(emit_single_op(compiler, op, flags, dst_reg, src1_reg, src2_reg)); in emit_op()