gprof is a GNU tool used for code profiling.

learn more… | top users | synonyms

0
votes
0answers
61 views

gprof global constructors keyed to static member

This is the same question asked in g++ gprof global constructors keyed to static member My apologies for being a repetitive newbie But I identified the issue there as being the same as mine but it ...
0
votes
0answers
30 views

Multiple definition compile errors using -pg flag for gprof in C++

I am trying to compile some C++ code to be used with gprof, and have tried using the -pg flag, but am getting errors regarding multiple definitions for each of my functions. My command is basically ...
0
votes
0answers
19 views

Issue with gprof and fork

When I instrument my program which has fork(), the program is blocked at fork() call. I have tried the chdir() approach to avoid gmon.out multiple process overwriting issue. Any idea? thanks.
3
votes
1answer
227 views

Why is gccgo slower than gc in that particular case?

I'm sure everyone knowing golang knows that blog post here. Reading it again, I wondered if using gccgo instead of go build would increase the speed a bit more. In my typical use case (scientific ...
0
votes
0answers
80 views

Oprofile and gprof output varies for same code

I am running my code AMD optron 6270 machine. OS is Centos 6.2 release. I have made a simple program as #include<stdio.h> #include<stdlib.h> int calling (long a); int calling1 (long a); ...
0
votes
1answer
36 views

gprof not showing call graph

I am running my program with the -pg option. When I open the output gmon.out it only cumulative list and not call graphs. How do I fix that? I know this was asked before here: gprof - File is ...
3
votes
1answer
245 views

Profiling library equivalent to gprof/callgrind

I'm looking for a C/C++ library with profiling capabilities such as gprof, or callgrind. More precisely, I want its output to be equivalent to what callgrind would issue, in order to pass it to ...
0
votes
0answers
23 views

“Font not found” error for running gprof2dot on Linux, the FAQ [closed]

I need to install Gprof2Do on Linux: http://code.google.com/p/jrfonseca/wiki/Gprof2Dot#Example For that , i need to install http://www.graphviz.org/Download..php but, after install, run ...
1
vote
1answer
163 views

Fortran profiling: get line execution count

I'm using the Intel Fortran Compiler (v. 12.0.3) on Linux. I'd like to perform profiling with gprof and get a basic block count with all lines labelled with their own run count, but all I have managed ...
0
votes
1answer
75 views

How to understand the gprof outputs?

Here is my source code #include <stdio.h> #include <stdlib.h> #include <string.h> #include <inttypes.h> #include <windows.h> #include <string> #include ...
0
votes
3answers
87 views

Why is function call taking significantly longer than code executed according to gprof?

I'm learning how to profile my code with gprof. For one of my applications, I have the following output: Each sample counts as 0.01 seconds. % cumulative self self total ...
0
votes
0answers
56 views

Something weird in performance analysis

I used gprof to analyze the program's performance, and found something weird. The profiling results said: granularity: each sample hit covers 4 byte(s) for 0.21% of 4.66 seconds But the actually ...
0
votes
1answer
129 views

using the gprof -f option in Linux for c++

Hi so i have started using gprof for my profiling work and it works fine except for the -f option which allows me to specifiy a particular function to be viewed in the call graph. for example ...
1
vote
1answer
294 views

Profile Generate vs PG

Can anybody explain to me the difference between profile-generate and the pg options?
2
votes
1answer
51 views

Comparing profiles of should-be-identical runs of a C++ program to detect divergence

I have a C++ binary (GNU LilyPond) that is occasionally generating different output for the same input. valgrinding the binary is not helping to track down where this fuzz occurs, nor is reading over ...
0
votes
1answer
113 views

Change time precision in GPROF output

I'm trying to use gprof for profiling an opengl app. Since main draw function gets called dozens times in a second, the times spent in particulas functions are small. gprof output contains times ...
0
votes
1answer
78 views

Could Gprof be more detailed?

I'm trying to profile my C code with gprof. I'm compiling .a library with -pg option and compiling executable also with -pg and with this .a library. Running. Getting gmon.out. Viewing it using ...
0
votes
1answer
66 views

Would the time counted in gprof include what is spent in functions that are not profiled?

I now have a project which I want do profiling on, but it used another library which I have no control of. Say if there if such a function: #include <library.h> void function(...) { // do ...
1
vote
3answers
219 views

What is the difference between profilers

What are the differences between using profilers that need to recompile the source code with debugging options(like gprof) and profilers that do not need recompiling(like Valgrind, OProfile, ...)?
0
votes
0answers
159 views

Profiling on AIX 6.1 using gprof

I profile a program compiled on AIX 5.2 using gprof. This version only runs one thread and the produced gmon.out holds all the information I need. I'm trying to profile this program compiled on AIX ...
1
vote
0answers
98 views

Time and performance profiling tools

