Lines Matching refs:dst_r
686 sljit_s32 dst_r = TMP_REG2; in emit_op() local
698 dst_r = dst; in emit_op()
701 sugg_src2_r = dst_r; in emit_op()
752 dst_r = src2_r; in emit_op()
763 dst_r = 0; in emit_op()
791 FAIL_IF(emit_single_op(compiler, op, flags, dst_r, src1_r, src2_r)); in emit_op()
795 getput_arg_fast(compiler, flags, dst_r, dst, dstw); in emit_op()
798 return getput_arg(compiler, flags, dst_r, dst, dstw, 0, 0); in emit_op()
997 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_sw() local
1016 …FAIL_IF(push_inst(compiler, SELECT_FOP(op, FITOS, FITOD) | FD(dst_r) | FS2(TMP_FREG1), MOVABLE_INS… in sljit_emit_fop1_conv_f64_from_sw()
1044 sljit_s32 dst_r; in sljit_emit_fop1() local
1056 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1()
1059 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, dst_r, src, srcw, dst, dstw)); in sljit_emit_fop1()
1060 src = dst_r; in sljit_emit_fop1()
1065 if (src != dst_r) { in sljit_emit_fop1()
1066 if (dst_r != TMP_FREG1) { in sljit_emit_fop1()
1067 FAIL_IF(push_inst(compiler, FMOVS | FD(dst_r) | FS2(src), MOVABLE_INS)); in sljit_emit_fop1()
1069 FAIL_IF(push_inst(compiler, FMOVS | FDN(dst_r) | FS2N(src), MOVABLE_INS)); in sljit_emit_fop1()
1072 dst_r = src; in sljit_emit_fop1()
1076 FAIL_IF(push_inst(compiler, FNEGS | FD(dst_r) | FS2(src), MOVABLE_INS)); in sljit_emit_fop1()
1077 if (dst_r != src && !(op & SLJIT_F32_OP)) in sljit_emit_fop1()
1078 FAIL_IF(push_inst(compiler, FMOVS | FDN(dst_r) | FS2N(src), MOVABLE_INS)); in sljit_emit_fop1()
1081 FAIL_IF(push_inst(compiler, FABSS | FD(dst_r) | FS2(src), MOVABLE_INS)); in sljit_emit_fop1()
1082 if (dst_r != src && !(op & SLJIT_F32_OP)) in sljit_emit_fop1()
1083 FAIL_IF(push_inst(compiler, FMOVS | FDN(dst_r) | FS2N(src), MOVABLE_INS)); in sljit_emit_fop1()
1086 FAIL_IF(push_inst(compiler, SELECT_FOP(op, FSTOD, FDTOS) | FD(dst_r) | FS2(src), MOVABLE_INS)); in sljit_emit_fop1()
1092 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op), dst_r, dst, dstw, 0, 0)); in sljit_emit_fop1()
1101 sljit_s32 dst_r, flags = 0; in sljit_emit_fop2() local
1112 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG2; in sljit_emit_fop2()
1152 …FAIL_IF(push_inst(compiler, SELECT_FOP(op, FADDS, FADDD) | FD(dst_r) | FS1(src1) | FS2(src2), MOVA… in sljit_emit_fop2()
1156 …FAIL_IF(push_inst(compiler, SELECT_FOP(op, FSUBS, FSUBD) | FD(dst_r) | FS1(src1) | FS2(src2), MOVA… in sljit_emit_fop2()
1160 …FAIL_IF(push_inst(compiler, SELECT_FOP(op, FMULS, FMULD) | FD(dst_r) | FS1(src1) | FS2(src2), MOVA… in sljit_emit_fop2()
1164 …FAIL_IF(push_inst(compiler, SELECT_FOP(op, FDIVS, FDIVD) | FD(dst_r) | FS1(src1) | FS2(src2), MOVA… in sljit_emit_fop2()
1168 if (dst_r == TMP_FREG2) in sljit_emit_fop2()