0
votes
1answer
18 views
gprof - Executable in a remote location (in PATH)
I have a series of blackbox tests made from shell scripts (Similar to that of the tests for GNU Hello).
I am trying to get it to generate the flat-profile automatically if the gmon.out is found (and …
0
votes
4answers
153 views
How to modify a C program so that gprof can profile it?
When I run gprof on my C program it says no time accumulated for my program and shows 0 time for all function calls. However it does count the function calls.
How do I modify my program so that …
0
votes
1answer
45 views
gprof error: profile file has unsupported version
I am trying to profile a shared library but there is an error when I invoke gprof:
$ export LD_PROFILE=libMy.so
$ ./a.out
$ gprof -q libMy.so /var/tmp/libMy.so.profile
gprof: file …
1
vote
5answers
175 views
Swap 2D Double Arrays in c++
I have the following method to swap two double arrays (double**) in c++. Profiling the code, the method is accounting for 7% of the runtime... I was thinking that this should be a low cost …
1
vote
3answers
206 views
unable to accumulate time using gprof - the gnu profiler
I am running cygwin on windows and using latest version of gprof for profiling my code. My problem is that the flat profile shows zero sec for each of the functions in my code, I even tried to loop …
2
votes
2answers
171 views
What is function __tcf_0? (Seen when using gprof and g++).
We use g++ 4.2.4 and I'm trying to track down some performance problems in my code.
I'm running gprof to generate the profile, and I'm getting the following "strangeness" in that the most expensive …
2
votes
3answers
101 views
Profile single function in gprof
Is it possible to use gprof to line-profile a single function in C++?
gprof -l -F function_name ...
does not seem to work.
Thanks,
Bi.
0
votes
3answers
70 views
Format of parameter to display call graph for templated method with gprof?
What is the command line format to display function call graph for a method in templated class with gprof?
For simple C method you would specify it like:
gprof -f foo myprogram > gprof.output
…
2
votes
3answers
487 views
Problem with gprof on OS X: [program] is not of the host architecture
I'm having trouble running gprof on OS X. The file test.c is:
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
and my terminal looks like:
$ gcc -pg test.c
$ gcc …
2
votes
5answers
431 views
gprof reports no time accumulated
I'm trying to profile a C++ application with gprof on a machine running OSX 10.5.7.
I compile with g++ in the usual way, but using -pg flags, run the application and try to view the call graph with …
0
votes
2answers
57 views
Compilers compatible with gprof?
I am looking for a list of compilers able to generate a gprof output.
1
vote
2answers
250 views
Using gprof with pthreads
Can gprof be used to profile a multi-threaded program that uses pthreads? That is, will its output include the time used in all the threads?
2
votes
3answers
83 views
Why don’t cycle summaries have any callers in gprof’s call-graph output?
I use GNU gprof 2.15.94.0.2.2 to do profiling of my C++ program, which has large call cycles. I expected to see something like below in the call graph output as gprof's documentation indicates:
index …
2
votes
2answers
148 views
Finding which functions are called in a multi-process program without modifying source?
I'm working on a project where I need to find which functions get called in various Linux programs (written in C) given particular inputs. My current approach has been to compile a program with -pg …
0
votes
1answer
202 views
gprof and arguments to executable
when using gprof:
gprof options [executable-file [profile-data-files...]] [> outfile]
if you have options to pass to the executable like:
gprof a.out --varfred=32
then gprof assumes that i am …
