qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 00/24] cpus: Restrict CPU has_work() handlers to system emulation
@ 2025-01-25 17:01 Philippe Mathieu-Daudé
  2025-01-25 17:01 ` [PATCH v3 01/24] cpus: Restrict cpu_has_work() " Philippe Mathieu-Daudé
                   ` (25 more replies)
  0 siblings, 26 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-01-25 17:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: Richard Henderson, Philippe Mathieu-Daudé

Missing review: 16

(I plan to merge this myself once reviewed)

Since v2:
- Check mandatory SysemuCPUOps handlers in class_post_init()

v1 cover:

On user emulation, threads always have work to do, and
CPUClass::has_work() is never called. Restrict it to system
emulation, allowing to simplify a bit and reduce code built
on user emulation.

Based-on: <20250125165855.32168-1-philmd@linaro.org>
 "qom: Introduce class_post_init() handler"
Based-on: <20250121114056.53949-1-philmd@linaro.org>
 "cpus: Prefer cached CpuClass over CPU_GET_CLASS() macro"

Philippe Mathieu-Daudé (24):
  cpus: Restrict cpu_has_work() to system emulation
  cpus: Un-inline cpu_has_work()
  cpus: Introduce SysemuCPUOps::has_work() handler
  target/alpha: Move has_work() from CPUClass to SysemuCPUOps
  target/arm: Move has_work() from CPUClass to SysemuCPUOps
  target/avr: Move has_work() from CPUClass to SysemuCPUOps
  target/hexagon: Remove CPUClass:has_work() handler
  target/hppa: Move has_work() from CPUClass to SysemuCPUOps
  target/i386: Move has_work() from CPUClass to SysemuCPUOps
  target/loongarch: Move has_work() from CPUClass to SysemuCPUOps
  target/m68k: Move has_work() from CPUClass to SysemuCPUOps
  target/microblaze: Move has_work() from CPUClass to SysemuCPUOps
  target/mips: Move has_work() from CPUClass to SysemuCPUOps
  target/openrisc: Move has_work() from CPUClass to SysemuCPUOps
  target/ppc: Move has_work() from CPUClass to SysemuCPUOps
  target/riscv: Move has_work() from CPUClass to SysemuCPUOps
  target/rx: Move has_work() from CPUClass to SysemuCPUOps
  target/s390x: Restrict I/O handler installers to system emulation
  target/s390x: Move has_work() from CPUClass to SysemuCPUOps
  target/sh4: Move has_work() from CPUClass to SysemuCPUOps
  target/sparc: Move has_work() from CPUClass to SysemuCPUOps
  target/tricore: Move has_work() from CPUClass to SysemuCPUOps
  target/xtensa: Move has_work() from CPUClass to SysemuCPUOps
  cpus: Remove CPUClass::has_work() handler

 include/hw/core/cpu.h            | 27 +++++++++++----------------
 include/hw/core/sysemu-cpu-ops.h |  4 ++++
 include/hw/core/tcg-cpu-ops.h    |  2 +-
 target/i386/cpu.h                |  4 ++--
 target/mips/internal.h           |  4 ++--
 target/riscv/internals.h         |  4 +++-
 target/s390x/s390x-internal.h    |  5 +++++
 cpu-target.c                     |  8 ++++++++
 hw/core/cpu-common.c             | 12 ++++++------
 hw/core/cpu-system.c             |  5 +++++
 target/alpha/cpu.c               |  4 +++-
 target/arm/cpu.c                 |  4 +++-
 target/avr/cpu.c                 |  2 +-
 target/hexagon/cpu.c             |  6 ------
 target/hppa/cpu.c                |  4 +++-
 target/i386/cpu.c                |  8 +++-----
 target/loongarch/cpu.c           |  8 +++-----
 target/m68k/cpu.c                |  4 +++-
 target/microblaze/cpu.c          |  4 +++-
 target/mips/cpu.c                |  4 +++-
 target/openrisc/cpu.c            |  4 +++-
 target/ppc/cpu_init.c            |  4 +++-
 target/riscv/cpu.c               |  8 +++-----
 target/rx/cpu.c                  |  2 +-
 target/s390x/cpu-system.c        | 18 ++++++++++++++++++
 target/s390x/cpu.c               | 18 ------------------
 target/s390x/interrupt.c         |  8 ++------
 target/sh4/cpu.c                 |  4 ++--
 target/sparc/cpu.c               |  4 +++-
 target/tricore/cpu.c             |  2 +-
 target/xtensa/cpu.c              | 12 +++++-------
 31 files changed, 113 insertions(+), 94 deletions(-)

-- 
2.47.1



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

end of thread, other threads:[~2025-03-09 13:39 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-25 17:01 [PATCH v3 00/24] cpus: Restrict CPU has_work() handlers to system emulation Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 01/24] cpus: Restrict cpu_has_work() " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 02/24] cpus: Un-inline cpu_has_work() Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 03/24] cpus: Introduce SysemuCPUOps::has_work() handler Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 04/24] target/alpha: Move has_work() from CPUClass to SysemuCPUOps Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 05/24] target/arm: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 06/24] target/avr: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 07/24] target/hexagon: Remove CPUClass:has_work() handler Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 08/24] target/hppa: Move has_work() from CPUClass to SysemuCPUOps Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 09/24] target/i386: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 10/24] target/loongarch: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 11/24] target/m68k: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 12/24] target/microblaze: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 13/24] target/mips: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 14/24] target/openrisc: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 15/24] target/ppc: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 16/24] target/riscv: " Philippe Mathieu-Daudé
2025-01-26 12:29   ` Richard Henderson
2025-01-25 17:01 ` [PATCH v3 17/24] target/rx: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 18/24] target/s390x: Restrict I/O handler installers to system emulation Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 19/24] target/s390x: Move has_work() from CPUClass to SysemuCPUOps Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 20/24] target/sh4: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 21/24] target/sparc: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 22/24] target/tricore: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 23/24] target/xtensa: " Philippe Mathieu-Daudé
2025-01-25 17:01 ` [PATCH v3 24/24] cpus: Remove CPUClass::has_work() handler Philippe Mathieu-Daudé
2025-01-26 12:31   ` Richard Henderson
2025-01-27  7:50     ` Philippe Mathieu-Daudé
2025-02-10 21:36       ` Philippe Mathieu-Daudé
2025-02-10 21:38         ` Richard Henderson
2025-02-10 21:57 ` [PATCH v3 00/24] cpus: Restrict CPU has_work() handlers to system emulation Philippe Mathieu-Daudé
2025-03-09 13:38 ` Philippe Mathieu-Daudé

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).