Lines Matching refs:srcw

1558 	sljit_s32 src, sljit_sw srcw)  in sljit_emit_op1()  argument
1564 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw)); in sljit_emit_op1()
1566 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op1()
1583 srcw = (sljit_u8)srcw; in sljit_emit_op1()
1588 srcw = (sljit_s8)srcw; in sljit_emit_op1()
1593 srcw = (sljit_u16)srcw; in sljit_emit_op1()
1598 srcw = (sljit_s16)srcw; in sljit_emit_op1()
1607 FAIL_IF(emit_op_imm(compiler, SLJIT_MOV | ARG2_IMM, dst_r, TMP_REG2, (sljit_uw)srcw)); in sljit_emit_op1()
1609 FAIL_IF(emit_op_mem(compiler, flags, dst_r, src, srcw, TMP_REG1)); in sljit_emit_op1()
1625 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src, srcw, TMP_REG1)); in sljit_emit_op1()
1696 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src() argument
1699 CHECK(check_sljit_emit_op_src(compiler, op, src, srcw)); in sljit_emit_op_src()
1700 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op_src()
1709 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG2, src, srcw, TMP_REG2)); in sljit_emit_op_src()
1718 return emit_op_mem(compiler, PRELOAD, TMP_PC, src, srcw, TMP_REG1); in sljit_emit_op_src()
1802 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64() argument
1807 FAIL_IF(emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG1, src, srcw)); in sljit_emit_fop1_conv_sw_from_f64()
1822 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw() argument
1832 FAIL_IF(emit_fop_mem(compiler, FPU_LOAD, TMP_FREG1, src, srcw)); in sljit_emit_fop1_conv_f64_from_sw()
1835 FAIL_IF(load_immediate(compiler, TMP_REG1, (sljit_uw)srcw)); in sljit_emit_fop1_conv_f64_from_sw()
1868 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1() argument
1875 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1()
1883 emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, dst_r, src, srcw); in sljit_emit_fop1()
2340 …s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw) in sljit_emit_ijump() argument
2345 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_ijump()
2346 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_ijump()
2356 …FAIL_IF(emit_op_mem(compiler, WORD_SIZE, type <= SLJIT_JUMP ? TMP_PC : TMP_REG1, src, srcw, TMP_RE… in sljit_emit_ijump()
2365 jump->u.target = (sljit_uw)srcw; in sljit_emit_ijump()
2374 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall() argument
2381 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
2384 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src, srcw, TMP_REG1)); in sljit_emit_icall()
2405 FAIL_IF(sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_icall()
2434 return sljit_emit_ijump(compiler, type, src, srcw); in sljit_emit_icall()
2493 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov() argument
2498 CHECK(check_sljit_emit_cmov(compiler, type, dst_reg, src, srcw)); in sljit_emit_cmov()
2509 tmp = (sljit_uw) srcw; in sljit_emit_cmov()
2518 tmp = get_imm((sljit_uw)srcw); in sljit_emit_cmov()
2524 tmp = get_imm(~(sljit_uw)srcw); in sljit_emit_cmov()
2532 tmp = (sljit_uw) srcw; in sljit_emit_cmov()