| sljitNativeARM_32.c | 1412 	sljit_s32 dst_reg;  local in function:emit_op 1501 	dst_reg = SLOW_IS_REG(dst) ? dst : TMP_REG2;
 1512 		if (FAST_IS_REG(src2) && dst_reg != TMP_REG2)
 1518 		src2_reg = (op <= SLJIT_MOVU_P) ? dst_reg : TMP_REG2;
 1528 	FAIL_IF(emit_single_op(compiler, op, flags, dst_reg, src1_reg, src2_reg));
 1533 	return emit_op_mem(compiler, inp_flags, dst_reg, dst, dstw, TMP_REG1);
 2215 	sljit_s32 dst_reg, flags = GET_ALL_FLAGS(op);  local in function:sljit_emit_op_flags
 2228 	dst_reg = FAST_IS_REG(dst) ? dst : TMP_REG2;
 2231 		FAIL_IF(push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, dst_reg, SLJIT_UNUSED, SRC2_IMM | 0)));
 2232 		FAIL_IF(push_inst(compiler, (EMIT_DATA_PROCESS_INS(MOV_DP, 0, dst_reg, SLJIT_UNUSED, SRC2_IMM | 1) & ~COND_MASK) | cc))
 [all...]
 |