Tagged Questions
The callgrind tag has no wiki summary.
11
votes
5answers
6k views
Windows Callgrind results browser, alternative to KCacheGrind
Is there any tool, other than KCacheGrind, being able to view callgrind results? Preferably for Windows platform?
8
votes
5answers
1k views
Console alternative of kcachegrind?
Kcachegrind rocks and it's of my favorite tools, however from time to time I'm missing the ability to run it in terminal(e.g using ssh) on the remote server.
I know it's possible to setup VNC or ...
4
votes
1answer
61 views
How to understand the output of callgrind using Kcachegrind
When profiling the log Kcachegrind shows %of inclusive as 13.92%. Should it not be close to 100% as mentioned in the FAQ Q:1??
Here is the screenshot of the profile log
4
votes
2answers
174 views
Profile shared object without recompiling main program
I currently am developing a shared lilbrary for loading into PostgreSQL (as C-Language functions, see here). Now I would like to profile the function in this library without recompiling PostgreSQL ...
3
votes
2answers
272 views
How do I get callgrind to dump source line information?
I'm trying to profile a shared library on GNU/Linux which does real-time audio processing, so performance is important. I run another program which hooks it up to the audio input and output of my ...
2
votes
0answers
103 views
Does Valgrind callgrind uses total time or “execution time” to create data
I have a problem where my application scales linearly with the number of threads(think 800 threads gives doubly the performance of 400 threads on dual core CPU). And my gut feeling is telling me that ...
2
votes
1answer
159 views
How do I let Callgrind access my Qt project's source code?
I built a Qt project in Debug mode with Qt Creator, ran Callgrind to generate profiling data and tried loading it into Cachegrind. I noticed that I only see profiling information for Qt classes, so I ...
2
votes
2answers
164 views
callgrind equivalent for java?
Is there a free callgrind equivalent for java? basically, i just need anything that gives me cycle counts or time spent for each method and function of my java code.
i suppose i should mention i'm ...
2
votes
2answers
446 views
Tools to evaluate callgrind's call profiles?
Somehow related to this question, which tool would you recommend to evaluate the profiling data created with callgrind?
It does not have to have a graphical interface, but it should prepare the ...
1
vote
1answer
46 views
Kcachegrind/callgrind is inaccurate for dispatcher functions?
I have a model code on which kcachegrind/callgrind reports strange results. It is kind of dispatcher function. The dispatcher is called from 4 places; each call says, which actual do_J function to run ...
1
vote
1answer
64 views
valgrind reports malloc assertion failure, memcheck doesn't report any errors
Callgrind reported an assertion violation in malloc although memcheck and a usual run reveals no errors:
stp: malloc.c:3096: sYSMALLOc: Assertion `(old_top == (((mbinptr) (((char *) ...
1
vote
0answers
92 views
How to generate a simple callgraph of a multiprocess application with Callgrind?
I've a problem with Valgrind Callgrind.
I need to generate the call graph of an application, but this application launch several processes. I used the --trace-children=yes option of Valgrind, but ...
1
vote
1answer
130 views
Callgrind main() inclusive cost much smaller than 100%
I profiled a few very simple C++ programs running on Linux. The inclusive cost of main() for all of them is far from 100%, something like 3.83%. Am I using callgrind correctly? I have the output of ...
1
vote
2answers
168 views
What profiler should I use to measure _real_ time (including waiting for syscalls) spend in this function, not _CPU_ one
The application does not calculate things, but does i/o, read files, uses network. I want profiler to show it.
I expect something like something like in callgrind that calls clock_gettime each ...
1
vote
1answer
111 views
what exactly does callgrind collect
Is it sampling or is it recording every instruction executed?
Does it just capture the executing function or does it also have the line number?
1
vote
2answers
417 views
Use callgrind as a sampling profiler?
I've been searching for a Linux sampling profiler, and callgrind has come the closest to showing useful results. However the overhead is estimated at 20--100x slower than normal. Additionally, I'm ...
1
vote
1answer
457 views
Using callgrind/kcachegrind to get per-thread statistics
I'd like to be able to see how "expensive" each thread in my application is using callgrind. I profiled with the --separate-thread=yes option which gives you a callgrind file for the whole app and ...
0
votes
0answers
23 views
What means cachegrind counts on function definition line?
I'm using cachegrind to pinpoint suspect (performance-wise) lines. And it works!
In the annotated source from cg_annotate --auto=yes cachegrind.out.nnnnn I understand the meaning of counts next to a ...
0
votes
1answer
27 views
About callgrind ouptut
I am using
http://valgrind.org/docs/manual/cl-manual.html
to profile my application.
But I have a question about it's o/p does it shows
time consumed inside that function
OR
cpU consumed ...
0
votes
1answer
97 views
View gprof output in kcachegrind
How to view output of gprof in kcachegrind? Is here a converter from gcc's gmon.out into callgrind.out?
0
votes
0answers
89 views
Is there a tool to examine the difference of two callgrind/valgrind profiles?
I'm trying to understand how a program's performance changes when run with different options—I have a factor of 1.8 I'd like to explain. I've been doing profiling with [valgrind]'s callgrind ...
0
votes
1answer
99 views
Using callgrind to find out which functions are most intensive
I have just used callgrind on a file and it gave me a callgrind output. Then I used callgrind_annotate to get the results in a more readable form, and I output it into a text file. How am I supposed ...
0
votes
0answers
72 views
Excluding library calls from Callgrind data
Someone told me I could use Callgrind (part of Valgrind) to do profiling, but its output is very hard to filter through because all the libraries are included.
Is there a way to filter out the ...
0
votes
1answer
359 views
How to use callgrind on Centos Linux 5.5
I am trying to use the callgrind profiler to profile my C++ program. I am using Valgrind version 3.6,1 on Linux Centos Version 5.5 on a Intel 32-bit processor. I keep getting the following ...
0
votes
5answers
231 views
Logging code execution in C++
Having used gprof and callgrind many times, I have reached the (obvious) conclusion that I cannot use them efficiently when dealing with large (as in a CAD program that loads a whole car) programs. I ...
0
votes
2answers
369 views
Callgrind for c++ code coverage
Is Callgrind, which is part of valgrind suite a good candidate for C++ code coverage??
0
votes
1answer
87 views
callgrind function names are not shown in child processes
I have process A wich forks process B. A and B - are different application. Both compiled with -g flag.
to run it with callgrind I use command:
valgrind --tool=callgrind --trace-children=yes ./A ...
0
votes
1answer
146 views
callgrind : how to check whether a line executed or not
Is it possible to use callgrind to produce the output like one given by gcov/lcov ?
I'm reading their docs unable to find the exact option for callgrind_annotate
0
votes
2answers
726 views
How use callgrind to profiling only a certain period of program execution?
I want to use valgrind to do some profiling, since it does not need re-build the program. (the program I want to profile is already build with “-g")
But valgrind(callgrind) is quite slow ... so ...