This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Fri Dec 07 06:40:16 -0800 2007 | |
| |
README | Thu Oct 02 19:00:13 -0700 2008 | |
| |
callgrind_coverage/ | Fri Dec 07 06:43:16 -0800 2007 | |
| |
callgrind_decompress/ | Thu Dec 06 07:01:32 -0800 2007 | |
| |
callgrind_info/ | Fri Dec 07 06:35:51 -0800 2007 | |
| |
callgrind_tools.pro | Thu Dec 06 07:01:32 -0800 2007 |
README
callgrind_tools is a collection of tools to help manipulate callgrind files generated by valgrind's tools
callgrind_decompress
Callgrind files are compressed by default. To make it easier to read the
callgrind files it is usefull to turn off the compression. You can do this
with the valgrind options "--compress-strings=no --compress-pos=no" or you
can use this tool if you already have a compressed file. For more
information about the compression see the valgrind documentation.
Example:
./callgrind_decompress callgrind.out.111 -o callgrind.out.111.u
callgrind_info
A small tool to extract information out of a callgrind file.
Examples:
// list all functions in file foo.h
./callgrind_info callgrind.out.10 -functions foo.h
// output the cost for function doFoo
./callgrind_info callgrind.out.10 -cost Bar::doFoo
// output all fe objects in the callgrind file
./callgrind_info callgrind.out.10 -spec fe
callgrind_coverage
Given a callgrind file and a source file, callgrind_coverage will output
the code coverage of the callgrind file over the source file including
jumps. Make sure when using valgrind you use --collect-jumps=yes
More information about callgrind can be found on the valgrind website: http://valgrind.org
========
BUILDING
========
callgrind_tools requires rpp to build so first use git to clone its repository and then you can build.
git clone git://github.com/icefox/rpp.git
qmake
make







