From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55283) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UC8dl-0005kc-Mm for qemu-devel@nongnu.org; Sun, 03 Mar 2013 08:07:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UC8dk-0007Xw-Mn for qemu-devel@nongnu.org; Sun, 03 Mar 2013 08:07:45 -0500 Received: from mail-ia0-x22f.google.com ([2607:f8b0:4001:c02::22f]:33351) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UC8dk-0007Xo-IV for qemu-devel@nongnu.org; Sun, 03 Mar 2013 08:07:44 -0500 Received: by mail-ia0-f175.google.com with SMTP id k38so1842781iah.34 for ; Sun, 03 Mar 2013 05:07:43 -0800 (PST) From: Anthony Green Date: Sun, 3 Mar 2013 08:07:34 -0500 Message-Id: <1362316058-13995-1-git-send-email-green@moxielogic.com> Subject: [Qemu-devel] [PATCH v7 0/4] Moxie CPU port List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony Green This version consolidates the helper file (helper.c & op_helper.c) and addresses the signed division of INT_MIN by -1 issue (which is now == 0x8000000). Hopefully this is looking much better to everybody now. Thanks! AG Anthony Green (4): Add moxie target code Add moxie disassembler Add sample moxie system Add top level changes for moxie MAINTAINERS | 5 + arch_init.c | 2 + configure | 9 +- cpu-exec.c | 2 + default-configs/moxie-softmmu.mak | 2 + disas.c | 6 + disas/Makefile.objs | 1 + disas/moxie.c | 360 +++++++++++++ hw/moxie/Makefile.objs | 6 + hw/moxie/moxiesim.c | 174 +++++++ include/disas/bfd.h | 66 +-- include/sysemu/arch_init.h | 1 + qapi-schema.json | 6 +- target-moxie/Makefile.objs | 2 + target-moxie/cpu.c | 172 +++++++ target-moxie/cpu.h | 170 +++++++ target-moxie/helper.c | 170 +++++++ target-moxie/helper.h | 9 + target-moxie/machine.c | 27 + target-moxie/machine.h | 2 + target-moxie/mmu.c | 36 ++ target-moxie/mmu.h | 19 + target-moxie/translate.c | 1003 +++++++++++++++++++++++++++++++++++++ 23 files changed, 2214 insertions(+), 36 deletions(-) create mode 100644 default-configs/moxie-softmmu.mak create mode 100644 disas/moxie.c create mode 100644 hw/moxie/Makefile.objs create mode 100644 hw/moxie/moxiesim.c create mode 100644 target-moxie/Makefile.objs create mode 100644 target-moxie/cpu.c create mode 100644 target-moxie/cpu.h create mode 100644 target-moxie/helper.c create mode 100644 target-moxie/helper.h create mode 100644 target-moxie/machine.c create mode 100644 target-moxie/machine.h create mode 100644 target-moxie/mmu.c create mode 100644 target-moxie/mmu.h create mode 100644 target-moxie/translate.c -- 1.8.1.4