|
From: Domingues L. F. <Lui...@ed...> - 2014-05-15 21:07:08
|
Hello, I have a question about how Valgrind works for the instrumentation. Did he instrument the code during the run time, or did he make the instrumentation of all the program and the run the instrumented code on a low level virtual machine? Regards, Luis Domingues |
|
From: Philippe W. <phi...@sk...> - 2014-05-15 23:11:54
|
On Thu, 2014-05-15 at 21:06 +0000, Domingues Luis Filipe wrote: > Hello, > > I have a question about how Valgrind works for the instrumentation. > Did he instrument the code during the run time, or did he make the > instrumentation of all the program and the run the instrumented code on > a low level virtual machine? The instrumentation is done at runtime. This a.o. allows to run program that generates code (e.g. firefox and its Javascript JIT compiler). Philippe |