Home | History | Annotate | Download | only in sljit_src

Lines Matching refs:srcw

1171 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw)
1177 CHECK(check_sljit_emit_return(compiler, op, src, srcw));
1179 FAIL_IF(emit_mov_before_return(compiler, op, src, srcw));
1288 sljit_s32 src, sljit_sw srcw)
1294 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw));
1296 ADJUST_LOCAL_OFFSET(src, srcw);
1313 srcw = (sljit_u8)srcw;
1318 srcw = (sljit_s8)srcw;
1323 srcw = (sljit_u16)srcw;
1328 srcw = (sljit_s16)srcw;
1333 srcw = (sljit_u32)srcw;
1338 srcw = (sljit_s32)srcw;
1347 srcw = (sljit_u8)srcw;
1352 srcw = (sljit_s8)srcw;
1357 srcw = (sljit_u16)srcw;
1362 srcw = (sljit_s16)srcw;
1367 srcw = (sljit_u32)srcw;
1372 srcw = (sljit_s32)srcw;
1381 FAIL_IF(emit_op_imm(compiler, SLJIT_MOV | ARG2_IMM, dst_r, TMP_REG1, srcw));
1383 if (getput_arg_fast(compiler, flags, dst_r, src, srcw))
1386 FAIL_IF(getput_arg(compiler, flags, dst_r, src, srcw, dst, dstw));
1413 if (getput_arg_fast(compiler, mem_flags, TMP_REG2, src, srcw))
1416 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src, srcw, dst, dstw));
1423 srcw = (sljit_s32)srcw;
1425 srcw = src;
1427 emit_op_imm(compiler, flags | op, dst_r, TMP_REG1, srcw);
1613 sljit_s32 src, sljit_sw srcw)
1622 emit_fop_mem(compiler, (op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE, TMP_FREG1, src, srcw);
1635 sljit_s32 src, sljit_sw srcw)
1644 emit_op_mem(compiler, ((GET_OPCODE(op) == SLJIT_CONV_F64_FROM_S32) ? INT_SIZE : WORD_SIZE), TMP_REG1, src, srcw);
1649 srcw = (sljit_s32)srcw;
1651 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw));
1684 sljit_s32 src, sljit_sw srcw)
1694 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw);
1700 emit_fop_mem(compiler, (GET_OPCODE(op) == SLJIT_CONV_F64_FROM_F32) ? (mem_flags ^ 0x100) : mem_flags, dst_r, src, srcw);
1797 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
1800 CHECK(check_sljit_emit_fast_return(compiler, src, srcw));
1801 ADJUST_LOCAL_OFFSET(src, srcw);
1806 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_LR, src, srcw));
1808 FAIL_IF(load_immediate(compiler, TMP_LR, srcw));
1915 sljit_s32 src, sljit_sw srcw)
1921 ADJUST_LOCAL_OFFSET(src, srcw);
1929 PTR_FAIL_IF(emit_op_mem(compiler, inv_bits ? INT_SIZE : WORD_SIZE, TMP_REG1, src, srcw));
1933 PTR_FAIL_IF(load_immediate(compiler, TMP_REG1, srcw));
1948 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw)
1953 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw));
1954 ADJUST_LOCAL_OFFSET(src, srcw);
1959 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src, srcw));
1968 jump->u.target = srcw;
1977 sljit_s32 src, sljit_sw srcw,
1984 CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, src, srcw, type));
1986 ADJUST_LOCAL_OFFSET(src, srcw);
2011 FAIL_IF(emit_op_mem2(compiler, mem_flags, TMP_REG1, src, srcw, dst, dstw));
2013 srcw = 0;