qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 0/4] S/390 host and target support


From: Ulrich Hecht
Subject: [Qemu-devel] [PATCH 0/4] S/390 host and target support
Date: Fri, 24 Jul 2009 19:08:08 +0200

Here's the host support again, and the s390x-linux-user target, which I
think are both ready for prime time now.

The target has received an inordinate number of fixes and new instructions
and now passes several test suites (including openssl and gcc executable
tests), can compile source code, run ssh, rpm, you name it. It also fares
reasonably well at LTP, especially with the bundle of syscall fixes I'm
going to post later.

Performance has improved dramatically since last time, by a factor of six or
so. I measured md5sum clocking about 4.8 times as many cycles on my Phenom
with qemu-s390x as natively on our z10.

The host part has not changed dramatically. A small fix, a small
optimization, and a bit of formatting to comply with the coding style. S/390
on S/390 emulation works, too. :)

CU
Uli

Ulrich Hecht (4):
  S/390 CPU emulation
  S/390 host/target build system support
  S/390 host support for TCG
  linux-user: S/390 64-bit (s390x) support

 Makefile.target                  |    9 +
 configure                        |   20 +-
 cpu-exec.c                       |   42 +
 disas.c                          |    3 +
 dyngen-exec.h                    |    2 +-
 linux-user/elfload.c             |   18 +
 linux-user/main.c                |   82 ++
 linux-user/s390x/syscall.h       |   25 +
 linux-user/s390x/syscall_nr.h    |  348 ++++++
 linux-user/s390x/target_signal.h |   26 +
 linux-user/s390x/termbits.h      |  283 +++++
 linux-user/signal.c              |  314 +++++
 linux-user/syscall.c             |   18 +-
 linux-user/syscall_defs.h        |   56 +-
 qemu-binfmt-conf.sh              |    5 +-
 s390-dis.c                       |    4 +-
 s390x.ld                         |  194 +++
 target-s390x/cpu.h               |  131 ++
 target-s390x/exec.h              |   51 +
 target-s390x/helper.c            |   81 ++
 target-s390x/helpers.h           |  128 ++
 target-s390x/op_helper.c         | 1719 ++++++++++++++++++++++++++
 target-s390x/translate.c         | 2479 ++++++++++++++++++++++++++++++++++++++
 tcg/s390/tcg-target.c            | 1145 ++++++++++++++++++
 tcg/s390/tcg-target.h            |   76 ++
 25 files changed, 7244 insertions(+), 15 deletions(-)
 create mode 100644 linux-user/s390x/syscall.h
 create mode 100644 linux-user/s390x/syscall_nr.h
 create mode 100644 linux-user/s390x/target_signal.h
 create mode 100644 linux-user/s390x/termbits.h
 create mode 100644 s390x.ld
 create mode 100644 target-s390x/cpu.h
 create mode 100644 target-s390x/exec.h
 create mode 100644 target-s390x/helper.c
 create mode 100644 target-s390x/helpers.h
 create mode 100644 target-s390x/op_helper.c
 create mode 100644 target-s390x/translate.c
 create mode 100644 tcg/s390/tcg-target.c
 create mode 100644 tcg/s390/tcg-target.h





reply via email to

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