qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 00/22] QOM CPUState patch queue 2015-07-07
@ 2015-07-07 17:16 Andreas Färber
  2015-07-07 17:16 ` [Qemu-devel] [PULL v2 01/22] cpu: No need to zero-initialize CPUState::numa_node Andreas Färber
                   ` (22 more replies)
  0 siblings, 23 replies; 32+ messages in thread
From: Andreas Färber @ 2015-07-07 17:16 UTC (permalink / raw)
  To: qemu-devel
  Cc: Peter Maydell, Peter Crosthwaite, Andreas Färber,
	Eduardo Habkost

Hello Peter,

This is my QOM CPU patch queue. Please pull.

Note: For time reasons I did not give this queue as much testing as usual,
in particular BSD and non-x86 KVM hosts were not covered.

Regards,
Andreas

Cc: Peter Maydell <peter.maydell@linaro.org>

Cc: Eduardo Habkost <ehabkost@redhat.com>
Cc: Peter Crosthwaite <peter.crosthwaite@xilinx.com>

The following changes since commit f2562fbb7ac54d597cfe05f613d30296d1850d1b:

  Merge remote-tracking branch 'remotes/stefanha/tags/net-pull-request' into staging (2015-07-07 15:48:49 +0100)

are available in the git repository at:

  git://github.com/afaerber/qemu-cpu.git tags/qom-cpu-for-peter

for you to fetch changes up to cf6f1442257d53cf617545dd150efe26771ec31c:

  disas: cris: QOMify target specific disas setup (2015-07-07 18:35:39 +0200)

----------------------------------------------------------------
QOM CPUState and X86CPU

* Further QOM'ification of CPU initialization
* Propagation of CPUState arguments and elimination of ENV_GET_CPU() usage
* cpu_set_pc() abstraction
* CPUClass::disas_set_info() hook

----------------------------------------------------------------
Bharata B Rao (3):
      cpu: Add Error argument to cpu_exec_init()
      cpu: Convert cpu_index into a bitmap
      target-ppc: Move cpu_exec_init() call to realize function

Eduardo Habkost (3):
      cpu: No need to zero-initialize CPUState::numa_node
      cpu: Initialize breakpoint/watchpoint lists in cpu_common_initfn()
      cpu: Reorder cpu->as, cpu->thread_id, cpu->memory_dispatch init

