Lines Matching refs:src2

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()
1790 if (src2 & SLJIT_IMM) in sljit_emit_op2()
1792 else if (src2 & SLJIT_MEM) { in sljit_emit_op2()
1794 emit_op_mem(compiler, WORD_SIZE, src2_reg, src2, src2w, src2_reg); in sljit_emit_op2()
1798 src2w = src2; 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 …return sljit_emit_op2(compiler, is_left ? SLJIT_ROTL : SLJIT_ROTR, src_dst, 0, src_dst, 0, src2, s… in sljit_emit_shift_into()
1837 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_shift_into()
1839 if (src2 & SLJIT_IMM) { in sljit_emit_shift_into()
1844 } else if (src2 & SLJIT_MEM) { 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()
1846 src2 = TMP_REG2; in sljit_emit_shift_into()
1857 if (src2 & SLJIT_IMM) { in sljit_emit_shift_into()
1868 FAIL_IF(push_inst32(compiler, ANDI | RD4(TMP_REG2) | RN4(src2) | 0x1f)); in sljit_emit_shift_into()
1869 src2 = TMP_REG2; in sljit_emit_shift_into()
1872 if (IS_2_LO_REGS(src_dst, src2)) in sljit_emit_shift_into()
1873 FAIL_IF(push_inst16(compiler, (is_left ? LSLS : LSRS) | RD3(src_dst) | RN3(src2))); in sljit_emit_shift_into()
1875 …FAIL_IF(push_inst32(compiler, (is_left ? LSL_W : LSR_W) | RD4(src_dst) | RN4(src_dst) | RM4(src2))… in sljit_emit_shift_into()
1878 FAIL_IF(push_inst32(compiler, EORI | RD4(TMP_REG2) | RN4(src2) | 0x1f)); in sljit_emit_shift_into()
2036 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp() argument
2045 if (src2 & SLJIT_MEM) { in sljit_emit_fop1_cmp()
2046 emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG2, src2, src2w); in sljit_emit_fop1_cmp()
2047 src2 = TMP_FREG2; in sljit_emit_fop1_cmp()
2050 FAIL_IF(push_inst32(compiler, VCMP_F32 | (op & SLJIT_32) | DD4(src1) | DM4(src2))); 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()
2121 if (src2 & SLJIT_MEM) { in sljit_emit_fop2()
2122 emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG2, src2, src2w); in sljit_emit_fop2()
2123 src2 = TMP_FREG2; in sljit_emit_fop2()
2128 FAIL_IF(push_inst32(compiler, VADD_F32 | (op & SLJIT_32) | DD4(dst_r) | DN4(src1) | DM4(src2))); in sljit_emit_fop2()
2131 FAIL_IF(push_inst32(compiler, VSUB_F32 | (op & SLJIT_32) | DD4(dst_r) | DN4(src1) | DM4(src2))); in sljit_emit_fop2()
2134 FAIL_IF(push_inst32(compiler, VMUL_F32 | (op & SLJIT_32) | DD4(dst_r) | DN4(src1) | DM4(src2))); in sljit_emit_fop2()
2137 FAIL_IF(push_inst32(compiler, VDIV_F32 | (op & SLJIT_32) | DD4(dst_r) | DN4(src1) | DM4(src2))); in sljit_emit_fop2()