Home | History | Annotate | Download | only in sljit

Lines Matching defs:mem_flags

1249 	sljit_si dst_r, flags, mem_flags;
1362 mem_flags = WORD_SIZE;
1365 mem_flags = INT_SIZE;
1372 if (getput_arg_fast(compiler, mem_flags, TMP_REG2, src, srcw))
1375 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src, srcw, dst, dstw));
1389 if (getput_arg_fast(compiler, mem_flags | STORE, dst_r, dst, dstw))
1392 return getput_arg(compiler, mem_flags | STORE, dst_r, dst, dstw, 0, 0);
1402 sljit_si dst_r, flags, mem_flags;
1415 mem_flags = WORD_SIZE;
1418 mem_flags = INT_SIZE;
1424 if ((dst & SLJIT_MEM) && !getput_arg_fast(compiler, mem_flags | STORE | ARG_TEST, TMP_REG1, dst, dstw))
1428 if (getput_arg_fast(compiler, mem_flags, TMP_REG1, src1, src1w))
1434 if (getput_arg_fast(compiler, mem_flags, TMP_REG2, src2, src2w))
1442 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src2, src2w, src1, src1w));
1443 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG1, src1, src1w, dst, dstw));
1446 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG1, src1, src1w, src2, src2w));
1447 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src2, src2w, dst, dstw));
1451 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG1, src1, src1w, dst, dstw));
1453 FAIL_IF(getput_arg(compiler, mem_flags, TMP_REG2, src2, src2w, dst, dstw));
1473 getput_arg_fast(compiler, mem_flags | STORE, dst_r, dst, dstw);
1476 return getput_arg(compiler, mem_flags | STORE, TMP_REG1, dst, dstw, 0, 0);
1626 sljit_si mem_flags = (op & SLJIT_SINGLE_OP) ? INT_SIZE : WORD_SIZE;
1630 emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w);
1635 emit_fop_mem(compiler, mem_flags, TMP_FREG2, src2, src2w);
1646 sljit_si dst_r, mem_flags = (op & SLJIT_SINGLE_OP) ? INT_SIZE : WORD_SIZE;
1660 emit_fop_mem(compiler, (GET_OPCODE(op) == SLJIT_CONVD_FROMS) ? (mem_flags ^ 0x100) : mem_flags, dst_r, src, srcw);
1685 return emit_fop_mem(compiler, mem_flags | STORE, dst_r, dst, dstw);
1694 sljit_si dst_r, mem_flags = (op & SLJIT_SINGLE_OP) ? INT_SIZE : WORD_SIZE;
1708 emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w);
1712 emit_fop_mem(compiler, mem_flags, TMP_FREG2, src2, src2w);
1733 return emit_fop_mem(compiler, mem_flags | STORE, TMP_FREG1, dst, dstw);
1940 sljit_si dst_r, flags, mem_flags;
1964 mem_flags = WORD_SIZE;
1967 mem_flags = INT_SIZE;
1971 FAIL_IF(emit_op_mem2(compiler, mem_flags, TMP_REG1, src, srcw, dst, dstw));
1982 return emit_op_mem2(compiler, mem_flags | STORE, TMP_REG1, dst, dstw, 0, 0);