-
Notifications
You must be signed in to change notification settings - Fork 1
Profiling and Code Coverage Tools
Martin Moene edited this page Jan 20, 2016
·
3 revisions
Profiling - dynamic program analysis, usually to aid program optimization.
Code coverage - the degree to which the source code of a program is tested by a particular test suite.
perf - Linux profiling with performance counters.
valgrind - The cachegrind and callgrind tools details cache hit/miss miss patterns.
kcachegrind - Graphical viewer of results from callgrind.
kcov - Collects code coverage from any compiled program. Requires ELF debug information.
VerySleepy - A free C/C++ CPU profiler for Windows systems.
accu.org - Become a better programmer.