Lines Matching refs:srcw

651 …jit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si src, sljit_sw srcw)  in sljit_emit_return()  argument
656 CHECK(check_sljit_emit_return(compiler, op, src, srcw)); in sljit_emit_return()
658 FAIL_IF(emit_mov_before_return(compiler, op, src, srcw)); in sljit_emit_return()
1293 …type, flags | (type_flags), dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? type_cast srcw : srcw)
1297 sljit_si src, sljit_sw srcw) in sljit_emit_op1() argument
1303 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw)); in sljit_emit_op1()
1305 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op1()
1308 if ((src & SLJIT_IMM) && srcw == 0) in sljit_emit_op1()
1336 srcw = (sljit_si)srcw; in sljit_emit_op1()
1348 return emit_op(compiler, SLJIT_MOV, flags | WORD_DATA, dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1376 …rn emit_op(compiler, SLJIT_MOV, flags | WORD_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1399 return emit_op(compiler, SLJIT_NOT, flags, dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1402 return emit_op(compiler, SLJIT_NEG, flags, dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1406 …LJIT_CLZ, flags | (!(op_flags & SLJIT_INT_OP) ? 0 : ALT_FORM1), dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1408 return emit_op(compiler, SLJIT_CLZ, flags, dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1417 #define TEST_SL_IMM(src, srcw) \ argument
1418 (((src) & SLJIT_IMM) && (srcw) <= SIMM_MAX && (srcw) >= SIMM_MIN)
1420 #define TEST_UL_IMM(src, srcw) \ argument
1421 (((src) & SLJIT_IMM) && !((srcw) & ~0xffff))
1424 #define TEST_SH_IMM(src, srcw) \ argument
1425 (((src) & SLJIT_IMM) && !((srcw) & 0xffff) && (srcw) <= 0x7fffffffl && (srcw) >= -0x80000000l)
1427 #define TEST_SH_IMM(src, srcw) \ argument
1428 (((src) & SLJIT_IMM) && !((srcw) & 0xffff))
1431 #define TEST_UH_IMM(src, srcw) \ argument
1432 (((src) & SLJIT_IMM) && !((srcw) & ~0xffff0000))
1435 #define TEST_ADD_IMM(src, srcw) \ argument
1436 (((src) & SLJIT_IMM) && (srcw) <= 0x7fff7fffl && (srcw) >= -0x80000000l)
1438 #define TEST_ADD_IMM(src, srcw) \ argument
1443 #define TEST_UI_IMM(src, srcw) \ argument
1444 (((src) & SLJIT_IMM) && !((srcw) & ~0xffffffff))
1446 #define TEST_UI_IMM(src, srcw) \ argument
1713 sljit_si src, sljit_sw srcw) in sljit_emit_fop1_convw_fromd() argument
1717 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG1, src, srcw, dst, dstw)); in sljit_emit_fop1_convw_fromd()
1781 sljit_si src, sljit_sw srcw) in sljit_emit_fop1_convd_fromw() argument
1789 srcw = (sljit_si)srcw; in sljit_emit_fop1_convd_fromw()
1790 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in sljit_emit_fop1_convd_fromw()
1797 …FAIL_IF(emit_op_mem2(compiler, INT_DATA | SIGNED_DATA | LOAD_DATA, TMP_REG1, src, srcw, SLJIT_MEM1… in sljit_emit_fop1_convd_fromw()
1806 FAIL_IF(emit_op_mem2(compiler, DOUBLE_DATA | LOAD_DATA, TMP_FREG1, src, srcw, dst, dstw)); in sljit_emit_fop1_convd_fromw()
1822 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw ^ 0x80000000)); in sljit_emit_fop1_convd_fromw()
1827 …FAIL_IF(emit_op_mem2(compiler, WORD_DATA | SIGNED_DATA | LOAD_DATA, TMP_REG1, src, srcw, SLJIT_MEM… in sljit_emit_fop1_convd_fromw()
1876 sljit_si src, sljit_sw srcw) in sljit_emit_fop1() argument
1885 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1()
1893 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, dst_r, src, srcw, dst, dstw)); in sljit_emit_fop1()
2029 …IBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw) in sljit_emit_fast_return() argument
2032 CHECK(check_sljit_emit_fast_return(compiler, src, srcw)); in sljit_emit_fast_return()
2033 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_fast_return()
2039 FAIL_IF(emit_op(compiler, SLJIT_MOV, WORD_DATA, TMP_REG2, 0, TMP_REG1, 0, src, srcw)); in sljit_emit_fast_return()
2041 FAIL_IF(load_immediate(compiler, TMP_REG2, srcw)); in sljit_emit_fast_return()
2162 …it_si sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si src, sljit_sw srcw) in sljit_emit_ijump() argument
2168 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_ijump()
2169 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_ijump()
2186 jump->u.target = srcw; in sljit_emit_ijump()
2195 FAIL_IF(emit_op(compiler, SLJIT_MOV, WORD_DATA, TMP_CALL_REG, 0, TMP_REG1, 0, src, srcw)); in sljit_emit_ijump()
2215 sljit_si src, sljit_sw srcw, in sljit_emit_op_flags() argument
2223 CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, src, srcw, type)); in sljit_emit_op_flags()
2235 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op_flags()
2241 FAIL_IF(emit_op_mem2(compiler, input_flags | LOAD_DATA, TMP_REG1, src, srcw, dst, dstw)); in sljit_emit_op_flags()
2243 srcw = 0; in sljit_emit_op_flags()
2351 return sljit_emit_op2(compiler, op | flags, dst, original_dstw, src, srcw, TMP_REG2, 0); in sljit_emit_op_flags()