Lines Matching refs:dstw

1916 	sljit_s32 dst, sljit_sw dstw,  in sljit_emit_op1()  argument
1922 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw)); in sljit_emit_op1()
1923 ADJUST_LOCAL_OFFSET(dst, dstw); in sljit_emit_op1()
1976 return emit_op_mem(compiler, flags | STORE, dst_r, dst, dstw, TMP_REG1); in sljit_emit_op1()
1996 return emit_op_mem(compiler, flags | STORE, dst_r, dst, dstw, TMP_REG1); in sljit_emit_op1()
2001 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op2() argument
2008 CHECK(check_sljit_emit_op2(compiler, op, 0, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
2009 ADJUST_LOCAL_OFFSET(dst, dstw); in sljit_emit_op2()
2040 return emit_op_mem(compiler, WORD_SIZE | STORE, dst_reg, dst, dstw, TMP_REG1); in sljit_emit_op2()
2158 sljit_s32 dst, sljit_sw dstw) in sljit_emit_op_dst() argument
2163 CHECK(check_sljit_emit_op_dst(compiler, op, dst, dstw)); in sljit_emit_op_dst()
2164 ADJUST_LOCAL_OFFSET(dst, dstw); in sljit_emit_op_dst()
2192 return emit_op_mem(compiler, WORD_SIZE | STORE, TMP_REG2, dst, dstw, TMP_REG1); in sljit_emit_op_dst()
2278 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_sw_from_f64() argument
2294 return emit_fop_mem(compiler, 0, TMP_FREG1, dst, dstw); in sljit_emit_fop1_conv_sw_from_f64()
2298 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_w() argument
2317 return emit_fop_mem(compiler, (ins & SLJIT_32), TMP_FREG1, dst, dstw); in sljit_emit_fop1_conv_f64_from_w()
2322 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_sw() argument
2325 …return sljit_emit_fop1_conv_f64_from_w(compiler, VCVT_F32_S32 | (~op & SLJIT_32), dst, dstw, src, … in sljit_emit_fop1_conv_f64_from_sw()
2329 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_uw() argument
2332 …return sljit_emit_fop1_conv_f64_from_w(compiler, VCVT_F32_U32 | (~op & SLJIT_32), dst, dstw, src, … in sljit_emit_fop1_conv_f64_from_uw()
2362 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1() argument
2370 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1()
2404 return emit_fop_mem(compiler, (op & SLJIT_32), dst_r, dst, dstw); in sljit_emit_fop1()
2409 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop2() argument
2416 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
2417 ADJUST_LOCAL_OFFSET(dst, dstw); in sljit_emit_fop2()
2456 return emit_fop_mem(compiler, (op & SLJIT_32), TMP_FREG1, dst, dstw); in sljit_emit_fop2()
3055 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op_flags() argument
3062 CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, type)); in sljit_emit_op_flags()
3063 ADJUST_LOCAL_OFFSET(dst, dstw); in sljit_emit_op_flags()
3081 return emit_op_mem(compiler, WORD_SIZE | STORE, TMP_REG1, dst, dstw, TMP_REG2); in sljit_emit_op_flags()
3085 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, dst, dstw, TMP_REG2)); in sljit_emit_op_flags()
3098 FAIL_IF(emit_op_mem(compiler, WORD_SIZE | STORE, TMP_REG1, dst, dstw, TMP_REG2)); in sljit_emit_op_flags()
4070 sljit_s32 dst, sljit_sw dstw) in sljit_emit_simd_sign() argument
4078 CHECK(check_sljit_emit_simd_sign(compiler, type, freg, dst, dstw)); in sljit_emit_simd_sign()
4080 ADJUST_LOCAL_OFFSET(dst, dstw); in sljit_emit_simd_sign()
4140 return emit_op_mem(compiler, STORE | WORD_SIZE, TMP_REG1, dst, dstw, TMP_REG2); in sljit_emit_simd_sign()
4244 …sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_valu… in sljit_emit_const() argument
4250 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); in sljit_emit_const()
4251 ADJUST_LOCAL_OFFSET(dst, dstw); in sljit_emit_const()
4261 PTR_FAIL_IF(emit_op_mem(compiler, WORD_SIZE | STORE, dst_r, dst, dstw, TMP_REG2)); in sljit_emit_const()
4265 …ruct sljit_jump* sljit_emit_mov_addr(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw) in sljit_emit_mov_addr() argument
4271 CHECK_PTR(check_sljit_emit_mov_addr(compiler, dst, dstw)); in sljit_emit_mov_addr()
4272 ADJUST_LOCAL_OFFSET(dst, dstw); in sljit_emit_mov_addr()
4283 PTR_FAIL_IF(emit_op_mem(compiler, WORD_SIZE | STORE, dst_r, dst, dstw, TMP_REG2)); in sljit_emit_mov_addr()