Lines Matching refs:srcw
1188 …_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw) in sljit_emit_return() argument
1194 CHECK(check_sljit_emit_return(compiler, op, src, srcw)); in sljit_emit_return()
1196 FAIL_IF(emit_mov_before_return(compiler, op, src, srcw)); in sljit_emit_return()
1342 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1() argument
1348 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw)); in sljit_emit_op1()
1350 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op1()
1366 srcw = (sljit_u8)srcw; in sljit_emit_op1()
1371 srcw = (sljit_s8)srcw; in sljit_emit_op1()
1376 srcw = (sljit_u16)srcw; in sljit_emit_op1()
1381 srcw = (sljit_s16)srcw; in sljit_emit_op1()
1390 FAIL_IF(emit_op_imm(compiler, SLJIT_MOV | ARG2_IMM, dst_r, TMP_REG2, srcw)); in sljit_emit_op1()
1392 FAIL_IF(emit_op_mem(compiler, flags, dst_r, src, srcw, TMP_REG1)); in sljit_emit_op1()
1410 return sljit_emit_op2(compiler, SLJIT_SUB | op_flags, dst, dstw, SLJIT_IMM, 0, src, srcw); in sljit_emit_op1()
1416 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src, srcw, TMP_REG1)); in sljit_emit_op1()
1476 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src() argument
1479 CHECK(check_sljit_emit_op_src(compiler, op, src, srcw)); in sljit_emit_op_src()
1480 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op_src()
1489 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG2, src, srcw, TMP_REG2)); in sljit_emit_op_src()
1498 return emit_op_mem(compiler, PRELOAD, TMP_PC, src, srcw, TMP_REG1); in sljit_emit_op_src()
1580 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64() argument
1585 FAIL_IF(emit_fop_mem(compiler, (op & SLJIT_F32_OP) | FPU_LOAD, TMP_FREG1, src, srcw)); in sljit_emit_fop1_conv_sw_from_f64()
1600 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw() argument
1610 FAIL_IF(emit_fop_mem(compiler, FPU_LOAD, TMP_FREG1, src, srcw)); in sljit_emit_fop1_conv_f64_from_sw()
1613 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in sljit_emit_fop1_conv_f64_from_sw()
1646 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1() argument
1653 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1()
1661 emit_fop_mem(compiler, (op & SLJIT_F32_OP) | FPU_LOAD, dst_r, src, srcw); in sljit_emit_fop1()
2099 …s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw) in sljit_emit_ijump() argument
2104 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_ijump()
2105 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_ijump()
2115 …FAIL_IF(emit_op_mem(compiler, WORD_SIZE, type <= SLJIT_JUMP ? TMP_PC : TMP_REG1, src, srcw, TMP_RE… in sljit_emit_ijump()
2124 jump->u.target = srcw; in sljit_emit_ijump()
2133 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall() argument
2136 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
2140 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src, srcw, TMP_REG1)); in sljit_emit_icall()
2151 FAIL_IF(sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_icall()
2162 return sljit_emit_ijump(compiler, type, src, srcw); in sljit_emit_icall()
2221 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov() argument
2226 CHECK(check_sljit_emit_cmov(compiler, type, dst_reg, src, srcw)); in sljit_emit_cmov()
2237 tmp = (sljit_uw) srcw; in sljit_emit_cmov()
2246 tmp = get_imm(srcw); in sljit_emit_cmov()
2252 tmp = get_imm(~srcw); in sljit_emit_cmov()
2260 tmp = (sljit_uw) srcw; in sljit_emit_cmov()