qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v9 0/4] Moxie CPU port


From: Anthony Green
Subject: [Qemu-devel] [PATCH v9 0/4] Moxie CPU port
Date: Sat, 9 Mar 2013 08:34:56 -0500

This version of the patch implements 3 changes...

1. Blue's suggestion of lazy CC calculation, dramatically simplifying
   the branching code.
2. Blue's suggestion of turning brk instruction into an exception.
3. Richard's div helper cpu_restore_state suggestion.

Please consider merging this version of the patch.

Thank you,

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               |   2 +
 include/sysemu/arch_init.h        |   1 +
 qapi-schema.json                  |   6 +-
 target-moxie/Makefile.objs        |   2 +
 target-moxie/cpu.c                | 172 +++++++
 target-moxie/cpu.h                | 169 +++++++
 target-moxie/helper.c             | 171 +++++++
 target-moxie/helper.h             |  10 +
 target-moxie/machine.c            |  28 ++
 target-moxie/machine.h            |   2 +
 target-moxie/mmu.c                |  36 ++
 target-moxie/mmu.h                |  19 +
 target-moxie/translate.c          | 918 ++++++++++++++++++++++++++++++++++++++
 23 files changed, 2099 insertions(+), 4 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]