qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/5] M68k for 2.12 patches
@ 2018-03-04 17:32 Laurent Vivier
  2018-03-04 17:32 ` [Qemu-devel] [PULL 1/5] target/m68k: TCGv returned by gen_load() must be freed Laurent Vivier
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Laurent Vivier @ 2018-03-04 17:32 UTC (permalink / raw)
  To: qemu-devel; +Cc: Aurelien Jarno, Laurent Vivier

The following changes since commit 136c67e07869227b21b3f627316e03679ce7b738:

  Merge remote-tracking branch 'remotes/bkoppelmann/tags/pull-tricore-2018-03-02' into staging (2018-03-02 16:56:20 +0000)

are available in the Git repository at:

  git://github.com/vivier/qemu-m68k.git tags/m68k-for-2.12-pull-request

for you to fetch changes up to 0d379c1709aa6b2d09dd3b493bfdf3a5fe6debcd:

  target/m68k: add fscale, fgetman and fgetexp (2018-03-04 17:27:59 +0100)

----------------------------------------------------------------

----------------------------------------------------------------

Laurent Vivier (5):
  target/m68k: TCGv returned by gen_load() must be freed
  softfloat: export some functions
  target/m68k: add fmod/frem
  softfloat: use floatx80_infinity in softfloat
  target/m68k: add fscale, fgetman and fgetexp

 fpu/softfloat-specialize.h              |  17 ++-
 fpu/softfloat.c                         | 130 +++++------------
 {fpu => include/fpu}/softfloat-macros.h |  10 +-
 include/fpu/softfloat.h                 | 134 ++++++++++++++++-
 target/m68k/Makefile.objs               |   3 +-
 target/m68k/cpu.h                       |   1 +
 target/m68k/fpu_helper.c                |  50 ++++++-
 target/m68k/helper.h                    |   5 +
 target/m68k/softfloat.c                 | 249 ++++++++++++++++++++++++++++++++
 target/m68k/softfloat.h                 |  29 ++++
 target/m68k/translate.c                 |  26 ++++
 11 files changed, 548 insertions(+), 106 deletions(-)
 rename {fpu => include/fpu}/softfloat-macros.h (98%)
 create mode 100644 target/m68k/softfloat.c
 create mode 100644 target/m68k/softfloat.h

-- 
2.14.3

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [Qemu-devel] [PULL 0/5] M68k for 2.12 patches
@ 2017-12-21 19:36 Laurent Vivier
  2017-12-21 19:57 ` no-reply
  2017-12-22 12:26 ` Peter Maydell
  0 siblings, 2 replies; 13+ messages in thread
From: Laurent Vivier @ 2017-12-21 19:36 UTC (permalink / raw)
  To: qemu-devel; +Cc: Laurent Vivier

The following changes since commit 23bafd75cd979ad3a21af10273c5a0c5d67d068b:

  Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (2017-12-21 16:34:23 +0000)

are available in the Git repository at:

  git://github.com/vivier/qemu-m68k.git tags/m68k-for-2.12-pull-request

for you to fetch changes up to 598a29f3606c4c7042a1ca3f1116663d0a60867c:

  tests/boot-serial-test: Add support for the mcf5208evb board (2017-12-21 20:13:18 +0100)

----------------------------------------------------------------

----------------------------------------------------------------

Laurent Vivier (4):
  Split adb.c into adb.c, adb-mouse.c and adb-kbd.c
  target/m68k: remove unused variable gen_throws_exception
  target/m68k: add monitor.c
  target/m68k: fix set_cc_op()

Thomas Huth (1):
  tests/boot-serial-test: Add support for the mcf5208evb board

 hw/input/Makefile.objs    |   2 +-
 hw/input/adb-internal.h   |  49 ++++
 hw/input/adb-kbd.c        | 400 +++++++++++++++++++++++++++++
 hw/input/adb-mouse.c      | 254 +++++++++++++++++++
 hw/input/adb.c            | 622 +---------------------------------------------
 hw/input/trace-events     |   8 +
 target/m68k/Makefile.objs |   1 +
 target/m68k/cpu.h         |   2 +-
 target/m68k/monitor.c     |  39 +++
 target/m68k/translate.c   |  11 +-
 tests/Makefile.include    |   2 +
 tests/boot-serial-test.c  |  10 +
 12 files changed, 768 insertions(+), 632 deletions(-)
 create mode 100644 hw/input/adb-internal.h
 create mode 100644 hw/input/adb-kbd.c
 create mode 100644 hw/input/adb-mouse.c
 create mode 100644 target/m68k/monitor.c

-- 
2.14.3

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2018-05-08 10:27 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-04 17:32 [Qemu-devel] [PULL 0/5] M68k for 2.12 patches Laurent Vivier
2018-03-04 17:32 ` [Qemu-devel] [PULL 1/5] target/m68k: TCGv returned by gen_load() must be freed Laurent Vivier
2018-03-04 17:32 ` [Qemu-devel] [PULL 2/5] softfloat: export some functions Laurent Vivier
2018-03-04 17:32 ` [Qemu-devel] [PULL 3/5] target/m68k: add fmod/frem Laurent Vivier
2018-05-08 10:27   ` Peter Maydell
2018-03-04 17:32 ` [Qemu-devel] [PULL 4/5] softfloat: use floatx80_infinity in softfloat Laurent Vivier
2018-03-04 17:32 ` [Qemu-devel] [PULL 5/5] target/m68k: add fscale, fgetman and fgetexp Laurent Vivier
2018-03-05 14:27 ` [Qemu-devel] [PULL 0/5] M68k for 2.12 patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2017-12-21 19:36 Laurent Vivier
2017-12-21 19:57 ` no-reply
2017-12-21 20:27   ` Laurent Vivier
2017-12-21 20:48     ` Laurent Vivier
2017-12-22 12:26 ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).