Tagged Questions

gprof is a GNU tool used for code profiling.

learn more… | top users | synonyms

50
votes
5answers
16k views

Alternatives to gprof

What other programs do the same thing as gprof?
11
votes
9answers
624 views

How to profile a continuously running server running on FreeBSD

I'm trying to profile a server (source code available to me. c-code) on Linux environment. This server runs continuously like a web server. I'm trying to use gprof to profile the server. If the server ...
11
votes
5answers
2k views

How to profile multi-threaded C++ application on Linux?

I used to do all my Linux profiling with gprof. However, with my multi-threaded application, it's output appears to be inconsistent. Now, I dug this up: ...
7
votes
6answers
3k 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 ...
5
votes
2answers
175 views

How does gcc's -pg flag works?

I'm trying to understand how does the -pg (or -p) flag works when compiling a C code with gcc. The official gcc documentation, only states: -pg Generate extra code to write profile ...
5
votes
4answers
96 views

Profiling partial programs in Linux

I have a program in which significant amount of time is spent loading and saving data. Now I want to know how much time each function is taking in terms of percentage of the total running time. ...
5
votes
2answers
312 views

How exactly does gprof work?

This is something of a bloated question, so I apologize ahead of time. I'm curious about how gprof works on a low technical level. I understand its done by timers, but then why does the executable ...
5
votes
1answer
207 views

C++ main only uses ~20% time says gprof

I tried profiling my C++ program with gprof. The program itself ran for about 53 seconds, so I dont understand why it says, main only ran for about 8.29 seconds. Any explanation on this? Here is an ...
5
votes
3answers
551 views

Get gprof to profile based on wall-clock time?

My understanding is that by default gprof takes into account CPU time. Is there a way to get it to profile based on wall-clock time? My program does a lot of disk i/o, so the CPU time it uses only ...
5
votes
2answers
928 views

Is it possible to get a graphical representation of gprof results?

I am interested in getting the profiling of some number crunching program. I compiled it with -g and -pg options and linked it and got it gmon.out. After reading the info (plain text) it looks a bit ...
5
votes
7answers
1k views

Speeding up virtual function calls in gcc

Profiling my C++ code with gprof, I discovered that a significant portion of my time is spent calling one virtual method over and over. The method itself is short and could probably be inlined if it ...
4
votes
4answers
147 views

Why does the order of loops in a matrix multiply algorithm affect performance?

