Home | History | Annotate | Download | only in sljit

Lines Matching full:srcw

1205 SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si src, sljit_sw srcw)
1211 check_sljit_emit_return(compiler, op, src, srcw);
1213 FAIL_IF(emit_mov_before_return(compiler, op, src, srcw));
1299 sljit_si src, sljit_sw srcw)
1305 check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw);
1307 ADJUST_LOCAL_OFFSET(src, srcw);
1326 srcw = (sljit_ub)srcw;
1331 srcw = (sljit_sb)srcw;
1336 srcw = (sljit_uh)srcw;
1341 srcw = (sljit_sh)srcw;
1352 srcw = (sljit_ub)srcw;
1357 srcw = (sljit_sb)srcw;
1362 srcw = (sljit_uh)srcw;
1367 srcw = (sljit_sh)srcw;
1376 FAIL_IF(emit_op_imm(compiler, SLJIT_MOV | ARG2_IMM, dst_r, TMP_REG1, srcw));
1378 if (getput_arg_fast(compiler, flags, dst_r, src, srcw))
1381 FAIL_IF(getput_arg(compiler, flags, dst_r, src, srcw, dst, dstw));
1401 return sljit_emit_op2(compiler, SLJIT_SUB | op_flags, dst, dstw, SLJIT_IMM, 0, src, srcw);
1406 if (getput_arg_fast(compiler, WORD_SIZE, TMP_REG2, src, srcw))
1409 FAIL_IF(getput_arg(compiler, WORD_SIZE, TMP_REG2, src, srcw, dst, dstw));
1416 srcw = src;
1418 emit_op_imm(compiler, flags | op, dst_r, TMP_REG1, srcw);
1614 sljit_si src, sljit_sw srcw)
1617 FAIL_IF(emit_fop_mem(compiler, (op & SLJIT_SINGLE_OP) | FPU_LOAD, TMP_FREG1, src, srcw));
1635 sljit_si src, sljit_sw srcw)
1643 FAIL_IF(emit_fop_mem(compiler, FPU_LOAD, TMP_FREG1, src, srcw));
1646 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw));
1677 sljit_si src, sljit_sw srcw)
1688 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw);
1693 emit_fop_mem(compiler, (op & SLJIT_SINGLE_OP) | FPU_LOAD, dst_r, src, srcw);
1799 SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw)
1802 check_sljit_emit_fast_return(compiler, src, srcw);
1803 ADJUST_LOCAL_OFFSET(src, srcw);
1808 if (getput_arg_fast(compiler, WORD_SIZE, TMP_REG3, src, srcw))
1813 FAIL_IF(getput_arg(compiler, WORD_SIZE, TMP_REG2, src, srcw, 0, 0));
1818 FAIL_IF(load_immediate(compiler, TMP_REG3, srcw));
1929 SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si src, sljit_sw srcw)
1934 check_sljit_emit_ijump(compiler, type, src, srcw);
1935 ADJUST_LOCAL_OFFSET(src, srcw);
1942 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, type <= SLJIT_JUMP ? TMP_PC : TMP_REG1, src, srcw));
1950 jump->u.target = srcw;
1959 sljit_si src, sljit_sw srcw,
1966 check_sljit_emit_op_flags(compiler, op, dst, dstw, src, srcw, type);
1968 ADJUST_LOCAL_OFFSET(src, srcw);
2008 FAIL_IF(emit_op_mem2(compiler, WORD_SIZE, TMP_REG2, src, srcw, dst, dstw));
2010 srcw = 0;
2012 FAIL_IF(load_immediate(compiler, TMP_REG2, srcw));
2014 srcw = 0;