All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] target: Use ArchCPU & CPUArchState as abstract interface to target CPU
@ 2022-02-09 21:54 Philippe Mathieu-Daudé via
  2022-02-09 21:54 ` [PATCH 01/15] meson: Display libfdt as disabled when system emulation is disabled Philippe Mathieu-Daudé via
                   ` (14 more replies)
  0 siblings, 15 replies; 29+ messages in thread
From: Philippe Mathieu-Daudé via @ 2022-02-09 21:54 UTC (permalink / raw)
  To: qemu-devel
  Cc: Paolo Bonzini, Thomas Huth, Richard Henderson,
	Philippe Mathieu-Daudé

Hi Richard,

Kind of respin of the "exec: Move translation declarations to
'translate-all.h'" series, but without modifying translate-all.h :)
(same same but different).

Last patches are RFC, not sure worthwhile (at least for now).

Based-on: <20220207082756.82600-1-f4bug@amsat.org>
"exec: Remove 'qemu/log.h' from 'exec-all.h'"

Philippe Mathieu-Daudé (15):
  meson: Display libfdt as disabled when system emulation is disabled
  hw/m68k/mcf: Add missing 'exec/hwaddr.h' header
  hw/tricore: Remove unused and incorrect header
  exec/cpu_ldst: Include 'cpu.h' to get target_ulong definition
  cpu: Add missing 'exec/exec-all.h' and 'qemu/accel.h' headers
  target/i386/cpu: Ensure accelerators set CPU addressble physical bits
  target/i386/tcg/sysemu: Include missing 'exec/exec-all.h' header
  target: Include missing 'cpu.h'
  target: Use forward declared type instead of structure type
  target: Use CPUArchState as interface to target-specific CPU state
  target: Use ArchCPU as interface to target CPU
  hw/m68k: Restrict M68kCPU type to target/ code
  hw/mips: Restrict MIPSCPU type to target/ code
  hw/sparc: Restrict SPARCCPU type to target/ code
  hw/sh4: Restrict SuperHCPU type to target/ code

 cpu.c                                |  2 ++
 include/exec/cpu_ldst.h              |  1 +
 include/exec/poison.h                |  2 --
 include/hw/core/cpu.h                |  2 +-
 include/hw/m68k/mcf.h                |  4 ++--
 include/hw/mips/cpudevs.h            |  6 ++----
 include/hw/sh4/sh.h                  |  3 +--
 include/hw/sparc/sparc64.h           |  4 +---
 include/hw/tricore/triboard.h        |  1 -
 include/qemu/typedefs.h              |  2 ++
 meson.build                          |  4 +++-
 target/alpha/cpu-qom.h               |  4 +++-
 target/alpha/cpu.h                   | 11 +++--------
 target/arm/cpu-qom.h                 |  4 +++-
 target/arm/cpu.h                     |  5 +----
 target/arm/hvf_arm.h                 |  2 +-
 target/avr/cpu-qom.h                 |  4 +++-
 target/avr/cpu.h                     | 13 ++++---------
 target/cris/cpu-qom.h                |  4 +++-
 target/cris/cpu.h                    |  7 ++-----
 target/hexagon/cpu.h                 | 10 +++-------
 target/hppa/cpu-qom.h                |  4 +++-
 target/hppa/cpu.h                    | 12 +++---------
 target/i386/cpu-qom.h                |  4 +++-
 target/i386/cpu.c                    |  1 +
 target/i386/cpu.h                    |  7 ++-----
 target/i386/tcg/sysemu/excp_helper.c |  1 +
 target/i386/tcg/sysemu/misc_helper.c |  1 +
 target/m68k/cpu-qom.h                |  2 +-
 target/m68k/cpu.h                    |  9 +++------
 target/microblaze/cpu-qom.h          |  4 +++-
 target/microblaze/cpu.h              | 11 +++++------
 target/microblaze/mmu.h              |  2 ++
 target/mips/cpu-qom.h                |  2 +-
 target/mips/cpu.h                    | 12 ++++--------
 target/mips/internal.h               | 15 ++++++++-------
 target/nios2/cpu.h                   |  8 ++++----
 target/nios2/mmu.h                   |  2 ++
 target/openrisc/cpu.h                | 18 +++++++-----------
 target/ppc/cpu-qom.h                 |  6 ++++--
 target/ppc/cpu.h                     |  7 ++-----
 target/riscv/cpu.h                   | 10 ++++------
 target/riscv/pmp.h                   |  2 ++
 target/rx/cpu-qom.h                  |  6 +++---
 target/rx/cpu.h                      |  6 ++----
 target/s390x/cpu-qom.h               |  8 +++++---
 target/s390x/cpu.h                   |  7 ++-----
 target/sh4/cpu-qom.h                 |  2 +-
 target/sh4/cpu.h                     |  9 +++------
 target/sparc/cpu-qom.h               |  2 +-
 target/sparc/cpu.h                   | 11 ++++-------
 target/tricore/cpu-qom.h             |  4 +++-
 target/tricore/cpu.h                 | 10 +++-------
 target/xtensa/cpu-qom.h              |  4 +++-
 target/xtensa/cpu.h                  | 13 +++++--------
 55 files changed, 142 insertions(+), 175 deletions(-)

