Lines Matching refs:srcw

1053 	sljit_s32 src, sljit_sw srcw)  in sljit_emit_return_to()  argument
1056 CHECK(check_sljit_emit_return_to(compiler, src, srcw)); in sljit_emit_return_to()
1059 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_return_to()
1060 FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, TMP_REG1, src, srcw)); in sljit_emit_return_to()
1062 srcw = 0; in sljit_emit_return_to()
1066 srcw = 0; in sljit_emit_return_to()
1072 return sljit_emit_ijump(compiler, SLJIT_JUMP, src, srcw); in sljit_emit_return_to()
1898 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1() argument
1903 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw)); in sljit_emit_op1()
1905 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op1()
1913 return emit_op(compiler, SLJIT_MOV, WORD_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, srcw); in sljit_emit_op1()
1916 …U32, INT_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, (src == SLJIT_IMM) ? (sljit_u32)srcw : srcw); 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()
1924 … op, BYTE_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, (src == SLJIT_IMM) ? (sljit_u8)srcw : srcw); in sljit_emit_op1()
1927 … | SIGNED_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, (src == SLJIT_IMM) ? (sljit_s8)srcw : srcw); in sljit_emit_op1()
1930 …op, HALF_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, (src == SLJIT_IMM) ? (sljit_u16)srcw : srcw); in sljit_emit_op1()
1933 …| SIGNED_DATA | MOVE_OP, dst, dstw, TMP_ZERO, 0, src, (src == SLJIT_IMM) ? (sljit_s16)srcw : srcw); in sljit_emit_op1()
1938 return emit_op(compiler, op, flags, dst, dstw, TMP_ZERO, 0, src, srcw); in sljit_emit_op1()
1942 return emit_op(compiler, op, HALF_DATA, dst, dstw, TMP_ZERO, 0, src, srcw); in sljit_emit_op1()
1946 return emit_op(compiler, op | SLJIT_32, INT_DATA, dst, dstw, TMP_ZERO, 0, src, srcw); in sljit_emit_op1()
2123 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src() argument
2128 CHECK(check_sljit_emit_op_src(compiler, op, src, srcw)); in sljit_emit_op_src()
2129 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op_src()
2136 FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, RETURN_ADDR_REG, src, srcw)); in sljit_emit_op_src()
2146 srcw &= 0x3; in sljit_emit_op_src()
2147 if (SLJIT_UNLIKELY(srcw)) in sljit_emit_op_src()
2148 FAIL_IF(push_inst(compiler, SLLI_D | RD(TMP_REG1) | RJ(OFFS_REG(src)) | IMM_I12(srcw))); in sljit_emit_op_src()
2151 if (base && srcw <= I12_MAX && srcw >= I12_MIN) in sljit_emit_op_src()
2152 return push_inst(compiler,PRELD | RJ(base) | IMM_I12(srcw)); in sljit_emit_op_src()
2154 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in sljit_emit_op_src()
2241 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64() argument
2262 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()
2276 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_w() argument
2297 …op_mem2(compiler, (word_data ? WORD_DATA : INT_DATA) | LOAD_DATA, TMP_REG1, src, srcw, dst, dstw)); in sljit_emit_fop1_conv_f64_from_w()
2301 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_w()
2303 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in sljit_emit_fop1_conv_f64_from_w()
2316 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw() argument
2318 return sljit_emit_fop1_conv_f64_from_w(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1_conv_f64_from_sw()
2323 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_uw() argument
2344 …op_mem2(compiler, (word_data ? WORD_DATA : INT_DATA) | LOAD_DATA, TMP_REG1, src, srcw, dst, dstw)); in sljit_emit_fop1_conv_f64_from_uw()
2348 srcw = (sljit_u32)srcw; in sljit_emit_fop1_conv_f64_from_uw()
2350 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in sljit_emit_fop1_conv_f64_from_uw()
2421 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1() argument
2430 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1()
2438 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, dst_r, src, srcw, dst, dstw)); in sljit_emit_fop1()
2844 …s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw) in sljit_emit_ijump() argument
2849 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_ijump()
2853 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_ijump()
2854 FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, TMP_REG1, src, srcw)); in sljit_emit_ijump()
2864 jump->u.target = (sljit_uw)srcw; in sljit_emit_ijump()
2877 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall() argument
2881 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
2884 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_icall()
2885 FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, TMP_REG1, src, srcw)); in sljit_emit_icall()
2900 return sljit_emit_ijump(compiler, type, src, srcw); in sljit_emit_icall()
3214 sljit_s32 src, sljit_sw srcw) in sljit_emit_simd_replicate() argument
3221 CHECK(check_sljit_emit_simd_replicate(compiler, type, freg, src, srcw)); in sljit_emit_simd_replicate()
3223 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_simd_replicate()
3235 FAIL_IF(sljit_emit_simd_mem_offset(compiler, &src, srcw)); in sljit_emit_simd_replicate()
3263 FAIL_IF(load_immediate(compiler, TMP_REG2, srcw)); in sljit_emit_simd_replicate()
3446 sljit_s32 src, sljit_sw srcw) in sljit_emit_simd_extend() argument
3454 CHECK(check_sljit_emit_simd_extend(compiler, type, freg, src, srcw)); in sljit_emit_simd_extend()
3456 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_simd_extend()
3473 if (FAST_IS_REG(src) && src >= 0 && (srcw >= I12_MIN && srcw <= I12_MAX)) in sljit_emit_simd_extend()
3474 FAIL_IF(push_inst(compiler, ins | FRD(freg) | RJ(src) | IMM_I12(srcw))); in sljit_emit_simd_extend()
3476 FAIL_IF(sljit_emit_simd_mem_offset(compiler, &src, srcw)); in sljit_emit_simd_extend()