[PATCH 0/3] cpus: Avoid re-initializing fields cleared in cpu_common_reset_hold()

Philippe Mathieu-Daudé posted 3 patches 3 months ago
hw/core/cpu-common.c      | 1 -
hw/misc/mips_cpc.c        | 1 -
hw/ppc/e500.c             | 1 -
target/arm/arm-powerctl.c | 2 --
target/hppa/cpu.c         | 2 --
target/loongarch/cpu.c    | 1 -
target/openrisc/cpu.c     | 1 -
7 files changed, 9 deletions(-)
[PATCH 0/3] cpus: Avoid re-initializing fields cleared in cpu_common_reset_hold()
Posted by Philippe Mathieu-Daudé 3 months ago
Having this call tree:

  cpu_reset()
  -> device_cold_reset()
     -> DeviceClass::reset()
        -> target_cpu_reset()
           -> ResettablePhases::hold()
              -> CPUClass::phases::hold()
                 -> cpu_common_reset_hold()

If we call cpu_reset(), common fields will be reset in
cpu_common_reset_hold(), we don't need to manually do it.

Remove the pointless re-assignments on CPUState.

Based-on: <20241230152519.86291-1-philmd@linaro.org>

Philippe Mathieu-Daudé (3):
  accel/tcg: Remove pointless initialization of cflags_next_tb
  target/cpus: Remove pointless re-assignment of
    CPUState::exception_index
  target/cpus: Remove pointless re-assignment of CPUState::halted

 hw/core/cpu-common.c      | 1 -
 hw/misc/mips_cpc.c        | 1 -
 hw/ppc/e500.c             | 1 -
 target/arm/arm-powerctl.c | 2 --
 target/hppa/cpu.c         | 2 --
 target/loongarch/cpu.c    | 1 -
 target/openrisc/cpu.c     | 1 -
 7 files changed, 9 deletions(-)

-- 
2.47.1


Re: [PATCH 0/3] cpus: Avoid re-initializing fields cleared in cpu_common_reset_hold()
Posted by Philippe Mathieu-Daudé 2 months, 3 weeks ago
On 30/12/24 16:39, Philippe Mathieu-Daudé wrote:
> Having this call tree:
> 
>    cpu_reset()
>    -> device_cold_reset()
>       -> DeviceClass::reset()
>          -> target_cpu_reset()
>             -> ResettablePhases::hold()
>                -> CPUClass::phases::hold()
>                   -> cpu_common_reset_hold()
> 
> If we call cpu_reset(), common fields will be reset in
> cpu_common_reset_hold(), we don't need to manually do it.
> 
> Remove the pointless re-assignments on CPUState.
Ping for patches 2 & 3?