Lines Matching refs:dstw
1287 sljit_s32 dst, sljit_sw dstw,
1294 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw));
1295 ADJUST_LOCAL_OFFSET(dst, dstw);
1386 FAIL_IF(getput_arg(compiler, flags, dst_r, src, srcw, dst, dstw));
1394 if (getput_arg_fast(compiler, flags | STORE, dst_r, dst, dstw))
1397 return getput_arg(compiler, flags | STORE, dst_r, dst, dstw, 0, 0);
1416 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src, srcw, dst, dstw));
1430 if (getput_arg_fast(compiler, mem_flags | STORE, dst_r, dst, dstw))
1433 return getput_arg(compiler, mem_flags | STORE, dst_r, dst, dstw, 0, 0);
1439 sljit_s32 dst, sljit_sw dstw,
1446 CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
1447 ADJUST_LOCAL_OFFSET(dst, dstw);
1465 if ((dst & SLJIT_MEM) && !getput_arg_fast(compiler, mem_flags | STORE | ARG_TEST, TMP_REG1, dst, dstw))
1482 if (!can_cache(src1, src1w, src2, src2w) && can_cache(src1, src1w, dst, dstw)) {
1484 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG1, src1, src1w, dst, dstw));
1488 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src2, src2w, dst, dstw));
1492 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG1, src1, src1w, dst, dstw));
1494 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src2, src2w, dst, dstw));
1514 getput_arg_fast(compiler, mem_flags | STORE, dst_r, dst, dstw);
1517 return getput_arg(compiler, mem_flags | STORE, TMP_REG1, dst, dstw, 0, 0);
1612 sljit_s32 dst, sljit_sw dstw,
1629 return emit_op_mem(compiler, ((GET_OPCODE(op) == SLJIT_CONV_S32_FROM_F64) ? INT_SIZE : WORD_SIZE) | STORE, TMP_REG1, dst, dstw);
1634 sljit_s32 dst, sljit_sw dstw,
1658 return emit_fop_mem(compiler, ((op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE) | STORE, TMP_FREG1, dst, dstw);
1683 sljit_s32 dst, sljit_sw dstw,
1694 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw);
1725 return emit_fop_mem(compiler, mem_flags | STORE, dst_r, dst, dstw);
1730 sljit_s32 dst, sljit_sw dstw,
1738 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
1739 ADJUST_LOCAL_OFFSET(dst, dstw);
1773 return emit_fop_mem(compiler, mem_flags | STORE, TMP_FREG1, dst, dstw);
1780 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
1783 CHECK(check_sljit_emit_fast_enter(compiler, dst, dstw));
1784 ADJUST_LOCAL_OFFSET(dst, dstw);
1794 return emit_op_mem(compiler, WORD_SIZE | STORE, TMP_LR, dst, dstw);
1976 sljit_s32 dst, sljit_sw dstw,
1984 CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, src, srcw, type));
1985 ADJUST_LOCAL_OFFSET(dst, dstw);
1998 return emit_op_mem(compiler, (GET_OPCODE(op) == SLJIT_MOV ? WORD_SIZE : INT_SIZE) | STORE, TMP_REG1, dst, dstw);
2011 FAIL_IF(emit_op_mem2(compiler, mem_flags, TMP_REG1, src, srcw, dst, dstw));
2022 return emit_op_mem2(compiler, mem_flags | STORE, TMP_REG1, dst, dstw, 0, 0);
2025 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
2031 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value));
2032 ADJUST_LOCAL_OFFSET(dst, dstw);
2042 PTR_FAIL_IF(emit_op_mem(compiler, WORD_SIZE | STORE, dst_r, dst, dstw));