mbox series

[PULL,00/17] M68k for 2.12 patches

Message ID 20180104164251.26494-1-laurent@vivier.eu
Headers show
Series M68k for 2.12 patches | expand

Message

Laurent Vivier Jan. 4, 2018, 4:42 p.m. UTC
The following changes since commit 281f327487c9c9b1599f93c589a408bbf4a651b8:

  Merge remote-tracking branch 'remotes/vivier/tags/m68k-for-2.12-pull-request' into staging (2017-12-22 00:11:36 +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 cc5230267678c26b7f96157086f45fd8a347eb21:

  target/m68k: fix m68k_cpu_dump_state() (2018-01-04 17:24:35 +0100)

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

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

Laurent Vivier (17):
  target-m68k: sync CC_OP before gen_jmp_tb()
  target/m68k: fix gen_get_ccr()
  linux-user, m68k: correctly manage SR in context
  target/m68k: use insn_pc to generate instruction fault address
  target/m68k: add CPU_LOG_INT trace
  target/m68k: manage 680x0 stack frames
  target/m68k: add chk and chk2
  target/m68k: add move16
  target/m68k: softmmu cleanup
  target/m68k: add cpush/cinv
  target/m68k: add reset
  target/m68k: implement fsave/frestore
  target/m68k: move CCR/SR functions
  target/m68k: add 680x0 "move to SR" instruction
  target/m68k: add andi/ori/eori to SR/CCR
  target/m68k: add the Interrupt Stack Pointer
  target/m68k: fix m68k_cpu_dump_state()

 linux-user/main.c       |   7 +
 linux-user/signal.c     |   7 +-
 target/m68k/cpu.c       |  20 +-
 target/m68k/cpu.h       |  84 +++++++-
 target/m68k/gdbstub.c   |   2 +-
 target/m68k/helper.c    |  99 +++++++++-
 target/m68k/helper.h    |  11 +-
 target/m68k/monitor.c   |   1 +
 target/m68k/op_helper.c | 338 +++++++++++++++++++++++++++++++-
 target/m68k/translate.c | 497 ++++++++++++++++++++++++++++++++++++++----------
 10 files changed, 937 insertions(+), 129 deletions(-)

Comments

Peter Maydell Jan. 8, 2018, 10:13 p.m. UTC | #1
On 4 January 2018 at 16:42, Laurent Vivier <laurent@vivier.eu> wrote:
> The following changes since commit 281f327487c9c9b1599f93c589a408bbf4a651b8:
>
>   Merge remote-tracking branch 'remotes/vivier/tags/m68k-for-2.12-pull-request' into staging (2017-12-22 00:11:36 +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 cc5230267678c26b7f96157086f45fd8a347eb21:
>
>   target/m68k: fix m68k_cpu_dump_state() (2018-01-04 17:24:35 +0100)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Laurent Vivier (17):
>   target-m68k: sync CC_OP before gen_jmp_tb()
>   target/m68k: fix gen_get_ccr()
>   linux-user, m68k: correctly manage SR in context
>   target/m68k: use insn_pc to generate instruction fault address
>   target/m68k: add CPU_LOG_INT trace
>   target/m68k: manage 680x0 stack frames
>   target/m68k: add chk and chk2
>   target/m68k: add move16
>   target/m68k: softmmu cleanup
>   target/m68k: add cpush/cinv
>   target/m68k: add reset
>   target/m68k: implement fsave/frestore
>   target/m68k: move CCR/SR functions
>   target/m68k: add 680x0 "move to SR" instruction
>   target/m68k: add andi/ori/eori to SR/CCR
>   target/m68k: add the Interrupt Stack Pointer
>   target/m68k: fix m68k_cpu_dump_state()
>

Applied, thanks.

-- PMM