|
From: Nicholas N. <nj...@ca...> - 2003-10-14 07:52:39
|
On Tue, 13 Oct 2003, Jeremy Fitzhardinge wrote: > > So I am wondering if someone made some code coverage analysis tool > > based on valgrind. > > vgprof (see http://www.goop.org/~jeremy/valgrind) does this. Cachegrind (normal version, not KCachegrind) also gives you this information as a side-effect of its normal workings, since the "Ir" column gives the number of instructions executed per line. Use the "--show=Ir" option to cg_annotate to only show this column. N |