Lines Matching refs:src1

1764 	sljit_s32 src1, sljit_sw src1w,  in sljit_emit_op2()  argument
1770 CHECK(check_sljit_emit_op2(compiler, op, 0, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1772 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_op2()
1781 if (src1 & SLJIT_IMM) in sljit_emit_op2()
1783 else if (src1 & SLJIT_MEM) { in sljit_emit_op2()
1784 emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src1, src1w, TMP_REG1); in sljit_emit_op2()
1788 src1w = src1; in sljit_emit_op2()
1808 sljit_s32 src1, sljit_sw src1w, 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()
1820 sljit_s32 src1, sljit_sw src1w, 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()
1831 if (src_dst == src1) { in sljit_emit_shift_into()
1836 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_shift_into()
1849 if (src1 & SLJIT_MEM) { in sljit_emit_shift_into()
1850 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src1, src1w, TMP_REG1)); in sljit_emit_shift_into()
1851 src1 = TMP_REG1; in sljit_emit_shift_into()
1852 } else if (src1 & SLJIT_IMM) { in sljit_emit_shift_into()
1854 src1 = TMP_REG1; in sljit_emit_shift_into()
1864 …return push_inst32(compiler, ORR_W | RD4(src_dst) | RN4(src_dst) | RM4(src1) | (is_left ? 0x10 : 0… in sljit_emit_shift_into()
1877 FAIL_IF(push_inst32(compiler, (is_left ? LSR_WI : LSL_WI) | RD4(TMP_REG1) | RM4(src1) | (1 << 6))); in sljit_emit_shift_into()
2035 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp() argument
2040 if (src1 & SLJIT_MEM) { in sljit_emit_fop1_cmp()
2041 emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG1, src1, src1w); in sljit_emit_fop1_cmp()
2042 src1 = TMP_FREG1; 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()
2103 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2() argument
2109 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
2111 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fop2()
2117 if (src1 & SLJIT_MEM) { in sljit_emit_fop2()
2118 emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG1, src1, src1w); in sljit_emit_fop2()
2119 src1 = TMP_FREG1; 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()