[PATCH v4 00/20] cpus: Constify @cpu in SysemuCPUOps::has_work() handler
Philippe Mathieu-Daudé <[email protected]>
| Newsgroups | org.nongnu.qemu-riscv,org.nongnu.qemu-arm,org.nongnu.qemu-devel |
|---|---|
| Message-ID | <[email protected]> |
Missing review: 1, 6, 11, 18, 20 (all new)
(I plan to merge myself once reviewed)
Since v3:
- Fixed _Generic (rth)
Since v2:
- Reorder _Generic changes first to maintain bisectability
Since v1:
- use _Generic (rth)
- no more RFC
No functional change; purely const-correctness improvment
to enforce has_work() callees don't mutate CPUState.
Build-tested.
Following checkpatch.pl errors ignored:
2/15 Checking commit efef90983aa7 (cpus: Add const-qualified CPU environment accessors)
ERROR: spaces required around that ':' (ctx:VxE)
#46: FILE: include/exec/cpu-common.h:89:
+ CPUArchState: \
^
ERROR: spaces required around that ':' (ctx:VxE)
#62: FILE: include/exec/cpu-common.h:101:
+ CPUArchState: \
^
ERROR: spaces required around that ':' (ctx:VxE)
#90: FILE: include/hw/core/cpu.h:605:
+ CPUState: \
^
total: 3 errors, 0 warnings, 64 lines checked
Philippe Mathieu-Daudé (20):
target/i386: Remove const qualifier in ptw_setl*()
linux-user: Uncast void pointer argument as Object in
target_cpu_free()
cpus: Add const-qualified CPU environment accessors
linux-user: Replace env_cpu_const() by generic env_cpu() equivalent
system/cpus: Constify various CPUState arguments
target/arm: Constify CPUARMState for various cpu_*() getters
target/avr: Constify CPUAVRState for some cpu_*() getters
target/hexagon: Constify CPUHexagonState in
hexagon_thread_is_enabled()
target/i386: Constify CPU*State for cpu_*_interrupt() getters
target/loongarch: Constify CPULoongArchState for various cpu_*()
getters
target/loongarch: Constify CPULoongArchState for various tlb_*()
getters
target/mips: Constify CPUMIPSState for various cpu_*() getters
target/s390x: Constify S390CPU for cpu_has_*() getters
target/riscv: Constify @iprio argument in riscv_cpu_pending_to_irq()
target/riscv: Constify CPURISCVState for various cpu_*() getters
target/sparc: Constify CPUSPARCState for various cpu_*() getters
target/tricore: Document architectural interrupts as not implemented
target/xtensa: Constify CPUXtensaState in
xtensa_replicate_windowstart()
cpus: Constify @cpu in SysemuCPUOps::has_work() handler
accel/tcg: Constify @cpu in cpu_mmu_index() and TCGCPUOps handlers
include/accel/tcg/cpu-mmu-index.h | 2 +-
include/accel/tcg/cpu-ops.h | 2 +-
include/exec/cpu-common.h | 29 ++++--------
include/hw/core/cpu.h | 21 ++++++---
include/hw/core/sysemu-cpu-ops.h | 4 +-
include/system/cpus.h | 4 +-
target/alpha/cpu.h | 2 +-
target/arm/cpu.h | 55 +++++++++++-----------
target/arm/internals.h | 69 ++++++++++++++--------------
target/avr/cpu.h | 6 +--
target/hexagon/cpu.h | 2 +-
target/hexagon/cpu_helper.h | 4 +-
target/i386/cpu.h | 4 +-
target/i386/tcg/tcg-cpu.h | 2 +-
target/loongarch/cpu-mmu.h | 20 ++++----
target/loongarch/cpu.h | 6 +--
target/loongarch/internals.h | 2 +-
target/loongarch/tcg/tcg_loongarch.h | 2 +-
target/mips/cpu.h | 8 ++--
target/mips/internal.h | 10 ++--
target/ppc/cpu.h | 2 +-
target/riscv/cpu.h | 53 +++++++++++----------
target/riscv/internals.h | 2 +-
target/s390x/cpu.h | 4 +-
target/s390x/s390x-internal.h | 12 ++---
target/sparc/cpu.h | 12 ++---
target/xtensa/cpu.h | 2 +-
linux-user/elfload.c | 2 +-
linux-user/i386/cpu_loop.c | 5 +-
linux-user/i386/elfload.c | 2 +-
linux-user/x86_64/elfload.c | 2 +-
system/cpus.c | 6 +--
target/alpha/cpu.c | 4 +-
target/arm/cpu.c | 6 +--
target/arm/helper.c | 41 +++++++++--------
target/arm/tcg/debug.c | 18 ++++----
target/arm/tcg/hflags.c | 35 +++++++-------
target/arm/tcg/m_helper.c | 8 ++--
target/arm/tcg/op_helper.c | 2 +-
target/avr/cpu.c | 5 +-
target/hexagon/cpu.c | 14 +++---
target/hexagon/cpu_helper.c | 6 +--
target/hppa/cpu.c | 6 +--
target/i386/cpu.c | 7 ++-
target/i386/tcg/system/excp_helper.c | 4 +-
target/i386/tcg/tcg-cpu.c | 6 +--
target/loongarch/cpu.c | 4 +-
target/loongarch/cpu_helper.c | 20 ++++----
target/loongarch/tcg/tcg_cpu.c | 4 +-
target/loongarch/tcg/tlb_helper.c | 26 +++++------
target/m68k/cpu.c | 4 +-
target/microblaze/cpu.c | 8 ++--
target/mips/cpu.c | 6 +--
target/or1k/cpu.c | 6 +--
target/ppc/cpu_init.c | 4 +-
target/riscv/cpu.c | 17 ++++---
target/riscv/tcg/cpu_helper.c | 18 ++++----
target/riscv/tcg/csr.c | 3 +-
target/riscv/tcg/tcg-cpu.c | 2 +-
target/rx/cpu.c | 4 +-
target/s390x/cpu-system.c | 4 +-
target/s390x/cpu.c | 2 +-
target/s390x/interrupt.c | 22 ++++-----
target/sh4/cpu.c | 6 +--
target/sparc/cpu.c | 6 +--
target/tricore/cpu.c | 5 +-
target/xtensa/cpu.c | 6 +--
67 files changed, 352 insertions(+), 345 deletions(-)
--
2.53.0