Home | History | Annotate | Download | only in sljit

Lines Matching refs:srcw

1165 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw)
1171 CHECK(check_sljit_emit_return(compiler, op, src, srcw));
1173 FAIL_IF(emit_mov_before_return(compiler, op, src, srcw));
1280 sljit_s32 src, sljit_sw srcw)
1286 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw));
1288 ADJUST_LOCAL_OFFSET(src, srcw);
1305 srcw = (sljit_u8)srcw;
1310 srcw = (sljit_s8)srcw;
1315 srcw = (sljit_u16)srcw;
1320 srcw = (sljit_s16)srcw;
1325 srcw = (sljit_u32)srcw;
1330 srcw = (sljit_s32)srcw;
1339 srcw = (sljit_u8)srcw;
1344 srcw = (sljit_s8)srcw;
1349 srcw = (sljit_u16)srcw;
1354 srcw = (sljit_s16)srcw;
1359 srcw = (sljit_u32)srcw;
1364 srcw = (sljit_s32)srcw;
1373 FAIL_IF(emit_op_imm(compiler, SLJIT_MOV | ARG2_IMM, dst_r, TMP_REG1, srcw));
1375 if (getput_arg_fast(compiler, flags, dst_r, src, srcw))
1378 FAIL_IF(getput_arg(compiler, flags, dst_r, src, srcw, dst, dstw));
1405 if (getput_arg_fast(compiler, mem_flags, TMP_REG2, src, srcw))
1408 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src, srcw, dst, dstw));
1415 srcw = (sljit_s32)srcw;
1417 srcw = src;
1419 emit_op_imm(compiler, flags | op, dst_r, TMP_REG1, srcw);
1605 sljit_s32 src, sljit_sw srcw)
1614 emit_fop_mem(compiler, (op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE, TMP_FREG1, src, srcw);
1627 sljit_s32 src, sljit_sw srcw)
1636 emit_op_mem(compiler, ((GET_OPCODE(op) == SLJIT_CONV_F64_FROM_S32) ? INT_SIZE : WORD_SIZE), TMP_REG1, src, srcw);
1641 srcw = (sljit_s32)srcw;
1643 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw));
1676 sljit_s32 src, sljit_sw srcw)
1686 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw);
1692 emit_fop_mem(compiler, (GET_OPCODE(op) == SLJIT_CONV_F64_FROM_F32) ? (mem_flags ^ 0x100) : mem_flags, dst_r, src, srcw);
1789 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
1792 CHECK(check_sljit_emit_fast_return(compiler, src, srcw));
1793 ADJUST_LOCAL_OFFSET(src, srcw);
1798 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_LR, src, srcw));
1800 FAIL_IF(load_immediate(compiler, TMP_LR, srcw));
1907 sljit_s32 src, sljit_sw srcw)
1913 ADJUST_LOCAL_OFFSET(src, srcw);
1921 PTR_FAIL_IF(emit_op_mem(compiler, inv_bits ? INT_SIZE : WORD_SIZE, TMP_REG1, src, srcw));
1925 PTR_FAIL_IF(load_immediate(compiler, TMP_REG1, srcw));
1940 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw)
1945 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw));
1946 ADJUST_LOCAL_OFFSET(src, srcw);
1951 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src, srcw));
1960 jump->u.target = srcw;
1969 sljit_s32 src, sljit_sw srcw,
1976 CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, src, srcw, type));
1978 ADJUST_LOCAL_OFFSET(src, srcw);
2003 FAIL_IF(emit_op_mem2(compiler, mem_flags, TMP_REG1, src, srcw, dst, dstw));
2005 srcw = 0;