Lines Matching refs:dst_r

1731 	sljit_s32 dst_r = TMP_REG2;  in emit_op()  local
1747 dst_r = dst; in emit_op()
1750 src2_tmp_reg = dst_r; in emit_op()
1796 dst_r = (sljit_s32)src2_r; in emit_op()
1806 dst_r = 0; in emit_op()
1835 FAIL_IF(emit_single_op(compiler, op, flags, dst_r, src1_r, src2_r)); in emit_op()
1839 getput_arg_fast(compiler, flags, dst_r, dst, dstw); in emit_op()
1842 return getput_arg(compiler, flags, dst_r, dst, dstw, 0, 0); in emit_op()
2175 sljit_s32 dst_r; in sljit_emit_op_dst() local
2189 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG2; in sljit_emit_op_dst()
2190 …FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, dst_r, SLJIT_MEM1(SLJIT_SP), compiler->local_… in sljit_emit_op_dst()
2240 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG2; in sljit_emit_fop1_conv_sw_from_f64() local
2247 FAIL_IF(push_inst(compiler, FCVT_W_S | FMT(op) | flags | RD(dst_r) | FRS1(src))); in sljit_emit_fop1_conv_sw_from_f64()
2268 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_w() local
2282 FAIL_IF(push_inst(compiler, ins | FRD(dst_r) | RS1(src))); in sljit_emit_fop1_conv_f64_from_w()
2391 sljit_s32 dst_r; in sljit_emit_fop1() local
2403 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1()
2406 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, dst_r, src, srcw, dst, dstw)); in sljit_emit_fop1()
2407 src = dst_r; in sljit_emit_fop1()
2412 if (src != dst_r) { in sljit_emit_fop1()
2414 FAIL_IF(push_inst(compiler, FSGNJ_S | FMT(op) | FRD(dst_r) | FRS1(src) | FRS2(src))); in sljit_emit_fop1()
2416 dst_r = src; in sljit_emit_fop1()
2420 FAIL_IF(push_inst(compiler, FSGNJN_S | FMT(op) | FRD(dst_r) | FRS1(src) | FRS2(src))); in sljit_emit_fop1()
2423 FAIL_IF(push_inst(compiler, FSGNJX_S | FMT(op) | FRD(dst_r) | FRS1(src) | FRS2(src))); in sljit_emit_fop1()
2427 …ompiler, FCVT_S_D | ((op & SLJIT_32) ? (1 << 25) : ((1 << 20) | F3(7))) | FRD(dst_r) | FRS1(src))); in sljit_emit_fop1()
2433 return emit_op_mem2(compiler, FLOAT_DATA(op), dst_r, dst, dstw, 0, 0); in sljit_emit_fop1()
2442 sljit_s32 dst_r, flags = 0; in sljit_emit_fop2() local
2453 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG2; in sljit_emit_fop2()
2492 FAIL_IF(push_inst(compiler, FADD_S | FMT(op) | FRD(dst_r) | FRS1(src1) | FRS2(src2))); in sljit_emit_fop2()
2496 FAIL_IF(push_inst(compiler, FSUB_S | FMT(op) | FRD(dst_r) | FRS1(src1) | FRS2(src2))); in sljit_emit_fop2()
2500 FAIL_IF(push_inst(compiler, FMUL_S | FMT(op) | FRD(dst_r) | FRS1(src1) | FRS2(src2))); in sljit_emit_fop2()
2504 FAIL_IF(push_inst(compiler, FDIV_S | FMT(op) | FRD(dst_r) | FRS1(src1) | FRS2(src2))); in sljit_emit_fop2()
2508 return push_inst(compiler, FSGNJ_S | FMT(op) | FRD(dst_r) | FRS1(src1) | FRS2(src2)); in sljit_emit_fop2()
2511 if (dst_r != dst) in sljit_emit_fop2()
2824 sljit_s32 src_r, dst_r, invert; in sljit_emit_op_flags() local
2837 dst_r = (op < SLJIT_ADD && FAST_IS_REG(dst)) ? dst : TMP_REG2; in sljit_emit_op_flags()
2852 FAIL_IF(push_inst(compiler, SLTUI | RD(dst_r) | RS1(EQUAL_FLAG) | IMM_I(1))); in sljit_emit_op_flags()
2853 src_r = dst_r; in sljit_emit_op_flags()
2861 FAIL_IF(push_inst(compiler, SLTUI | RD(dst_r) | RS1(OTHER_FLAG) | IMM_I(1))); in sljit_emit_op_flags()
2862 src_r = dst_r; in sljit_emit_op_flags()
2887 FAIL_IF(push_inst(compiler, XORI | RD(dst_r) | RS1(src_r) | IMM_I(1))); in sljit_emit_op_flags()
2888 src_r = dst_r; in sljit_emit_op_flags()
2895 if (src_r != dst_r) in sljit_emit_op_flags()
2896 return push_inst(compiler, ADDI | RD(dst_r) | RS1(src_r) | IMM_I(0)); in sljit_emit_op_flags()
3072 sljit_s32 dst_r; in sljit_emit_const() local
3082 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG2; in sljit_emit_const()
3083 PTR_FAIL_IF(emit_const(compiler, dst_r, init_value, ADDI | RD(dst_r))); in sljit_emit_const()
3094 sljit_s32 dst_r; in sljit_emit_mov_addr() local
3104 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG2; in sljit_emit_mov_addr()
3105 PTR_FAIL_IF(push_inst(compiler, (sljit_ins)dst_r)); in sljit_emit_mov_addr()