valgrind
Valgrind is a tool that can be used to detect memory management and threading bugs.
Installation
-
Download the latest Valgrind source code from http://valgrind.org/downloads/. For example, this downloads version 3.12.0:
-
Unpack the tarball with tar:
-
cd into the root directory of the unpacked source code.
-
Run configure with
-
Run make with:
-
Install valgrind onto your system with:
-
Done! You should now be able to run valgrind by typing:
from any directory in your shell.
Profiling With Valgrind
The most simple way to run a program with Valgrind is to call valgrind
and pass in the executable at the only parameter:
This will run Memcheck, a memory error detector. Expect your program to run 4-10x slower!
To run callgrind, use the following command:
The order of the optional parameters to valgrind is important! Make sure --tool=callgrind
comes BEFORE the path to your executable.
This will generate a profile data file called callgrind.out.<pid>
in the same folder as the exectuable. To display the results of the profiling:
--dump-instr=yes
allows you to get profile information at the instruction level.
However, this text can be hard to analyze! Thankfully, there is a visual tool called kcachegrind which can create visual graphs from the callgrind output (yes, kCACHEgrind can display the results of CALLgrind). kcachegrind can be installed on Ubuntu with:
Be warned, kcachegrind could require around 350MB of space! I recommend you install kcachegrind on your development machine rather than embedded Linux.
kcachegrind can then be started by calling kcachegrind in the same directory as the cachegrind output data file:
You should then be presented with wonderful profiling data as shown below!