Re: [Qemu-devel] Monitoring write to memory

2015-07-09 Thread Christopher Covington
On 07/01/2015 08:23 AM, Jun Koi wrote: > Hello, > > I am trying to monitor all the memory writing events inside Qemu by > instrumenting tcg_gen_qemu_st8, tcg_gen_qemu_st16, tcg_gen_qemu_st32, > tcg_gen_qemu_st64, as followings: > > > // in tcg-op.h > > void helper_checkmem(int64_t data, int64_t

[Qemu-devel] Monitoring write to memory

2015-07-01 Thread Jun Koi
Hello, I am trying to monitor all the memory writing events inside Qemu by instrumenting tcg_gen_qemu_st8, tcg_gen_qemu_st16, tcg_gen_qemu_st32, tcg_gen_qemu_st64, as followings: // in tcg-op.h void helper_checkmem(int64_t data, int64_t address); // this is declared elsewhere static inline vo