Re: [PATCH 03/11] exec: add ram_debug_ops support

2020-12-01 Thread Ashish Kalra
On Tue, Dec 01, 2020 at 12:08:28PM +, Peter Maydell wrote: > On Mon, 16 Nov 2020 at 19:19, Ashish Kalra wrote: > > > > From: Brijesh Singh > > > > From: Brijesh Singh > > > > Currently, guest memory access for debugging purposes is performed using > > memcpy(). Extend the 'struct MemoryRegio

Re: [PATCH 03/11] exec: add ram_debug_ops support

2020-12-01 Thread Peter Maydell
On Mon, 16 Nov 2020 at 19:19, Ashish Kalra wrote: > > From: Brijesh Singh > > From: Brijesh Singh > > Currently, guest memory access for debugging purposes is performed using > memcpy(). Extend the 'struct MemoryRegion' to include new callbacks that > can be used to override the use of memcpy()

[PATCH 03/11] exec: add ram_debug_ops support

2020-11-16 Thread Ashish Kalra
From: Brijesh Singh From: Brijesh Singh Currently, guest memory access for debugging purposes is performed using memcpy(). Extend the 'struct MemoryRegion' to include new callbacks that can be used to override the use of memcpy() with something else. The new callbacks can be used to display th