In a large scale code base, I am instrumenting functions/methods with timers (start and end time). I will be collecting these time logs (similar to what gprof does). I was wondering if there is a tool ...
1
vote
0answers
346 views

Compiling OpenCV 2.4.1 with android NDK for profiling with gprof

I'm working with android NDK and OpenCV (Version 2.4.1). What I'm trying to do is to profile an android application that uses opencv as a library (and profile the function called into opencv too). I ...
0
votes
0answers
69 views

what is “data_start” in gprof output?

I ran gprof on a threaded program of mine, trying to find out why one version is slower than another. I saw that the function containing the inner loop on the slow version had 4 calls to "data_start" ...
6
votes
2answers
475 views

Saving gmon.out before killing a process

I would like to use gprof to profile a daemon. My daemon uses a 3rd party library, with which it registers some callbacks, then calls a main function, that never returns. I need to call kill (either ...
3
votes
3answers
223 views

What is _IO_wfile on a gprof output of a fortran code?

I have some fortran code compiled with intel fortran compiler ifort. When I do a profile test with gprof, I get that most of the time is used in IO operations, I think finding the end of the files, ...
0
votes
1answer
115 views

How to calculate time for a cilk_spawn

thanks for looking at the post I am benchmarking some Cilk Plus code and was looking to calculate the time required to complete a "spawn" operation. I am interested in calculating only the time ...
1
vote
1answer
104 views

Why gprof underestimates total time

I have CPU bound process which runs for 5 hours (CPU time by using getrusage()) I tried to profile it by gprof. The total time main() took is only about 5000s. My program is CPU bound, it has some ...
1
vote
3answers
434 views

`gprof` time spent in particular lines of code

I've been using the gprof profiler in conjunction with g++. I have a function in my code which encapsulates several sections of behaviour which are related enough to the primary function that it ...
0
votes
1answer
150 views

using gprof and boost

While profiling a bit of code that use's many boost functions with gprof, there is a very nasty and hard to follow output see sample below , is there any way to clean up gprof for use with boost or ...
2
votes
2answers
2k views

gdb - list of all function calls made in an application

How can we list all the functions being called in an application. I tried using GDB but its backtrace list only upto the main function call. I need deeper list i.e list of all the functions being ...
1
vote
3answers
117 views

How to profiling sections of code?

I need to profile a piece of software written in C. Now the problem is that while gprof or my own begin timer/end timer function calls would provide me time spent in each function, I would have no ...
1
vote
1answer
595 views

Using gprof with a makefile

I'm having problems trying to profile my program. I compile each function seperately like this: function1.o: function1.cpp g++ -g -pg -z -c function1.cpp Then I link together ...
7
votes
3answers
494 views

Tools for profiling OCaml code

Is anybody aware of programs for profiling OCaml code apart from using the -p option while compilation and then using gprof? I am asking this question in order to check if the sampling time of 0.01 ...
0
votes
0answers
891 views

g++ gprof global constructors keyed to static member

I'm profiling a c++ app on linux compiled with g++. In the gprof output I'm getting some nontrivial usage statistics for: global constructors keyed to _ZN4CGps14ms_OutputNamesE Where ...
1
vote
1answer
138 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 ...
0
votes
1answer
78 views

Adding grpof -pg Options Makes My Multithreaded Application Non-multithreaded

I'm trying to profile the performance for my multithreaded application. So I added "-pg" option when compiling it. I'm using a fixed number of threads in the thread pool: if there are 4 CPU cores, ...
3
votes
1answer
157 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(); ...
0
votes
3answers
325 views

GCC Compiling options syntax

I am trying to gprof my program. I want a line-by-line profiling. However, I can't seem to get the syntax right. I am using "make" and not "gcc" so please help only with suggestions that fit make. I ...
1
vote
0answers
329 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
90 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 ...
0
votes
1answer
675 views

gprof - File is missing call-graph data

I'm just starting out with gprof and am trying to generate a call graph. I'm using cmake for setting up my makefiles and I'm setting CMAKE_EXE_LINKER_FLAGS = -gp to enable profiling. The only cxx ...
1
vote
1answer
1k views

How to interprete gprof output

I just profiled my program with gprof and got this: 100.01 0.01 0.01 23118 0.43 0.43 std::vector<int, std::allocator<int> >::operator=(std::vector<int, ...
5
votes
2answers
681 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 ...
3
votes
1answer
395 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
208 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 ...
4
votes
4answers
1k 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; ...
8
votes
2answers
2k 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 ...
1
vote
1answer
466 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?
3
votes
3answers
256 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 ...
1
vote
0answers
262 views

GCC call graph profiling (-pg, gprof) on iOS possible?

Is there a way to use GCC call graph profiling on iOS? Setting GENERATE_PROFILING_CODE in Xcode4 seems to have no effect when building for iOS devices (I also don't see -pg being passed to compiler or ...

1 2 3