Lines Matching refs:srcw
672 …_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw) in sljit_emit_return() argument
677 CHECK(check_sljit_emit_return(compiler, op, src, srcw)); in sljit_emit_return()
679 FAIL_IF(emit_mov_before_return(compiler, op, src, srcw)); in sljit_emit_return()
1311 …type, flags | (type_flags), dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? type_cast srcw : srcw)
1315 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1() argument
1321 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw)); in sljit_emit_op1()
1323 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op1()
1326 if ((src & SLJIT_IMM) && srcw == 0) in sljit_emit_op1()
1354 srcw = (sljit_s32)srcw; in sljit_emit_op1()
1366 return emit_op(compiler, SLJIT_MOV, flags | WORD_DATA, dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1394 …rn emit_op(compiler, SLJIT_MOV, flags | WORD_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1417 return emit_op(compiler, SLJIT_NOT, flags, dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1420 return emit_op(compiler, SLJIT_NEG, flags, dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1424 …LJIT_CLZ, flags | (!(op_flags & SLJIT_I32_OP) ? 0 : ALT_FORM1), dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1426 return emit_op(compiler, SLJIT_CLZ, flags, dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1435 #define TEST_SL_IMM(src, srcw) \ argument
1436 (((src) & SLJIT_IMM) && (srcw) <= SIMM_MAX && (srcw) >= SIMM_MIN)
1438 #define TEST_UL_IMM(src, srcw) \ argument
1439 (((src) & SLJIT_IMM) && !((srcw) & ~0xffff))
1442 #define TEST_SH_IMM(src, srcw) \ argument
1443 (((src) & SLJIT_IMM) && !((srcw) & 0xffff) && (srcw) <= 0x7fffffffl && (srcw) >= -0x80000000l)
1445 #define TEST_SH_IMM(src, srcw) \ argument
1446 (((src) & SLJIT_IMM) && !((srcw) & 0xffff))
1449 #define TEST_UH_IMM(src, srcw) \ argument
1450 (((src) & SLJIT_IMM) && !((srcw) & ~0xffff0000))
1453 #define TEST_ADD_IMM(src, srcw) \ argument
1454 (((src) & SLJIT_IMM) && (srcw) <= 0x7fff7fffl && (srcw) >= -0x80000000l)
1456 #define TEST_ADD_IMM(src, srcw) \ argument
1461 #define TEST_UI_IMM(src, srcw) \ argument
1462 (((src) & SLJIT_IMM) && !((srcw) & ~0xffffffff))
1464 #define TEST_UI_IMM(src, srcw) \ argument
1732 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64() argument
1736 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()
1800 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw() argument
1808 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_sw()
1809 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in sljit_emit_fop1_conv_f64_from_sw()
1816 …FAIL_IF(emit_op_mem2(compiler, INT_DATA | SIGNED_DATA | LOAD_DATA, TMP_REG1, src, srcw, SLJIT_MEM1… in sljit_emit_fop1_conv_f64_from_sw()
1825 FAIL_IF(emit_op_mem2(compiler, DOUBLE_DATA | LOAD_DATA, TMP_FREG1, src, srcw, dst, dstw)); in sljit_emit_fop1_conv_f64_from_sw()
1841 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw ^ 0x80000000)); in sljit_emit_fop1_conv_f64_from_sw()
1846 …FAIL_IF(emit_op_mem2(compiler, WORD_DATA | SIGNED_DATA | LOAD_DATA, TMP_REG1, src, srcw, SLJIT_MEM… in sljit_emit_fop1_conv_f64_from_sw()
1895 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1() argument
1904 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1()
1912 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, dst_r, src, srcw, dst, dstw)); in sljit_emit_fop1()
2048 …UTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw) in sljit_emit_fast_return() argument
2051 CHECK(check_sljit_emit_fast_return(compiler, src, srcw)); in sljit_emit_fast_return()
2052 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_fast_return()
2058 FAIL_IF(emit_op(compiler, SLJIT_MOV, WORD_DATA, TMP_REG2, 0, TMP_REG1, 0, src, srcw)); in sljit_emit_fast_return()
2060 FAIL_IF(load_immediate(compiler, TMP_REG2, srcw)); in sljit_emit_fast_return()
2181 …s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw) in sljit_emit_ijump() argument
2187 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_ijump()
2188 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_ijump()
2205 jump->u.target = srcw; in sljit_emit_ijump()
2214 FAIL_IF(emit_op(compiler, SLJIT_MOV, WORD_DATA, TMP_CALL_REG, 0, TMP_REG1, 0, src, srcw)); in sljit_emit_ijump()
2233 sljit_s32 src, sljit_sw srcw, in sljit_emit_op_flags() argument
2241 CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, src, srcw, type)); in sljit_emit_op_flags()
2253 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op_flags()
2259 FAIL_IF(emit_op_mem2(compiler, input_flags | LOAD_DATA, TMP_REG1, src, srcw, dst, dstw)); in sljit_emit_op_flags()
2261 srcw = 0; in sljit_emit_op_flags()
2371 return sljit_emit_op2(compiler, op | flags, dst, original_dstw, src, srcw, TMP_REG2, 0); in sljit_emit_op_flags()