Home | History | Annotate | Download | only in sljit

Lines Matching refs:dstw

1114 	sljit_s32 dst, sljit_sw dstw,
1121 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw));
1122 ADJUST_LOCAL_OFFSET(dst, dstw);
1199 return emit_op_mem(compiler, mem_flags | STORE, dst_r, dst, dstw, TMP_REG2);
1222 return emit_op_mem(compiler, mem_flags | STORE, dst_r, dst, dstw, TMP_REG2);
1227 sljit_s32 dst, sljit_sw dstw,
1234 CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
1235 ADJUST_LOCAL_OFFSET(dst, dstw);
1277 return emit_op_mem(compiler, mem_flags | STORE, dst_r, dst, dstw, TMP_REG2);
1356 sljit_s32 dst, sljit_sw dstw,
1373 return emit_op_mem(compiler, ((GET_OPCODE(op) == SLJIT_CONV_S32_FROM_F64) ? INT_SIZE : WORD_SIZE) | STORE, TMP_REG1, dst, dstw, TMP_REG2);
1378 sljit_s32 dst, sljit_sw dstw,
1402 return emit_fop_mem(compiler, ((op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE) | STORE, TMP_FREG1, dst, dstw);
1427 sljit_s32 dst, sljit_sw dstw,
1436 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw);
1467 return emit_fop_mem(compiler, mem_flags | STORE, dst_r, dst, dstw);
1472 sljit_s32 dst, sljit_sw dstw,
1480 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
1481 ADJUST_LOCAL_OFFSET(dst, dstw);
1512 return emit_fop_mem(compiler, mem_flags | STORE, TMP_FREG1, dst, dstw);
1519 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
1522 CHECK(check_sljit_emit_fast_enter(compiler, dst, dstw));
1523 ADJUST_LOCAL_OFFSET(dst, dstw);
1529 return emit_op_mem(compiler, WORD_SIZE | STORE, TMP_LR, dst, dstw, TMP_REG1);
1739 sljit_s32 dst, sljit_sw dstw,
1746 CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, type));
1747 ADJUST_LOCAL_OFFSET(dst, dstw);
1757 return emit_op_mem(compiler, mem_flags, TMP_REG1, dst, dstw, TMP_REG2);
1774 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG1, dst, dstw, TMP_REG1));
1782 return emit_op_mem(compiler, mem_flags | STORE, TMP_REG1, dst, dstw, TMP_REG2);
1889 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_local_base(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw offset)
1895 CHECK(check_sljit_get_local_base(compiler, dst, dstw, offset));
1925 return emit_op_mem(compiler, WORD_SIZE | STORE, dst_reg, dst, dstw, TMP_REG1);
1929 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
1935 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value));
1936 ADJUST_LOCAL_OFFSET(dst, dstw);
1946 PTR_FAIL_IF(emit_op_mem(compiler, WORD_SIZE | STORE, dst_r, dst, dstw, TMP_REG2));