-- 
2.34.1



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

end of thread, other threads:[~2022-02-11  2:59 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-09 21:54 [PATCH 00/15] target: Use ArchCPU & CPUArchState as abstract interface to target CPU Philippe Mathieu-Daudé via
2022-02-09 21:54 ` [PATCH 01/15] meson: Display libfdt as disabled when system emulation is disabled Philippe Mathieu-Daudé via
2022-02-09 21:54 ` [PATCH 02/15] hw/m68k/mcf: Add missing 'exec/hwaddr.h' header Philippe Mathieu-Daudé via
2022-02-09 22:11   ` Richard Henderson
2022-02-10  8:34   ` Thomas Huth
2022-02-09 21:54 ` [PATCH 03/15] hw/tricore: Remove unused and incorrect header Philippe Mathieu-Daudé via
2022-02-09 22:12   ` Richard Henderson
2022-02-10  8:26   ` Thomas Huth
2022-02-09 21:54 ` [PATCH 04/15] exec/cpu_ldst: Include 'cpu.h' to get target_ulong definition Philippe Mathieu-Daudé via
2022-02-09 21:54 ` [PATCH 05/15] cpu: Add missing 'exec/exec-all.h' and 'qemu/accel.h' headers Philippe Mathieu-Daudé via
2022-02-09 21:54 ` [PATCH 06/15] target/i386/cpu: Ensure accelerators set CPU addressble physical bits Philippe Mathieu-Daudé via
2022-02-09 21:54 ` [PATCH 07/15] target/i386/tcg/sysemu: Include missing 'exec/exec-all.h' header Philippe Mathieu-Daudé via
2022-02-09 21:54 ` [PATCH 08/15] target: Include missing 'cpu.h' Philippe Mathieu-Daudé via
2022-02-09 21:54 ` [PATCH 09/15] target: Use forward declared type instead of structure type Philippe Mathieu-Daudé via
2022-02-09 21:54 ` [PATCH 10/15] target: Use CPUArchState as interface to target-specific CPU state Philippe Mathieu-Daudé via
2022-02-09 21:54 ` [PATCH 11/15] target: Use ArchCPU as interface to target CPU Philippe Mathieu-Daudé via
2022-02-09 22:33   ` Philippe Mathieu-Daudé via
2022-02-09 22:48     ` Richard Henderson
2022-02-09 22:47   ` Richard Henderson
2022-02-10 17:35     ` Taylor Simpson
2022-02-11  1:21       ` Richard Henderson
2022-02-11  2:57         ` Taylor Simpson
2022-02-09 21:54 ` [RFC PATCH 12/15] hw/m68k: Restrict M68kCPU type to target/ code Philippe Mathieu-Daudé via
2022-02-09 22:50   ` Richard Henderson
2022-02-09 23:09     ` Philippe Mathieu-Daudé via
2022-02-09 23:18       ` Richard Henderson
2022-02-09 21:54 ` [RFC PATCH 13/15] hw/mips: Restrict MIPSCPU " Philippe Mathieu-Daudé via
2022-02-09 21:54 ` [RFC PATCH 14/15] hw/sparc: Restrict SPARCCPU " Philippe Mathieu-Daudé via
2022-02-09 21:54 ` [RFC PATCH 15/15] hw/sh4: Restrict SuperHCPU " Philippe Mathieu-Daudé via

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.