Can someone provide a quick top level explanation of how valgrind works? ex. How does it know when memory is allocated and freed?
|
|
|
Valgrind basically runs your application in a "sandbox." While running in this sandbox, it is able to insert its own instructions to do advanced debugging and profiling. From the manual:
So basically, valgrind provides a virtual processor that executes your application. However, before your application instructions are processed, they are passed to tools (such as memcheck). These tools are kind of like plugins, and they are able to modify your application before it is run on the processor. The great thing about this approach is that you don't have to modify or relink your program at all to run it in valgrind. It does cause your program to run slower, however valgrind isn't meant to measure performance or run during normal execution of your application, so this isn't really an issue. |
||||
|
|
|
Valgrind is basically a virtual machine that executes your program. It is a virtual architecture that intercepts each call to allocate/free memory. |
|||
|
|
|
It's essentially a simulator for user-space code, designed for flexible instrumentation and data collection. The program is run on a synthetic CPU implemented in software. Your program's instruction stream is unpicked into a simple representation. Instrumentation (debugging or profiling code) is added, and the result is converted back into machine code. All this is done on demand, on the fly, whilst your program is running. (That's why Valgrind is so slow starting programs -- it's busy instrumenting them). There's also a lot of nasty details behind-the-scenes, all aimed at giving your program the illusion it is running "normally". Most of this nastiness is to do with system calls, signals and threads. It works well enough that you can run most programs unmodified on Valgrind with no special preparation. Nowadays Valgrind runs on {x86,amd64,ppc32,ppc64}-linux, which means you probably have very little excuse not to use it! |
|||||||||
|
|
valgrind sits as a layer between your program and the OS, intercepting calls to the OS requesting memory (de)allocation and recording what is being manipulated before then actually allocating the memory and passing back an equivalent. It's essentially how most code profilers work, except at a much lower level (system calls instead of program function calls). |
|||
|
|
