Lines Matching refs:srcw

1195 …_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw)  in sljit_emit_return()  argument
1201 CHECK(check_sljit_emit_return(compiler, op, src, srcw)); in sljit_emit_return()
1203 FAIL_IF(emit_mov_before_return(compiler, op, src, srcw)); in sljit_emit_return()
1349 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1() argument
1355 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw)); in sljit_emit_op1()
1357 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op1()
1373 srcw = (sljit_u8)srcw; in sljit_emit_op1()
1378 srcw = (sljit_s8)srcw; in sljit_emit_op1()
1383 srcw = (sljit_u16)srcw; in sljit_emit_op1()
1388 srcw = (sljit_s16)srcw; in sljit_emit_op1()
1397 FAIL_IF(emit_op_imm(compiler, SLJIT_MOV | ARG2_IMM, dst_r, TMP_REG2, srcw)); in sljit_emit_op1()
1399 FAIL_IF(emit_op_mem(compiler, flags, dst_r, src, srcw, TMP_REG1)); in sljit_emit_op1()
1417 return sljit_emit_op2(compiler, SLJIT_SUB | op_flags, dst, dstw, SLJIT_IMM, 0, src, srcw); in sljit_emit_op1()
1423 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src, srcw, TMP_REG1)); in sljit_emit_op1()
1483 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src() argument
1486 CHECK(check_sljit_emit_op_src(compiler, op, src, srcw)); in sljit_emit_op_src()
1487 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op_src()
1496 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG2, src, srcw, TMP_REG2)); in sljit_emit_op_src()
1505 return emit_op_mem(compiler, PRELOAD, TMP_PC, src, srcw, TMP_REG1); in sljit_emit_op_src()
1587 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64() argument
1592 FAIL_IF(emit_fop_mem(compiler, (op & SLJIT_F32_OP) | FPU_LOAD, TMP_FREG1, src, srcw)); in sljit_emit_fop1_conv_sw_from_f64()
1607 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw() argument
1617 FAIL_IF(emit_fop_mem(compiler, FPU_LOAD, TMP_FREG1, src, srcw)); in sljit_emit_fop1_conv_f64_from_sw()
1620 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in sljit_emit_fop1_conv_f64_from_sw()
1653 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1() argument
1660 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1()
1668 emit_fop_mem(compiler, (op & SLJIT_F32_OP) | FPU_LOAD, dst_r, src, srcw); in sljit_emit_fop1()
2110 …s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw) in sljit_emit_ijump() argument
2115 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_ijump()
2116 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_ijump()
2126 …FAIL_IF(emit_op_mem(compiler, WORD_SIZE, type <= SLJIT_JUMP ? TMP_PC : TMP_REG1, src, srcw, TMP_RE… in sljit_emit_ijump()
2135 jump->u.target = srcw; in sljit_emit_ijump()
2144 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall() argument
2147 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
2151 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src, srcw, TMP_REG1)); in sljit_emit_icall()
2162 FAIL_IF(sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_icall()
2173 return sljit_emit_ijump(compiler, type, src, srcw); in sljit_emit_icall()
2232 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov() argument
2237 CHECK(check_sljit_emit_cmov(compiler, type, dst_reg, src, srcw)); in sljit_emit_cmov()
2248 tmp = (sljit_uw) srcw; in sljit_emit_cmov()
2257 tmp = get_imm(srcw); in sljit_emit_cmov()
2263 tmp = get_imm(~srcw); in sljit_emit_cmov()
2271 tmp = (sljit_uw) srcw; in sljit_emit_cmov()