Home | History | Annotate | Download | only in sljit

Lines Matching refs:dst_r

921 	sljit_si dst_r = TMP_REG2;
938 dst_r = dst;
941 sugg_src2_r = dst_r;
995 dst_r = src2_r;
1006 dst_r = 0;
1034 FAIL_IF(emit_single_op(compiler, op, flags, dst_r, src1_r, src2_r));
1038 getput_arg_fast(compiler, flags, DR(dst_r), dst, dstw);
1041 return getput_arg(compiler, flags, DR(dst_r), dst, dstw, 0, 0);
1348 sljit_si dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG1;
1365 FAIL_IF(push_inst(compiler, CVT_S_S | flags | (4 << 21) | (((op & SLJIT_SINGLE_OP) ^ SLJIT_SINGLE_OP) >> 8) | FS(TMP_FREG1) | FD(dst_r), MOVABLE_INS));
1419 sljit_si dst_r;
1431 dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG1;
1434 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, dst_r, src, srcw, dst, dstw));
1435 src = dst_r;
1442 if (src != dst_r) {
1443 if (dst_r != TMP_FREG1)
1444 FAIL_IF(push_inst(compiler, MOV_S | FMT(op) | FS(src) | FD(dst_r), MOVABLE_INS));
1446 dst_r = src;
1450 FAIL_IF(push_inst(compiler, NEG_S | FMT(op) | FS(src) | FD(dst_r), MOVABLE_INS));
1453 FAIL_IF(push_inst(compiler, ABS_S | FMT(op) | FS(src) | FD(dst_r), MOVABLE_INS));
1456 FAIL_IF(push_inst(compiler, CVT_S_S | ((op & SLJIT_SINGLE_OP) ? 1 : (1 << 21)) | FS(src) | FD(dst_r), MOVABLE_INS));
1462 return emit_op_mem2(compiler, FLOAT_DATA(op), dst_r, dst, dstw, 0, 0);
1471 sljit_si dst_r, flags = 0;
1482 dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG2;
1526 FAIL_IF(push_inst(compiler, ADD_S | FMT(op) | FT(src2) | FS(src1) | FD(dst_r), MOVABLE_INS));
1530 FAIL_IF(push_inst(compiler, SUB_S | FMT(op) | FT(src2) | FS(src1) | FD(dst_r), MOVABLE_INS));
1534 FAIL_IF(push_inst(compiler, MUL_S | FMT(op) | FT(src2) | FS(src1) | FD(dst_r), MOVABLE_INS));
1538 FAIL_IF(push_inst(compiler, DIV_S | FMT(op) | FT(src2) | FS(src1) | FD(dst_r), MOVABLE_INS));
1542 if (dst_r == TMP_FREG2)