Home | History | Annotate | Download | only in sljit

Lines Matching refs:dst_r

656 	sljit_si dst_r = TMP_REG2;
671 dst_r = dst;
674 sugg_src2_r = dst_r;
724 dst_r = src2_r;
735 dst_r = 0;
763 FAIL_IF(emit_single_op(compiler, op, flags, dst_r, src1_r, src2_r));
767 getput_arg_fast(compiler, flags, dst_r, dst, dstw);
770 return getput_arg(compiler, flags, dst_r, dst, dstw, 0, 0);
996 sljit_si dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG1;
1015 FAIL_IF(push_inst(compiler, SELECT_FOP(op, FITOS, FITOD) | DA(dst_r) | S2A(TMP_FREG1), MOVABLE_INS));
1047 sljit_si dst_r;
1059 dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG1;
1062 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, dst_r, src, srcw, dst, dstw));
1063 src = dst_r;
1070 if (src != dst_r) {
1071 if (dst_r != TMP_FREG1) {
1072 FAIL_IF(push_inst(compiler, FMOVS | DA(dst_r) | S2A(src), MOVABLE_INS));
1074 FAIL_IF(push_inst(compiler, FMOVS | DA(dst_r | 1) | S2A(src | 1), MOVABLE_INS));
1077 dst_r = src;
1081 FAIL_IF(push_inst(compiler, FNEGS | DA(dst_r) | S2A(src), MOVABLE_INS));
1082 if (dst_r != src && !(op & SLJIT_SINGLE_OP))
1083 FAIL_IF(push_inst(compiler, FMOVS | DA(dst_r | 1) | S2A(src | 1), MOVABLE_INS));
1086 FAIL_IF(push_inst(compiler, FABSS | DA(dst_r) | S2A(src), MOVABLE_INS));
1087 if (dst_r != src && !(op & SLJIT_SINGLE_OP))
1088 FAIL_IF(push_inst(compiler, FMOVS | DA(dst_r | 1) | S2A(src | 1), MOVABLE_INS));
1091 FAIL_IF(push_inst(compiler, SELECT_FOP(op, FSTOD, FDTOS) | DA(dst_r) | S2A(src), MOVABLE_INS));
1097 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op), dst_r, dst, dstw, 0, 0));
1106 sljit_si dst_r, flags = 0;
1117 dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG2;
1161 FAIL_IF(push_inst(compiler, SELECT_FOP(op, FADDS, FADDD) | DA(dst_r) | S1A(src1) | S2A(src2), MOVABLE_INS));
1165 FAIL_IF(push_inst(compiler, SELECT_FOP(op, FSUBS, FSUBD) | DA(dst_r) | S1A(src1) | S2A(src2), MOVABLE_INS));
1169 FAIL_IF(push_inst(compiler, SELECT_FOP(op, FMULS, FMULD) | DA(dst_r) | S1A(src1) | S2A(src2), MOVABLE_INS));
1173 FAIL_IF(push_inst(compiler, SELECT_FOP(op, FDIVS, FDIVD) | DA(dst_r) | S1A(src1) | S2A(src2), MOVABLE_INS));
1177 if (dst_r == TMP_FREG2)