Lines Matching refs:src1w

1674 	sljit_s32 src1, sljit_sw src1w,  in sljit_emit_op2()  argument
1680 CHECK(check_sljit_emit_op2(compiler, op, 0, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1682 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_op2()
1698 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG1, src1, src1w, TMP_REG1)); in sljit_emit_op2()
1710 src1w = src1; in sljit_emit_op2()
1717 emit_op_imm(compiler, flags | GET_OPCODE(op), dst_r, src1w, src2w); in sljit_emit_op2()
1725 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2u() argument
1729 CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w)); in sljit_emit_op2u()
1732 return sljit_emit_op2(compiler, op, TMP_REG2, 0, src1, src1w, src2, src2w); in sljit_emit_op2u()
1737 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2r() argument
1741 CHECK(check_sljit_emit_op2r(compiler, op, dst_reg, src1, src1w, src2, src2w)); in sljit_emit_op2r()
1746 return sljit_emit_op2(compiler, op, dst_reg, 0, src1, src1w, src2, src2w); in sljit_emit_op2r()
2039 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp() argument
2046 FAIL_IF(emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w)); in sljit_emit_fop1_cmp()
2111 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2() argument
2118 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
2120 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fop2()
2125 FAIL_IF(emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w)); in sljit_emit_fop2()
2527 sljit_s32 src1, sljit_sw src1w, in sljit_emit_select() argument
2534 CHECK(check_sljit_emit_select(compiler, type, dst_reg, src1, src1w, src2_reg)); in sljit_emit_select()
2536 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_select()
2540 src1w = (sljit_s32)src1w; in sljit_emit_select()
2541 FAIL_IF(load_immediate(compiler, TMP_REG2, src1w)); in sljit_emit_select()
2544 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG2, src1, src1w, TMP_REG2)); in sljit_emit_select()
2554 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fselect() argument
2561 CHECK(check_sljit_emit_fselect(compiler, type, dst_freg, src1, src1w, src2_freg)); in sljit_emit_fselect()
2563 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fselect()
2566 FAIL_IF(emit_fop_mem(compiler, (type & SLJIT_32) ? INT_SIZE : WORD_SIZE, TMP_FREG2, src1, src1w)); in sljit_emit_fselect()