gprof++(1) — Commands
NAME
gprof++ − display call graph profile data for C++ programs
SYNOPSIS
gprof++ [ options ] [ objfile [ gproffile ... ] ]
DESCRIPTION
gprof++ uses gprof(1) to display profiling data for C++ programs. The output of gprof(1) is processed by c++filt(1) so that C++ function names are decoded. See gprof(1) for information on command options.
gprof++ also allows you to specify C++ function names with the -e, -E, -f, and -F options. Names can include the scope resolution operator "::" and argument type information, e.g. "class::function(type1, type2, type3)". A partially specified name can be used to match more than one function, so that "foo" will match all functions whose names begin with "foo", and "bar::" will match all member functions of class "bar".