mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
target/ppc: Implement watchpoint debug facility for v2.07S
ISA v2.07S introduced the watchpoint facility based on the DAWR0 and DAWRX0 SPRs. Implement this in TCG. Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
parent
14192307ef
commit
d5ee641cfc
10 changed files with 147 additions and 3 deletions
|
@ -204,6 +204,16 @@ void helper_store_ciabr(CPUPPCState *env, target_ulong value)
|
|||
ppc_store_ciabr(env, value);
|
||||
}
|
||||
|
||||
void helper_store_dawr0(CPUPPCState *env, target_ulong value)
|
||||
{
|
||||
ppc_store_dawr0(env, value);
|
||||
}
|
||||
|
||||
void helper_store_dawrx0(CPUPPCState *env, target_ulong value)
|
||||
{
|
||||
ppc_store_dawrx0(env, value);
|
||||
}
|
||||
|
||||
/*
|
||||
* DPDES register is shared. Each bit reflects the state of the
|
||||
* doorbell interrupt of a thread of the same core.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue