From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:52384) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QS9Kc-0000Yy-1D for qemu-devel@nongnu.org; Thu, 02 Jun 2011 10:57:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QS9KZ-0002aq-Ph for qemu-devel@nongnu.org; Thu, 02 Jun 2011 10:57:05 -0400 Received: from mail-gx0-f173.google.com ([209.85.161.173]:62285) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QS9KZ-0002ah-87 for qemu-devel@nongnu.org; Thu, 02 Jun 2011 10:57:03 -0400 Received: by gxk26 with SMTP id 26so425848gxk.4 for ; Thu, 02 Jun 2011 07:57:02 -0700 (PDT) Sender: Richard Henderson Message-ID: <4DE7A4BA.1050000@twiddle.net> Date: Thu, 02 Jun 2011 07:56:58 -0700 From: Richard Henderson MIME-Version: 1.0 References: <1306182526-12081-1-git-send-email-rth@twiddle.net> <4DE001C5.8080207@twiddle.net> In-Reply-To: <4DE001C5.8080207@twiddle.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 00/26] Alpha system emulation, v5 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Ping^2. r~ On 05/27/2011 12:55 PM, Richard Henderson wrote: > Ping? > > > r~ > > On 05/23/2011 01:28 PM, Richard Henderson wrote: >> Changes from v4 -> v5 >> >> * Claim official ownership of the Alpha port, rather >> than leave it as "unmaintained". >> >> * Drop all the patches in hw/ for now. While they're necessary >> to actually make the port work, these are the subset of the whole >> patchset for which I'm confident I'm doing the Right Thing and >> don't really need patch review. >> >> No mistake, patch review is still welcome but no one has posted >> *anything* substantive for v1->v4. >> >> Please pull. >> >> >> r~ >> >> >> The following changes since commit dcfd14b3741983c466ad92fa2ae91eeafce3e5d5: >> >> Delete unused tb_invalidate_page_range (2011-05-22 10:47:28 +0000) >> >> are available in the git repository at: >> git://repo.or.cz/qemu/rth.git axp-next >> >> Richard Henderson (26): >> target-alpha: Claim ownership. >> target-alpha: Disassemble EV6 PALcode instructions. >> target-alpha: Single-step properly across branches. >> target-alpha: Remove partial support for palcode emulation. >> target-alpha: Fix translation of PALmode memory insns. >> target-alpha: Fix system store_conditional >> target-alpha: Cleanup MMU modes. >> target-alpha: Merge HW_REI and HW_RET implementations. >> target-alpha: Rationalize internal processor registers. >> target-alpha: Enable the alpha-softmmu target. >> target-alpha: Tidy exception constants. >> target-alpha: Tidy up arithmetic exceptions. >> target-alpha: Use do_restore_state for arithmetic exceptions. >> target-alpha: Add various symbolic constants. >> target-alpha: Use kernel mmu_idx for pal_mode. >> target-alpha: Add IPRs to be used by the emulation PALcode. >> target-alpha: Implement do_interrupt for system mode. >> target-alpha: Swap shadow registers moving to/from PALmode. >> target-alpha: All ISA checks to use TB->FLAGS. >> target-alpha: Disable interrupts properly. >> target-alpha: Implement more CALL_PAL values inline. >> target-alpha: Implement cpu_alpha_handle_mmu_fault for system mode. >> target-alpha: Remap PIO space for 43-bit KSEG for EV6. >> target-alpha: Trap for unassigned and unaligned addresses. >> target-alpha: Use a fixed frequency for the RPCC in system mode. >> target-alpha: Implement TLB flush primitives. >> >> MAINTAINERS | 4 +- >> Makefile.target | 3 +- >> alpha-dis.c | 4 - >> configure | 1 + >> cpu-exec.c | 33 +- >> default-configs/alpha-softmmu.mak | 9 + >> dis-asm.h | 3 + >> disas.c | 2 +- >> exec-all.h | 2 +- >> exec.c | 12 +- >> hw/alpha_palcode.c | 1048 ------------------------------------- >> linux-user/main.c | 50 +-- >> target-alpha/cpu.h | 375 ++++++-------- >> target-alpha/exec.h | 12 +- >> target-alpha/helper.c | 589 +++++++++------------ >> target-alpha/helper.h | 32 +- >> target-alpha/machine.c | 87 +++ >> target-alpha/op_helper.c | 278 +++++------ >> target-alpha/translate.c | 804 ++++++++++++++++------------ >> 19 files changed, 1179 insertions(+), 2169 deletions(-) >> create mode 100644 default-configs/alpha-softmmu.mak >> delete mode 100644 hw/alpha_palcode.c >> create mode 100644 target-alpha/machine.c >