Lines Matching refs:src2_reg
1557 sljit_s32 src2_reg; in emit_op() local
1566 src2_reg = 0; in emit_op()
1573 src2_reg = get_imm(src2w); in emit_op()
1574 if (src2_reg) in emit_op()
1577 src2_reg = get_imm(~src2w); in emit_op()
1578 if (src2_reg) { in emit_op()
1584 src2_reg = get_imm(-src2w); in emit_op()
1585 if (src2_reg) { in emit_op()
1591 src2_reg = get_imm(-src2w); in emit_op()
1592 if (src2_reg) { in emit_op()
1600 src2_reg = get_imm(src1w); in emit_op()
1601 if (src2_reg) { in emit_op()
1608 src2_reg = get_imm(~src1w); in emit_op()
1609 if (src2_reg) { in emit_op()
1617 src2_reg = get_imm(-src1w); in emit_op()
1618 if (src2_reg) { in emit_op()
1658 if (src2_reg == 0) { in emit_op()
1659 src2_reg = (op <= SLJIT_MOV_P) ? dst_reg : TMP_REG2; in emit_op()
1662 src2_reg = src2; in emit_op()
1664 FAIL_IF(emit_op_mem(compiler, inp_flags | LOAD_DATA, src2_reg, src2, src2w, TMP_REG2)); in emit_op()
1666 FAIL_IF(load_immediate(compiler, src2_reg, src2w)); in emit_op()
1669 FAIL_IF(emit_single_op(compiler, op, flags, dst_reg, src1_reg, src2_reg)); in emit_op()