[Qemu-discuss] How to obtain the list of all Memory Addresses accessed given the disassembled instruction trace and a memory snapshot of QEMU available ?

2017-07-19 Thread Arnab
Hello, I collected a disassembled trace of all instructions of an application that executed in a guest Virtual Machine running on QEMU. I have also obtained the memory snapshot of QEMU - just before I executed my program - so as per my understanding, the memory snapshot should contain all

[Qemu-discuss] [qemu-trace] how to add trace easily?

2017-07-19 Thread Sam
Hi all, I'm debugging qemu start up process, I want to add a log in 'io_mem_init' function in exce.c as bellow: > static void io_mem_init(void) > { > ADD_LOG_HERE_TO_RECORD_TIME(); > memory_region_init_io(_mem_rom, NULL, _mem_ops, NULL, > NULL, UINT64_MAX); >