Peter Crosthwaite (16):
      translate-all: Change tb_flush() env argument to cpu
      gdbstub: Change gdbserver_fork() to accept cpu instead of env
      cpu: Change tcg_cpu_exec() arg to cpu, not env
      cpu: Change cpu_exec_init() arg to cpu, not env
      cpu-exec: Purge all uses of ENV_GET_CPU()
      cpu: Add wrapper for the set_pc() hook
      gdbstub: Use cpu_set_pc() helper
      hw/arm/boot: Use cpu_set_pc()
      microblaze: boot: Use cpu_set_pc()
      disas: Add print_insn to disassemble info
      disas: QOMify target specific setup
      disas: arm-a64: Make printfer and stream variable
      disas: arm: QOMify target specific disas setup
      disas: microblaze: QOMify target specific disas setup
      disas: cris: Fix 0 buffer length case
      disas: cris: QOMify target specific disas setup

 bsd-user/main.c             |   6 ++-
 cpu-exec.c                  |  28 +++++------
 cpus.c                      |   8 ++-
 disas.c                     | 119 ++++++++++++++++----------------------------
 disas/arm-a64.cc            |  22 ++++++--
 disas/cris.c                |   6 +--
 exec.c                      |  71 ++++++++++++++++++++------
 gdbstub.c                   |  14 ++----
 hw/arm/boot.c               |  24 ++++-----
 hw/microblaze/boot.c        |   5 +-
 include/disas/bfd.h         |   6 +++
 include/exec/exec-all.h     |   4 +-
 include/exec/gdbstub.h      |   2 +-
 include/qom/cpu.h           |  19 +++++++
 linux-user/main.c           |  30 +++++------
 linux-user/signal.c         |   2 +-
 qom/cpu.c                   |   9 ++++
 target-alpha/cpu.c          |   2 +-
 target-alpha/cpu.h          |   2 +-
 target-alpha/sys_helper.c   |   2 +-
 target-arm/cpu.c            |  37 +++++++++++++-
 target-arm/cpu.h            |   2 +-
 target-cris/cpu.c           |  18 ++++++-
 target-cris/cpu.h           |   2 +-
 target-i386/cpu.c           |   2 +-
 target-i386/cpu.h           |   2 +-
 target-i386/translate.c     |   2 +-
 target-lm32/cpu.c           |   2 +-
 target-lm32/cpu.h           |   2 +-
 target-m68k/cpu.c           |   2 +-
 target-m68k/cpu.h           |   2 +-
 target-microblaze/cpu.c     |  10 +++-
 target-microblaze/cpu.h     |   2 +-
 target-mips/cpu.c           |   2 +-
 target-mips/cpu.h           |   2 +-
 target-moxie/cpu.c          |   2 +-
 target-moxie/cpu.h          |   2 +-
 target-openrisc/cpu.c       |   2 +-
 target-openrisc/cpu.h       |   2 +-
 target-ppc/cpu.h            |   2 +-
 target-ppc/translate_init.c |   9 +++-
 target-s390x/cpu.c          |   2 +-
 target-s390x/cpu.h          |   2 +-
 target-sh4/cpu.c            |   2 +-
 target-sh4/cpu.h            |   2 +-
 target-sparc/cpu.c          |   2 +-
 target-sparc/cpu.h          |   2 +-
 target-tricore/cpu.c        |   2 +-
 target-tricore/cpu.h        |   2 +-
 target-unicore32/cpu.c      |   2 +-
 target-unicore32/cpu.h      |   3 +-
 target-xtensa/cpu.c         |   2 +-
 target-xtensa/cpu.h         |   2 +-
 translate-all.c             |   6 +--
 54 files changed, 315 insertions(+), 205 deletions(-)

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

end of thread, other threads:[~2015-07-09  3:25 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-07 17:16 [Qemu-devel] [PULL v2 00/22] QOM CPUState patch queue 2015-07-07 Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 01/22] cpu: No need to zero-initialize CPUState::numa_node Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 02/22] cpu: Initialize breakpoint/watchpoint lists in cpu_common_initfn() Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 03/22] cpu: Reorder cpu->as, cpu->thread_id, cpu->memory_dispatch init Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 04/22] cpu: Add Error argument to cpu_exec_init() Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 05/22] cpu: Convert cpu_index into a bitmap Andreas Färber
2015-07-08 19:07   ` Andreas Färber
2015-07-09  3:16     ` Bharata B Rao
2015-07-09  3:25       ` Peter Crosthwaite
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 06/22] target-ppc: Move cpu_exec_init() call to realize function Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 07/22] translate-all: Change tb_flush() env argument to cpu Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 08/22] gdbstub: Change gdbserver_fork() to accept cpu instead of env Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 09/22] cpu: Change tcg_cpu_exec() arg to cpu, not env Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 10/22] cpu: Change cpu_exec_init() " Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 11/22] cpu-exec: Purge all uses of ENV_GET_CPU() Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 12/22] cpu: Add wrapper for the set_pc() hook Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 13/22] gdbstub: Use cpu_set_pc() helper Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 14/22] hw/arm/boot: Use cpu_set_pc() Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 15/22] microblaze: boot: " Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 16/22] disas: Add print_insn to disassemble info Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 17/22] disas: QOMify target specific setup Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 18/22] disas: arm-a64: Make printfer and stream variable Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 19/22] disas: arm: QOMify target specific disas setup Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 20/22] disas: microblaze: " Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 21/22] disas: cris: Fix 0 buffer length case Andreas Färber
2015-07-07 17:16 ` [Qemu-devel] [PULL v2 22/22] disas: cris: QOMify target specific disas setup Andreas Färber
2015-07-08 11:33 ` [Qemu-devel] [PULL v2 00/22] QOM CPUState patch queue 2015-07-07 Peter Maydell
2015-07-08 17:39   ` Andreas Färber
2015-07-08 18:50     ` Peter Maydell
2015-07-08 18:53       ` Andreas Färber
2015-07-08 19:01   ` Peter Crosthwaite
2015-07-08 19:23     ` 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).