Top "Gprof" questions

gprof is a GNU tool used for code profiling.

Alternatives to gprof

What other programs do the same thing as gprof?

profiling profiler gprof
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 …

c++ multithreading profiling gprof
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 …

gdb callstack gprof
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 …

c debugging profiling gprof sprof
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 …

bash gprof
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 …

c++ macos unix gprof
How does gcc's -pg flag work?

I'm trying to understand how the -pg (or -p) flag works when compiling C code with gcc. The official gcc …

gcc compilation gprof compiler-flags
What is -no-pie used for?

I was working on Ubuntu 17.10 with GPROF for some testing with c files and when i execute with gprof the …

c testing gcc profiling gprof
How to use gprof with cmake

I have looked at dozens of tutorials for profiling with gprof. I'm trying to work with code for the SMT …

cmake profiling gprof dreal
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 …

c++ debugging gprof