I am given two functions for finding the product of two matrices: void MultiplyMatrices_1(int **a, int **b, int **c, int n){ for (int i = 0; i < n; i++) for (int j = 0; j < n; ...
4
votes
1answer
252 views

How to build-in gprof support to a program built with SCons?

Greetings, Here is my SConstruct file: env = Environment() env.Append(CCFLAGS=['-g','-pg']) env.Program(target='program1', source= ['program1.c']) Also here is the output of the compilation: ...
4
votes
2answers
326 views

Using gprof with sockets

I have a program I want to profile with gprof. The problem (seemingly) is that it uses sockets. So I get things like this: ::select(): Interrupted system call I hit this problem a while back, ...
4
votes
4answers
2k views

Profiling C code on Windows when using Eclipse

I know I can profile my code with gprof and kprof on Linux. Is there a comparable alternative to these applications on Windows?
4
votes
2answers
665 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 ...
3
votes
1answer
51 views

understanding the output of gprof on solaris

I thought of learning gprof.so i started with a simple program. I have written a small program in c below: #include<stdio.h> #include<unistd.h> void hello(void); int main() { hello(); ...
3
votes
3answers
117 views

Simple operation to waste time?

I'm looking for a simple operation / routine which can "waste" time if repeated continuously. I'm researching how gprof profiles applications, so this "time waster" needs to waste time in the user ...
3
votes
2answers
205 views

gprof vs cachegrind profiles

While trying to optimize a code, I'm a bit puzzled by differences in profiles produced by kcachegrdind and gprof. Specifically, if I use gprof (compiling with the -pg switch, etc), I have this: Flat ...
3
votes
1answer
885 views

gcc: undefined reference to _mcount (gprof instrumentation)

When compiling my c++ sources with the -pg option to inject gprof profile instrumentation code the compile fails with the undefined reference to _mcount error. Without this option everything compiles ...
3
votes
1answer
379 views

Alternative to -pg with Clang?

I wish to profile CPU (sample if possible), with as small a performance impact as possible (hence similar to GCC's -pg), binaries compiled with Clang. Is there an alternative that uses instrumentation ...
3
votes
3answers
713 views

How to use gprof to profile a daemon process without terminating it gracefully?

Need to profile a daemon written in C++, gprof says it need to terminate the process to get the gmon.out. I'm wondering anyone has ideas to get the gmon.out with ctrl-c? I want to find out the hot ...
3
votes
3answers
96 views

Strange profiler behavior: same functions, different performances

I was learning to use gprof and then i got weird results for this code: int one(int a, int b) { int i, r = 0; for (i = 0; i < 1000; i++) { r += b / (a + 1); } return r; ...
3
votes
1answer
1k views

gprof a library - question

I need to gprof a library in our system to examine the function calls and see if we can optimize it any more. Basically, what I have is Executable A which uses a shared Library myLib.so I want to ...
3
votes
5answers
848 views

Benchmarking (gprof) C++ program. Using eclipse environment

Well I've the following problem. Facts; - Using eclipse - Using MinGW I wanted to benchmark my created C++ program. I searched google and then came; ...
3
votes
2answers
3k views

gprof : How to generate call graph for functions in shared library that is linked to main program

I am working on Linux environment. I have two 'C' source packages train and test_train. train package when compiled generates libtrain.so test_train links to libtrain.so and generates executable ...
3
votes
2answers
2k 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?
3
votes
1answer
2k 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 ...
2
votes
1answer
53 views

gprof issue with output

The question is: Why is my gprof output only displaying "Index by function name" ? I have compiled my application with the support of this tutorial : ...
2
votes
4answers
415 views

What are _Unwind_SjLj_Unregister and _Unwind_SjLj_Register?

What are _Unwind_SjLj_Unregister and _Unwind_SjLj_Register? I get them as my top processor time users in my gprof report. google only returns links to people complaining about errors with these two. ...
2
votes
5answers
232 views

vector<bool> access

I profiled my code using gprof and from the report, most, if not all of the top 20 or so things are about vector Flat profile: Each sample counts as 0.01 seconds. % cumulative self ...
2
votes
2answers
183 views

Inaccuracy in gprof output

I am trying to profile a c++ function using gprof, I am intrested in the %time taken. I did more than one run and for some reason I got a large difference in the results. I don't know what is causing ...
2
votes
2answers
101 views

Why does gprof occasionally not print number of calls for particular functions?

The application is compiled with -O0 -g -pg and gprof is run with its default settings.
2
votes
1answer
163 views

How do I exclude stuff from gprof output?

I'm trying to profile an application I have, but I don't want anything related to the UI (made in wxWidgets) to show up in gprof's callgraph etc. How can I do this?
2
votes
3answers
458 views

Why do debug symbols so adversely affect the performance of threaded applications on Linux?

I'm writing a ray tracer. Recently, I added threading to the program to exploit the additional cores on my i5 Quad Core. In a weird turn of events the debug version of the application is now running ...
2
votes
6answers
349 views

How to get the call graph of a program with a bit of profiling information

I want to understand how a C++ program that was given to me works, and where it spends the most time. For that I tried to use first gprof and then gprof2dot to get the pictures, but the results are ...
2
votes
4answers
533 views

Optimization: A tool like gprof for visual studio

As a C# programmer, i'm in a transition from small projects to medium projects. I didn't need a profiler for my little projects before. But now I need a tool that help me improving the performance of ...
2
votes
1answer
444 views

How to profile a shared object without profiling the host app?

I have a host application and I have written a plug-in. I compile my plug-in down to a shared object (say foo.so), and the host application will load it via dlopen. In this case, my host application ...
2
votes
3answers
206 views

Does gprof take time spent blocked into account?

I am running gprof on my executable, but the executable spends a lot of time wait()ing for child processes to complete. Is the time spent waiting factored in to the gprof timings?
2
votes
3answers
504 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.
2
votes
3answers
2k 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
3answers
162 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
474 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 ...
2
votes
4answers
441 views

gprof: Any way to specify the location of profile data

The default the profile file is from the executable is run and the file is called gmon.out. Is there any way to specify a new location? I'm using gcc 3.4.6 on i386/linux2.6
1
vote
1answer
45 views

How to force a program compiled with '-pg' dump its stat info when it is still running?

I'm developing in C++(g++) with a non-opensource lib. every time I run the program, the lib will crash (it double-free some memory). it's ok for my program now. but it's bad for profiling. I use -pg ...
1
vote
0answers
39 views

MinGW gprof inaccurate results?

I've been profiling a program with gprof on Linux (Ubuntu 11.04) and Windows (7, latest version of MinGW), same program on more or less the same dataset each time, and getting significantly different ...
1
vote
2answers
57 views

Gprof results: what is “alloc_mmap”?

My results for a short run of my program are as follows: 67.93 3.24 3.24 grid::rKfour(int, int) 9.43 3.69 0.45 alloc_mmap ...
1
vote
2answers
86 views

gprof command is not creating proper out.txt

First of all I'm running MacOSX 10.7.1. I've installed all properly, Xcode 4 and all the libraries, to work with C lenguage. I'm having troubles running gprof command in shell. I'll explain step by ...
1
vote
1answer
65 views

Interpreting gprof output with <spontaneous>

I am trying to find a performance issue in my program and thus instrumented the code with profiling. gprof creates a flat profile like this: Flat profile: Each sample counts as 0.01 seconds. % ...
1
vote
0answers
58 views

gprof symspec including C++ class functions

I'm trying to profile a particular portion of a large C++ program. I am using gprof and Gprof2Dot to generate nice graphs. However, I would like to exclude certain startup functions from the graph. I ...

1 2