Lines Matching refs:sljit_s32

399 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins)  in push_inst()
657 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler, sljit_s32 optio… in sljit_generate_code()
789 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type) in sljit_has_cpu_feature()
824 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_cmp_info(sljit_s32 type) in sljit_cmp_info()
868 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst_r, sljit_sw imm) in load_immediate()
889 static sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit…
891 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter()
892 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_emit_enter()
893 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_emit_enter()
895 sljit_s32 i, tmp, offset; in sljit_emit_enter()
896 sljit_s32 saved_arg_count = SLJIT_KEPT_SAVEDS_COUNT(options); in sljit_emit_enter()
975 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler, in sljit_set_context()
976 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context()
977 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_set_context()
993 static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler, sljit_s32 is_return_to) in emit_stack_frame_release()
995 sljit_s32 i, tmp, offset; in emit_stack_frame_release()
996 sljit_s32 local_size = compiler->local_size; in emit_stack_frame_release()
1043 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return_void(struct sljit_compiler *compiler) in sljit_emit_return_void()
1052 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return_to(struct sljit_compiler *compiler, in sljit_emit_return_to()
1053 sljit_s32 src, sljit_sw srcw) in sljit_emit_return_to()
1129 static sljit_s32 push_mem_inst(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, slj… in push_mem_inst()
1132 sljit_s32 base = arg & REG_MASK; in push_mem_inst()
1137 sljit_s32 offs = OFFS_REG(arg); in push_mem_inst()
1154 static sljit_s32 getput_arg_fast(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, s… in getput_arg_fast()
1175 static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw) in can_cache()
1193 static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_… in getput_arg()
1195 sljit_s32 base = arg & REG_MASK; in getput_arg()
1196 sljit_s32 tmp_r = (flags & MEM_USE_TMP2) ? TMP_REG2 : TMP_REG1; in getput_arg()
1250 static sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit… in emit_op_mem()
1252 sljit_s32 base = arg & REG_MASK; in emit_op_mem()
1253 sljit_s32 tmp_r = TMP_REG1; in emit_op_mem()
1276 …LJIT_INLINE sljit_s32 emit_op_mem2(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg… in emit_op_mem2()
1313 static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s… in emit_single_op()
1314 sljit_s32 dst, sljit_s32 src1, sljit_sw src2) in emit_single_op()
1316 sljit_s32 is_overflow, is_carry, carry_src_r, is_handled, reg; in emit_single_op()
1428 carry_src_r = (sljit_s32)src1; in emit_single_op()
1430 carry_src_r = (sljit_s32)src2; in emit_single_op()
1467 carry_src_r = (sljit_s32)src1; in emit_single_op()
1469 carry_src_r = (sljit_s32)src2; in emit_single_op()
1733 static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 flags, in emit_op()
1734 sljit_s32 dst, sljit_sw dstw, in emit_op()
1735 sljit_s32 src1, sljit_sw src1w, in emit_op()
1736 sljit_s32 src2, sljit_sw src2w) in emit_op()
1742 sljit_s32 dst_r = TMP_REG2; in emit_op()
1743 sljit_s32 src1_r; in emit_op()
1745sljit_s32 src2_tmp_reg = (GET_OPCODE(op) >= SLJIT_OP2_BASE && FAST_IS_REG(src1)) ? TMP_REG1 : TMP_… in emit_op()
1804 dst_r = (sljit_s32)src2_r; in emit_op()
1857 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op) in sljit_emit_op0()
1896 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op1()
1897 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op1()
1898 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1()
1900 sljit_s32 flags = 0; in sljit_emit_op1()
1921 …| SIGNED_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, (src == SLJIT_IMM) ? (sljit_s32)srcw : srcw); in sljit_emit_op1()
1953 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op2()
1954 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op2()
1955 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2()
1956 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2()
1958 sljit_s32 flags = 0; in sljit_emit_op2()
1969 src1w = (sljit_s32)src1w; in sljit_emit_op2()
1971 src2w = (sljit_s32)src2w; in sljit_emit_op2()
2017 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2u(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op2u()
2018 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2u()
2019 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2u()
2028 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2r(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op2r()
2029 sljit_s32 dst_reg, in sljit_emit_op2r()
2030 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2r()
2031 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2r()
2046 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_shift_into(struct sljit_compiler *compiler, sljit_s32 in sljit_emit_shift_into()
2047 sljit_s32 dst_reg, in sljit_emit_shift_into()
2048 sljit_s32 src1_reg, in sljit_emit_shift_into()
2049 sljit_s32 src2_reg, in sljit_emit_shift_into()
2050 sljit_s32 src3, sljit_sw src3w) in sljit_emit_shift_into()
2052 sljit_s32 is_left; in sljit_emit_shift_into()
2054 sljit_s32 inp_flags = ((op & SLJIT_32) ? INT_DATA : WORD_DATA) | LOAD_DATA; in sljit_emit_shift_into()
2122 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_src(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op_src()
2123 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src()
2125 sljit_s32 base = src & REG_MASK; in sljit_emit_op_src()
2163 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_dst(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op_dst()
2164 sljit_s32 dst, sljit_sw dstw) in sljit_emit_op_dst()
2166 sljit_s32 dst_r; in sljit_emit_op_dst()
2191 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 type, sljit_s32 reg) in sljit_get_register_index()
2204 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler, in sljit_emit_op_custom()
2239 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_conv_sw_from_f64(struct sljit_compiler *compiler, slj… in sljit_emit_fop1_conv_sw_from_f64()
2240 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_sw_from_f64()
2241 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64()
2245 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG2; in sljit_emit_fop1_conv_sw_from_f64()
2274 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_conv_f64_from_w(struct sljit_compiler *compiler, slji… in sljit_emit_fop1_conv_f64_from_w()
2275 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_w()
2276 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_w()
2280 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_w()
2301 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_w()
2314 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_conv_f64_from_sw(struct sljit_compiler *compiler, slj… in sljit_emit_fop1_conv_f64_from_sw()
2315 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_sw()
2316 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw()
2321 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_conv_f64_from_uw(struct sljit_compiler *compiler, slj… in sljit_emit_fop1_conv_f64_from_uw()
2322 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_uw()
2323 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_uw()
2327 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_uw()
2375 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1_cmp()
2376 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp()
2377 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp()
2419 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1()
2420 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1()
2421 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1()
2423 sljit_s32 dst_r; in sljit_emit_fop1()
2469 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop2()
2470 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop2()
2471 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2()
2472 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2()
2474 sljit_s32 dst_r, flags = 0; in sljit_emit_fop2()
2542 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2r(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop2r()
2543 sljit_s32 dst_freg, in sljit_emit_fop2r()
2544 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2r()
2545 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2r()
2547 sljit_s32 reg; in sljit_emit_fop2r()
2568 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fset32(struct sljit_compiler *compiler, in sljit_emit_fset32()
2569 sljit_s32 freg, sljit_f32 value) in sljit_emit_fset32()
2572 sljit_s32 imm; in sljit_emit_fset32()
2588 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fset64(struct sljit_compiler *compiler, in sljit_emit_fset64()
2589 sljit_s32 freg, sljit_f64 value) in sljit_emit_fset64()
2608 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fcopy(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fcopy()
2609 sljit_s32 freg, sljit_s32 reg) in sljit_emit_fcopy()
2643 static sljit_ins get_jump_instruction(sljit_s32 type) in get_jump_instruction()
2694 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type) in sljit_emit_jump()
2729 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_call()
2730 sljit_s32 arg_types) in sljit_emit_call()
2745 …I_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_cmp()
2746 sljit_s32 src1, sljit_sw src1w, in sljit_emit_cmp()
2747 sljit_s32 src2, sljit_sw src2w) in sljit_emit_cmp()
2750 sljit_s32 flags; in sljit_emit_cmp()
2752 sljit_s32 src2_tmp_reg = FAST_IS_REG(src1) ? TMP_REG1 : TMP_REG2; in sljit_emit_cmp()
2844 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type… in sljit_emit_ijump()
2875 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_icall()
2876 sljit_s32 arg_types, in sljit_emit_icall()
2877 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall()
2903 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 o… in sljit_emit_op_flags()
2904 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op_flags()
2905 sljit_s32 type) in sljit_emit_op_flags()
2907 sljit_s32 src_r, dst_r, invert; in sljit_emit_op_flags()
2908 sljit_s32 saved_op = op; in sljit_emit_op_flags()
2909 sljit_s32 mem_type = ((op & SLJIT_32) || op == SLJIT_MOV32) ? (INT_DATA | SIGNED_DATA) : WORD_DATA; in sljit_emit_op_flags()
2992 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_select(struct sljit_compiler *compiler, sljit_s32 typ… in sljit_emit_select()
2993 sljit_s32 dst_reg, in sljit_emit_select()
2994 sljit_s32 src1, sljit_sw src1w, in sljit_emit_select()
2995 sljit_s32 src2_reg) in sljit_emit_select()
2999 sljit_s32 inp_flags = ((type & SLJIT_32) ? INT_DATA : WORD_DATA) | LOAD_DATA; in sljit_emit_select()
3035 src1w = (sljit_s32)src1w; in sljit_emit_select()
3044 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fselect(struct sljit_compiler *compiler, sljit_s32 ty… in sljit_emit_fselect()
3045 sljit_s32 dst_freg, in sljit_emit_fselect()
3046 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fselect()
3047 sljit_s32 src2_freg) in sljit_emit_fselect()
3049 sljit_s32 invert = 0; in sljit_emit_fselect()
3080 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_mem()
3081 sljit_s32 reg, in sljit_emit_mem()
3082 sljit_s32 mem, sljit_sw memw) in sljit_emit_mem()
3084 sljit_s32 flags; in sljit_emit_mem()
3136 static sljit_s32 sljit_emit_simd_mem_offset(struct sljit_compiler *compiler, sljit_s32 *mem_ptr, sl… in sljit_emit_simd_mem_offset()
3138 sljit_s32 mem = *mem_ptr; in sljit_emit_simd_mem_offset()
3164 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_simd_mov(struct sljit_compiler *compiler, sljit_s32 t… in sljit_emit_simd_mov()
3165 sljit_s32 freg, in sljit_emit_simd_mov()
3166 sljit_s32 srcdst, sljit_sw srcdstw) in sljit_emit_simd_mov()
3168 sljit_s32 reg_size = SLJIT_SIMD_GET_REG_SIZE(type); in sljit_emit_simd_mov()
3212 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_simd_replicate(struct sljit_compiler *compiler, sljit… in sljit_emit_simd_replicate()
3213 sljit_s32 freg, in sljit_emit_simd_replicate()
3214 sljit_s32 src, sljit_sw srcw) in sljit_emit_simd_replicate()
3216 sljit_s32 reg_size = SLJIT_SIMD_GET_REG_SIZE(type); in sljit_emit_simd_replicate()
3217 sljit_s32 elem_size = SLJIT_SIMD_GET_ELEM_SIZE(type); in sljit_emit_simd_replicate()
3270 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_simd_lane_mov(struct sljit_compiler *compiler, sljit_… in sljit_emit_simd_lane_mov()
3271 sljit_s32 freg, sljit_s32 lane_index, in sljit_emit_simd_lane_mov()
3272 sljit_s32 srcdst, sljit_sw srcdstw) in sljit_emit_simd_lane_mov()
3274 sljit_s32 reg_size = SLJIT_SIMD_GET_REG_SIZE(type); in sljit_emit_simd_lane_mov()
3275 sljit_s32 elem_size = SLJIT_SIMD_GET_ELEM_SIZE(type); in sljit_emit_simd_lane_mov()
3411 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_simd_lane_replicate(struct sljit_compiler *compiler, in sljit_emit_simd_lane_replicate()
3412 sljit_s32 freg, in sljit_emit_simd_lane_replicate()
3413 sljit_s32 src, sljit_s32 src_lane_index) in sljit_emit_simd_lane_replicate()
3415 sljit_s32 reg_size = SLJIT_SIMD_GET_REG_SIZE(type); in sljit_emit_simd_lane_replicate()
3416 sljit_s32 elem_size = SLJIT_SIMD_GET_ELEM_SIZE(type); in sljit_emit_simd_lane_replicate()
3444 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_simd_extend(struct sljit_compiler *compiler, sljit_s3… in sljit_emit_simd_extend()
3445 sljit_s32 freg, in sljit_emit_simd_extend()
3446 sljit_s32 src, sljit_sw srcw) in sljit_emit_simd_extend()
3448 sljit_s32 reg_size = SLJIT_SIMD_GET_REG_SIZE(type); in sljit_emit_simd_extend()
3449 sljit_s32 elem_size = SLJIT_SIMD_GET_ELEM_SIZE(type); in sljit_emit_simd_extend()
3450 sljit_s32 elem2_size = SLJIT_SIMD_GET_ELEM2_SIZE(type); in sljit_emit_simd_extend()
3511 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_simd_sign(struct sljit_compiler *compiler, sljit_s32 in sljit_emit_simd_sign()
3512 sljit_s32 freg, in sljit_emit_simd_sign()
3513 sljit_s32 dst, sljit_sw dstw) in sljit_emit_simd_sign()
3515 sljit_s32 reg_size = SLJIT_SIMD_GET_REG_SIZE(type); in sljit_emit_simd_sign()
3516 sljit_s32 elem_size = SLJIT_SIMD_GET_ELEM_SIZE(type); in sljit_emit_simd_sign()
3518 sljit_s32 dst_r; in sljit_emit_simd_sign()
3558 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_simd_op2(struct sljit_compiler *compiler, sljit_s32 t… in sljit_emit_simd_op2()
3559 sljit_s32 dst_freg, sljit_s32 src1_freg, sljit_s32 src2_freg) in sljit_emit_simd_op2()
3561 sljit_s32 reg_size = SLJIT_SIMD_GET_REG_SIZE(type); in sljit_emit_simd_op2()
3562 sljit_s32 elem_size = SLJIT_SIMD_GET_ELEM_SIZE(type); in sljit_emit_simd_op2()
3598 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_atomic_load(struct sljit_compiler *compiler, in sljit_emit_atomic_load()
3599 sljit_s32 op, in sljit_emit_atomic_load()
3600 sljit_s32 dst_reg, in sljit_emit_atomic_load()
3601 sljit_s32 mem_reg) in sljit_emit_atomic_load()
3629 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_atomic_store(struct sljit_compiler *compiler, in sljit_emit_atomic_store()
3630 sljit_s32 op, in sljit_emit_atomic_store()
3631 sljit_s32 src_reg, in sljit_emit_atomic_store()
3632 sljit_s32 mem_reg, in sljit_emit_atomic_store()
3633 sljit_s32 temp_reg) in sljit_emit_atomic_store()
3637 sljit_s32 tmp = temp_reg; in sljit_emit_atomic_store()
3678 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw i… in emit_const()
3716 …E struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_const()
3719 sljit_s32 dst_r; in sljit_emit_const()
3738 …struct sljit_jump* sljit_emit_mov_addr(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_mov_addr()
3741 sljit_s32 dst_r; in sljit_emit_mov_addr()