From: "Andreas Färber" <afaerber@suse.de>
To: qemu-devel@nongnu.org
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
"Mike Frysinger" <vapier@gentoo.org>,
"Jia Liu" <proljc@gmail.com>, TeLeMan <geleman@gmail.com>,
"Eduardo Habkost" <ehabkost@redhat.com>,
"Max Filippov" <jcmvbkbc@gmail.com>,
"Anthony Liguori" <anthony@codemonkey.ws>,
"Igor Mammedov" <imammedo@redhat.com>,
"Andreas Färber" <afaerber@suse.de>,
"Richard Henderson" <rth@twiddle.net>
Subject: [Qemu-devel] [PULL 00/24] QOM CPUState patch queue 2013-07-22
Date: Tue, 23 Jul 2013 04:53:32 +0200 [thread overview]
Message-ID: <1374548036-14471-1-git-send-email-afaerber@suse.de> (raw)
Hello Anthony,
This is my current QOM CPU patch queue for 1.6. Please pull.
CPUArchState: 313 -> 287
Thanks,
Andreas
Cc: Anthony Liguori <anthony@codemonkey.ws>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Jia Liu <proljc@gmail.com>
Cc: Peter Maydell <peter.maydell@linaro.org>
Cc: Max Filippov <jcmvbkbc@gmail.com>
Cc: TeLeMan <geleman@gmail.com>
Cc: Eduardo Habkost <ehabkost@redhat.com>
Cc: Igor Mammedov <imammedo@redhat.com>
Cc: Mike Frysinger <vapier@gentoo.org>
The following changes since commit 3464700f6aecb3e2aa9098839d90672d6b3fa974:
tests: Add test-bitops.c with some sextract tests (2013-07-22 15:41:49 -0500)
are available in the git repository at:
git://github.com/afaerber/qemu-cpu.git tags/qom-cpu-for-anthony
for you to fetch changes up to 6f152e9bc80aed81ea89aa8ad345cd71326b71fb:
linux-user: Use X86CPU property to retrieve CPUID family (2013-07-23 02:41:33 +0200)
----------------------------------------------------------------
QOM CPUState refactorings
* Fix NULL pointer dereference in gdbstub
* Introduce vaddr type
* Introduce CPUClass::set_pc()
* Introduce CPUClass::synchronize_from_tb()
* Introduce CPUClass::get_phys_page_debug()
* Introduce CPUClass::memory_rw_debug()
* Move singlestep_enabled and gdb_regs fields out of CPU_COMMON
* Adopt CPUState in more APIs
* Propagate CPUState in gdbstub
----------------------------------------------------------------
Andreas Färber (21):
gdbstub: Change GDBState::query_cpu to CPUState
cpu: Introduce vaddr type
cpu: Introduce CPUClass::set_pc() for gdb_set_cpu_pc()
target-m68k: Implement CPUClass::set_pc()
target-moxie: Implement CPUClass::set_pc()
target-unicore32: Implement CPUClass::set_pc()
cpu: Introduce CPUClass::synchronize_from_tb() for cpu_pc_from_tb()
cpu: Move singlestep_enabled field from CPU_COMMON to CPUState
gdbstub: Update gdb_handlesig() and gdb_signalled() Coding Style
cpu: Change cpu_single_step() argument to CPUState
kvm: Change kvm_{insert,remove}_breakpoint() argument to CPUState
gdbstub: Change syscall callback argument to CPUState
gdbstub: Change gdb_handlesig() argument to CPUState
gdbstub: Change gdb_{read,write}_register() argument to CPUState
cpu: Turn cpu_get_phys_page_debug() into a CPUClass hook
exec: Change cpu_memory_rw_debug() argument to CPUState
cpu: Introduce CPUClass::memory_rw_debug() for target_memory_rw_debug()
gdbstub: Change GDBState::{c,g}_cpu and find_cpu() to CPUState
cpu: Move gdb_regs field from CPU_COMMON to CPUState
gdbstub: Change gdb_register_coprocessor() argument to CPUState
linux-user: Use X86CPU property to retrieve CPUID family
Peter Maydell (1):
HACKING: Document vaddr type usage
Richard Henderson (2):
target-alpha: Copy singlestep_enabled to DisasContext
target-alpha: Copy implver to DisasContext
HACKING | 19 ++-
bsd-user/main.c | 10 +-
cpu-exec.c | 10 +-
cpus.c | 6 +-
disas.c | 4 +-
exec.c | 36 +++---
gdbstub.c | 266 ++++++++++++++++++++----------------------
hw/i386/kvmvapic.c | 78 +++++++------
hw/xtensa/xtensa_lx60.c | 8 +-
hw/xtensa/xtensa_sim.c | 10 +-
include/exec/cpu-all.h | 14 +--
include/exec/cpu-defs.h | 3 -
include/exec/gdbstub.h | 6 +-
include/exec/softmmu-semi.h | 18 +--
include/qom/cpu.h | 113 +++++++++---------
include/sysemu/kvm.h | 4 +-
kvm-all.c | 12 +-
kvm-stub.c | 4 +-
linux-user/cpu-uname.c | 10 +-
linux-user/main.c | 35 +++---
linux-user/signal.c | 3 +-
monitor.c | 2 +-
target-alpha/cpu-qom.h | 1 +
target-alpha/cpu.c | 15 ++-
target-alpha/cpu.h | 5 -
target-alpha/helper.c | 5 +-
target-alpha/translate.c | 21 ++--
target-arm/arm-semi.c | 10 +-
target-arm/cpu-qom.h | 2 +
target-arm/cpu.c | 13 ++-
target-arm/cpu.h | 5 -
target-arm/helper.c | 15 ++-
target-arm/translate.c | 7 +-
target-cris/cpu-qom.h | 2 +
target-cris/cpu.c | 11 ++
target-cris/cpu.h | 4 -
target-cris/helper.c | 7 +-
target-cris/translate.c | 7 +-
target-i386/cpu-qom.h | 2 +
target-i386/cpu.c | 19 ++-
target-i386/cpu.h | 5 -
target-i386/helper.c | 12 +-
target-i386/kvm.c | 20 ++--
target-i386/translate.c | 5 +-
target-lm32/cpu-qom.h | 1 +
target-lm32/cpu.c | 13 ++-
target-lm32/cpu.h | 5 -
target-lm32/helper.c | 6 +-
target-lm32/translate.c | 7 +-
target-m68k/cpu-qom.h | 1 +
target-m68k/cpu.c | 11 ++
target-m68k/cpu.h | 5 -
target-m68k/helper.c | 5 +-
target-m68k/m68k-semi.c | 5 +-
target-m68k/translate.c | 7 +-
target-microblaze/cpu-qom.h | 1 +
target-microblaze/cpu.c | 13 ++-
target-microblaze/cpu.h | 5 -
target-microblaze/helper.c | 4 +-
target-microblaze/translate.c | 8 +-
target-mips/cpu-qom.h | 1 +
target-mips/cpu.c | 30 ++++-
target-mips/cpu.h | 7 --
target-mips/helper.c | 7 +-
target-mips/translate.c | 11 +-
target-moxie/cpu.c | 13 ++-
target-moxie/cpu.h | 6 +-
target-moxie/helper.c | 11 +-
target-moxie/translate.c | 5 +-
target-openrisc/cpu.c | 13 ++-
target-openrisc/cpu.h | 6 +-
target-openrisc/mmu.c | 5 +-
target-openrisc/translate.c | 7 +-
target-ppc/cpu-qom.h | 1 +
target-ppc/cpu.h | 5 -
target-ppc/mmu_helper.c | 4 +-
target-ppc/translate.c | 8 +-
target-ppc/translate_init.c | 26 +++--
target-s390x/cpu-qom.h | 1 +
target-s390x/cpu.c | 11 ++
target-s390x/cpu.h | 5 -
target-s390x/helper.c | 5 +-
target-s390x/translate.c | 5 +-
target-sh4/cpu-qom.h | 1 +
target-sh4/cpu.c | 20 ++++
target-sh4/cpu.h | 6 -
target-sh4/helper.c | 5 +-
target-sh4/translate.c | 8 +-
target-sparc/cpu-qom.h | 1 +
target-sparc/cpu.c | 26 ++++-
target-sparc/cpu.h | 11 +-
target-sparc/mmu_helper.c | 22 ++--
target-sparc/translate.c | 3 +-
target-unicore32/cpu-qom.h | 1 +
target-unicore32/cpu.c | 11 ++
target-unicore32/cpu.h | 5 -
target-unicore32/softmmu.c | 7 +-
target-unicore32/translate.c | 7 +-
target-xtensa/cpu-qom.h | 1 +
target-xtensa/cpu.c | 11 ++
target-xtensa/cpu.h | 5 -
target-xtensa/helper.c | 7 +-
target-xtensa/translate.c | 7 +-
target-xtensa/xtensa-semi.c | 14 +--
104 files changed, 783 insertions(+), 550 deletions(-)
next reply other threads:[~2013-07-23 2:54 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-23 2:53 Andreas Färber [this message]
2013-07-23 2:53 ` [Qemu-devel] [PULL 01/24] gdbstub: Change GDBState::query_cpu to CPUState Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 02/24] cpu: Introduce vaddr type Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 03/24] HACKING: Document vaddr type usage Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 04/24] cpu: Introduce CPUClass::set_pc() for gdb_set_cpu_pc() Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 05/24] target-m68k: Implement CPUClass::set_pc() Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 06/24] target-moxie: " Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 07/24] target-unicore32: " Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 08/24] cpu: Introduce CPUClass::synchronize_from_tb() for cpu_pc_from_tb() Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 09/24] target-alpha: Copy singlestep_enabled to DisasContext Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 10/24] target-alpha: Copy implver " Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 11/24] cpu: Move singlestep_enabled field from CPU_COMMON to CPUState Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 12/24] gdbstub: Update gdb_handlesig() and gdb_signalled() Coding Style Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 13/24] cpu: Change cpu_single_step() argument to CPUState Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 14/24] kvm: Change kvm_{insert, remove}_breakpoint() " Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 15/24] gdbstub: Change syscall callback " Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 16/24] gdbstub: Change gdb_handlesig() " Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 17/24] gdbstub: Change gdb_{read, write}_register() " Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 18/24] cpu: Turn cpu_get_phys_page_debug() into a CPUClass hook Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 19/24] exec: Change cpu_memory_rw_debug() argument to CPUState Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 20/24] cpu: Introduce CPUClass::memory_rw_debug() for target_memory_rw_debug() Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 21/24] gdbstub: Change GDBState::{c, g}_cpu and find_cpu() to CPUState Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 22/24] cpu: Move gdb_regs field from CPU_COMMON " Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 23/24] gdbstub: Change gdb_register_coprocessor() argument " Andreas Färber
2013-07-23 2:53 ` [Qemu-devel] [PULL 24/24] linux-user: Use X86CPU property to retrieve CPUID family Andreas Färber
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1374548036-14471-1-git-send-email-afaerber@suse.de \
--to=afaerber@suse.de \
--cc=anthony@codemonkey.ws \
--cc=ehabkost@redhat.com \
--cc=geleman@gmail.com \
--cc=imammedo@redhat.com \
--cc=jcmvbkbc@gmail.com \
--cc=peter.maydell@linaro.org \
--cc=proljc@gmail.com \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
--cc=vapier@gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).