Lines Matching refs:dst_r

1569 	sljit_s32 dst_r, flags, mem_flags;  in sljit_emit_op1()  local
1577 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_op1()
1583 return emit_op_imm(compiler, op | ((op_flags & SLJIT_32) ? INT_OP : 0), dst_r, TMP_REG1, src); in sljit_emit_op1()
1628 FAIL_IF(emit_op_imm(compiler, SLJIT_MOV | ARG2_IMM, dst_r, TMP_REG1, srcw)); in sljit_emit_op1()
1630 dst_r = src; in sljit_emit_op1()
1632 FAIL_IF(emit_op_mem(compiler, mem_flags, dst_r, src, srcw, TMP_REG2)); in sljit_emit_op1()
1635 return emit_op_mem(compiler, mem_flags | STORE, dst_r, dst, dstw, TMP_REG2); in sljit_emit_op1()
1665 emit_op_imm(compiler, flags | op, dst_r, TMP_REG1, src); in sljit_emit_op1()
1668 return emit_op_mem(compiler, mem_flags | STORE, dst_r, dst, dstw, TMP_REG2); in sljit_emit_op1()
1677 sljit_s32 dst_r, flags, mem_flags; in sljit_emit_op2() local
1685 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_op2()
1717 emit_op_imm(compiler, flags | GET_OPCODE(op), dst_r, src1w, src2w); in sljit_emit_op2()
1720 return emit_op_mem(compiler, mem_flags | STORE, dst_r, dst, dstw, TMP_REG2); in sljit_emit_op2()
1864 sljit_s32 dst_r = TMP_LR; in sljit_emit_op_dst() local
1876 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_op_dst()
1877 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, dst_r, SLJIT_MEM1(SLJIT_SP), 0x8, TMP_REG2)); in sljit_emit_op_dst()
1882 return emit_op_mem(compiler, WORD_SIZE | STORE, dst_r, dst, dstw, TMP_REG2); in sljit_emit_op_dst()
1967 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_fop1_conv_sw_from_f64() local
1978 FAIL_IF(push_inst(compiler, (FCVTZS ^ inv_bits) | RD(dst_r) | VN(src))); in sljit_emit_fop1_conv_sw_from_f64()
1989 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_w() local
1999 FAIL_IF(push_inst(compiler, ins | VD(dst_r) | RN(src))); in sljit_emit_fop1_conv_f64_from_w()
2068 sljit_s32 dst_r, mem_flags = (op & SLJIT_32) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop1() local
2077 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1()
2080 …r, (GET_OPCODE(op) == SLJIT_CONV_F64_FROM_F32) ? (mem_flags ^ 0x1) : mem_flags, dst_r, src, srcw)); in sljit_emit_fop1()
2081 src = dst_r; in sljit_emit_fop1()
2086 if (src != dst_r) { in sljit_emit_fop1()
2088 FAIL_IF(push_inst(compiler, (FMOV ^ inv_bits) | VD(dst_r) | VN(src))); in sljit_emit_fop1()
2090 dst_r = src; in sljit_emit_fop1()
2094 FAIL_IF(push_inst(compiler, (FNEG ^ inv_bits) | VD(dst_r) | VN(src))); in sljit_emit_fop1()
2097 FAIL_IF(push_inst(compiler, (FABS ^ inv_bits) | VD(dst_r) | VN(src))); in sljit_emit_fop1()
2100 …inst(compiler, FCVT | (sljit_ins)((op & SLJIT_32) ? (1 << 22) : (1 << 15)) | VD(dst_r) | VN(src))); in sljit_emit_fop1()
2105 return emit_fop_mem(compiler, mem_flags | STORE, dst_r, dst, dstw); in sljit_emit_fop1()
2114 sljit_s32 dst_r, mem_flags = (op & SLJIT_32) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop2() local
2123 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop2()
2135 FAIL_IF(push_inst(compiler, (FADD ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
2138 FAIL_IF(push_inst(compiler, (FSUB ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
2141 FAIL_IF(push_inst(compiler, (FMUL ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
2144 FAIL_IF(push_inst(compiler, (FDIV ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2()
2148 FAIL_IF(push_inst(compiler, (FABS ^ inv_bits) | VD(dst_r) | VN(src1))); in sljit_emit_fop2()
2150 return push_inst(compiler, (FNEG ^ inv_bits) | VD(dst_r) | VN(dst_r)); in sljit_emit_fop2()
2481 sljit_s32 dst_r, src_r, flags, mem_flags; in sljit_emit_op_flags() local
2489 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_op_flags()
2492 FAIL_IF(push_inst(compiler, CSINC | (cc << 12) | RD(dst_r) | RN(TMP_ZERO) | RM(TMP_ZERO))); in sljit_emit_op_flags()
2518 emit_op_imm(compiler, flags | GET_OPCODE(op), dst_r, src_r, TMP_REG2); in sljit_emit_op_flags()
3156 sljit_s32 dst_r; in sljit_emit_simd_sign() local
3210 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG2; in sljit_emit_simd_sign()
3218 FAIL_IF(push_inst(compiler, UMOV | ins | RD(dst_r) | VN(TMP_FREG1))); in sljit_emit_simd_sign()
3220 if (dst_r == TMP_REG2) in sljit_emit_simd_sign()
3426 sljit_s32 dst_r; in sljit_emit_const() local
3436 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_const()
3437 PTR_FAIL_IF(emit_imm64_const(compiler, dst_r, (sljit_uw)init_value)); in sljit_emit_const()
3440 PTR_FAIL_IF(emit_op_mem(compiler, WORD_SIZE | STORE, dst_r, dst, dstw, TMP_REG2)); in sljit_emit_const()
3447 sljit_s32 dst_r; in sljit_emit_mov_addr() local
3453 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_mov_addr()
3454 PTR_FAIL_IF(push_inst(compiler, RD(dst_r))); in sljit_emit_mov_addr()
3463 PTR_FAIL_IF(emit_op_mem(compiler, WORD_SIZE | STORE, dst_r, dst, dstw, TMP_REG2)); in sljit_emit_mov_addr()