Lines Matching refs:srcw

914 	sljit_s32 src, sljit_sw srcw)  in sljit_emit_return_to()  argument
917 CHECK(check_sljit_emit_return_to(compiler, src, srcw)); in sljit_emit_return_to()
920 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_return_to()
921 FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, TMP_REG1, src, srcw)); in sljit_emit_return_to()
923 srcw = 0; in sljit_emit_return_to()
927 srcw = 0; in sljit_emit_return_to()
933 return sljit_emit_ijump(compiler, SLJIT_JUMP, src, srcw); in sljit_emit_return_to()
1894 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1() argument
1899 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw)); in sljit_emit_op1()
1901 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op1()
1916 return emit_op(compiler, SLJIT_MOV, WORD_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, srcw); in sljit_emit_op1()
1920 …U32, INT_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, (src == SLJIT_IMM) ? (sljit_u32)srcw : srcw); in sljit_emit_op1()
1925 …| SIGNED_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, (src == SLJIT_IMM) ? (sljit_s32)srcw : srcw); in sljit_emit_op1()
1929 … op, BYTE_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, (src == SLJIT_IMM) ? (sljit_u8)srcw : srcw); in sljit_emit_op1()
1932 … | SIGNED_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, (src == SLJIT_IMM) ? (sljit_s8)srcw : srcw); in sljit_emit_op1()
1935 …op, HALF_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, (src == SLJIT_IMM) ? (sljit_u16)srcw : srcw); in sljit_emit_op1()
1938 …| SIGNED_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, (src == SLJIT_IMM) ? (sljit_s16)srcw : srcw); in sljit_emit_op1()
1943 return emit_op(compiler, op, flags, dst, dstw, TMP_ZERO, 0, src, srcw); in sljit_emit_op1()
1947 return emit_op(compiler, op, HALF_DATA, dst, dstw, TMP_ZERO, 0, src, srcw); in sljit_emit_op1()
1951 return emit_op(compiler, op | SLJIT_32, INT_DATA, dst, dstw, TMP_ZERO, 0, src, srcw); in sljit_emit_op1()
2146 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src() argument
2149 CHECK(check_sljit_emit_op_src(compiler, op, src, srcw)); in sljit_emit_op_src()
2150 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op_src()
2157 FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, RETURN_ADDR_REG, src, srcw)); in sljit_emit_op_src()
2233 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64() argument
2243 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG1, src, srcw, dst, dstw)); in sljit_emit_fop1_conv_sw_from_f64()
2266 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_w() argument
2272 FAIL_IF(emit_op_mem2(compiler, WORD_DATA | LOAD_DATA, TMP_REG1, src, srcw, dst, dstw)); in sljit_emit_fop1_conv_f64_from_w()
2274 …compiler, ((ins & (1 << 21)) ? WORD_DATA : INT_DATA) | LOAD_DATA, TMP_REG1, src, srcw, dst, dstw)); in sljit_emit_fop1_conv_f64_from_w()
2278 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw, TMP_REG3)); in sljit_emit_fop1_conv_f64_from_w()
2291 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw() argument
2302 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_sw()
2308 return sljit_emit_fop1_conv_f64_from_w(compiler, ins, dst, dstw, src, srcw); in sljit_emit_fop1_conv_f64_from_sw()
2313 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_uw() argument
2324 srcw = (sljit_u32)srcw; in sljit_emit_fop1_conv_f64_from_uw()
2330 return sljit_emit_fop1_conv_f64_from_w(compiler, ins, dst, dstw, src, srcw); in sljit_emit_fop1_conv_f64_from_uw()
2389 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1() argument
2398 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1()
2406 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, dst_r, src, srcw, dst, dstw)); in sljit_emit_fop1()
2762 …s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw) in sljit_emit_ijump() argument
2767 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_ijump()
2771 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_ijump()
2772 FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, TMP_REG1, src, srcw)); in sljit_emit_ijump()
2782 jump->u.target = (sljit_uw)srcw; in sljit_emit_ijump()
2794 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall() argument
2798 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
2801 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_icall()
2802 FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, TMP_REG1, src, srcw)); in sljit_emit_icall()
2817 return sljit_emit_ijump(compiler, type, src, srcw); in sljit_emit_icall()