mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
target-arm: Implement setting of watchpoints
Implement support for setting QEMU watchpoints based on the values the guest writes to the ARM architected watchpoint registers. (We do not yet report the firing of the watchpoints to the guest, so they will just be ignored.) Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
86025ee443
commit
9ee98ce810
5 changed files with 149 additions and 3 deletions
|
@ -323,6 +323,8 @@ typedef struct CPUARMState {
|
|||
int eabi;
|
||||
#endif
|
||||
|
||||
struct CPUWatchpoint *cpu_watchpoint[16];
|
||||
|
||||
CPU_COMMON
|
||||
|
||||
/* These fields after the common ones so they are preserved on reset. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue