Lines Matching refs:dst_r

1919 	sljit_s32 dst_r, flags;  in sljit_emit_op1()  local
1926 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG2; in sljit_emit_op1()
1965 FAIL_IF(emit_op_imm(compiler, SLJIT_MOV | ARG2_IMM, dst_r, TMP_REG2, (sljit_uw)srcw)); in sljit_emit_op1()
1967 FAIL_IF(emit_op_mem(compiler, flags, dst_r, src, srcw, TMP_REG1)); in sljit_emit_op1()
1969 return emit_op_imm(compiler, op, dst_r, TMP_REG2, (sljit_uw)src); in sljit_emit_op1()
1971 dst_r = src; in sljit_emit_op1()
1976 return emit_op_mem(compiler, flags | STORE, dst_r, dst, dstw, TMP_REG1); in sljit_emit_op1()
1993 emit_op_imm(compiler, op, dst_r, TMP_REG2, (sljit_uw)src); in sljit_emit_op1()
1996 return emit_op_mem(compiler, flags | STORE, dst_r, dst, dstw, TMP_REG1); in sljit_emit_op1()
2160 sljit_s32 size, dst_r; in sljit_emit_op_dst() local
2186 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG2; in sljit_emit_op_dst()
2187 …FAIL_IF(emit_op_mem(compiler, WORD_SIZE, dst_r, SLJIT_MEM1(SLJIT_SP), compiler->local_size + size,… in sljit_emit_op_dst()
2301 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_w() local
2314 FAIL_IF(push_inst32(compiler, ins | VD4(dst_r) | VM4(TMP_FREG1))); in sljit_emit_fop1_conv_f64_from_w()
2365 sljit_s32 dst_r; in sljit_emit_fop1() local
2372 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1()
2378 FAIL_IF(emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, dst_r, src, srcw)); in sljit_emit_fop1()
2379 src = dst_r; in sljit_emit_fop1()
2384 if (src != dst_r) { in sljit_emit_fop1()
2386 FAIL_IF(push_inst32(compiler, VMOV_F32 | (op & SLJIT_32) | VD4(dst_r) | VM4(src))); in sljit_emit_fop1()
2388 dst_r = src; in sljit_emit_fop1()
2392 FAIL_IF(push_inst32(compiler, VNEG_F32 | (op & SLJIT_32) | VD4(dst_r) | VM4(src))); in sljit_emit_fop1()
2395 FAIL_IF(push_inst32(compiler, VABS_F32 | (op & SLJIT_32) | VD4(dst_r) | VM4(src))); in sljit_emit_fop1()
2398 FAIL_IF(push_inst32(compiler, VCVT_F64_F32 | (op & SLJIT_32) | VD4(dst_r) | VM4(src))); in sljit_emit_fop1()
2404 return emit_fop_mem(compiler, (op & SLJIT_32), dst_r, dst, dstw); in sljit_emit_fop1()
2413 sljit_s32 dst_r; in sljit_emit_fop2() local
2423 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop2()
2435 FAIL_IF(push_inst32(compiler, VADD_F32 | (op & SLJIT_32) | VD4(dst_r) | VN4(src1) | VM4(src2))); in sljit_emit_fop2()
2438 FAIL_IF(push_inst32(compiler, VSUB_F32 | (op & SLJIT_32) | VD4(dst_r) | VN4(src1) | VM4(src2))); in sljit_emit_fop2()
2441 FAIL_IF(push_inst32(compiler, VMUL_F32 | (op & SLJIT_32) | VD4(dst_r) | VN4(src1) | VM4(src2))); in sljit_emit_fop2()
2444 FAIL_IF(push_inst32(compiler, VDIV_F32 | (op & SLJIT_32) | VD4(dst_r) | VN4(src1) | VM4(src2))); in sljit_emit_fop2()
2448 FAIL_IF(push_inst32(compiler, VABS_F32 | (op & SLJIT_32) | VD4(dst_r) | VM4(src1))); in sljit_emit_fop2()
2451 return push_inst32(compiler, VNEG_F32 | (op & SLJIT_32) | VD4(dst_r) | VM4(dst_r)); in sljit_emit_fop2()
3058 sljit_s32 dst_r, flags = GET_ALL_FLAGS(op); in sljit_emit_op_flags() local
3067 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_op_flags()
3071 if (reg_map[dst_r] > 7) { in sljit_emit_op_flags()
3072 FAIL_IF(push_inst32(compiler, MOV_WI | RD4(dst_r) | 1)); in sljit_emit_op_flags()
3073 FAIL_IF(push_inst32(compiler, MOV_WI | RD4(dst_r) | 0)); in sljit_emit_op_flags()
3076 FAIL_IF(push_inst16(compiler, MOVSI | RDN3(dst_r) | 1)); in sljit_emit_op_flags()
3077 FAIL_IF(push_inst16(compiler, MOVSI | RDN3(dst_r) | 0)); in sljit_emit_op_flags()
3089 FAIL_IF(push_inst32(compiler, ANDI | RN4(dst_r) | RD4(dst_r) | 1)); in sljit_emit_op_flags()
3090 FAIL_IF(push_inst32(compiler, ANDI | RN4(dst_r) | RD4(dst_r) | 0)); in sljit_emit_op_flags()
3094 FAIL_IF(push_inst32(compiler, ((op == SLJIT_OR) ? ORRI : EORI) | RN4(dst_r) | RD4(dst_r) | 1)); in sljit_emit_op_flags()
3104 return push_inst32(compiler, MOV_W | SET_FLAGS | RD4(TMP_REG1) | RM4(dst_r)); in sljit_emit_op_flags()
4075 sljit_s32 dst_r; in sljit_emit_simd_sign() local
4130 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_simd_sign()
4131 …FAIL_IF(push_inst32(compiler, VMOV_s | (1 << 20) | (1 << 23) | (0x2 << 21) | RT4(dst_r) | VN4(TMP_… in sljit_emit_simd_sign()
4136 FAIL_IF(push_inst32(compiler, ORR_W | RD4(dst_r) | RN4(dst_r) | RM4(TMP_REG2) | (0x2 << 12))); in sljit_emit_simd_sign()
4139 if (dst_r == TMP_REG1) in sljit_emit_simd_sign()
4247 sljit_s32 dst_r; in sljit_emit_const() local
4257 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_const()
4258 PTR_FAIL_IF(emit_imm32_const(compiler, dst_r, (sljit_uw)init_value)); in sljit_emit_const()
4261 PTR_FAIL_IF(emit_op_mem(compiler, WORD_SIZE | STORE, dst_r, dst, dstw, TMP_REG2)); in sljit_emit_const()
4268 sljit_s32 dst_r; in sljit_emit_mov_addr() local
4278 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_mov_addr()
4279 PTR_FAIL_IF(push_inst16(compiler, RDN3(dst_r))); in sljit_emit_mov_addr()
4283 PTR_FAIL_IF(emit_op_mem(compiler, WORD_SIZE | STORE, dst_r, dst, dstw, TMP_REG2)); in sljit_emit_mov_addr()