|
From: 奕楠 邱 <mag...@ho...> - 2011-12-15 03:18:59
|
Hello, I want to know the place where valgrind intercepts every memory access(store & load) I want to log the every access behavior inside the program, Does anyone know which function of which file can achieve this?(inside the directory memcheck?) Due to tracing the code for a long time, I sill can't solve my problem. If everyone really understand the architecture of valgrind, please help me!! Thank you very much |
|
From: Julian S. <js...@ac...> - 2011-12-19 11:01:38
|
On Thursday, December 15, 2011 04:18:52 am 奕楠 邱 wrote: > Hello, > I want to know the place where valgrind intercepts every memory > access(store & load) I want to log the every access behavior inside the > program, Does anyone know which function of which file can achieve > this?(inside the directory memcheck?) Due to tracing the code for a long > time, I sill can't solve my problem. If everyone really understand the > architecture of valgrind, please help me!! Thank you very much Try running valgrind --tool=lackey --trace-mem=yes. J |