mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
target/ppc: Fix PMU hflags calculation
Some of the PMU hflags bits can go out of synch, for example a store to
MMCR0 with PMCjCE=1 fails to update hflags correctly and results in
hflags mismatch:
qemu: fatal: TCG hflags mismatch (current:0x2408003d rebuilt:0x240a003d)
This can be reproduced by running perf on a recent machine.
Some of the fragility here is the duplication of PMU hflags calculations.
This change consolidates that in a single place to update pmu-related
hflags, to be called after a well defined state changes.
The post-load PMU update is pulled out of the MSR update because it does
not depend on the MSR value.
Fixes: 8b3d1c49a9
("target/ppc: Add new PMC HFLAGS")
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Message-Id: <20230530130447.372617-1-npiggin@gmail.com>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
This commit is contained in:
parent
34b4313070
commit
6494d2c1fd
6 changed files with 85 additions and 41 deletions
|
@ -22,6 +22,7 @@
|
|||
|
||||
void hreg_swap_gpr_tgpr(CPUPPCState *env);
|
||||
void hreg_compute_hflags(CPUPPCState *env);
|
||||
void hreg_update_pmu_hflags(CPUPPCState *env);
|
||||
void cpu_interrupt_exittb(CPUState *cs);
|
||||
int hreg_store_msr(CPUPPCState *env, target_ulong value, int alter_hv);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue