Difference between revisions of "ProfilingWesnoth"
From The Battle for Wesnoth Wiki
Pentarctagon (talk | contribs) (→perf) |
Pentarctagon (talk | contribs) (→gcov) |
||
| Line 49: | Line 49: | ||
=== gcov === | === gcov === | ||
| − | + | To use [https://gcc.gnu.org/onlinedocs/gcc/Gcov.html gcov]: | |
| + | # After the executable is built and been executed as needed, there will be many <code>.gcda</code> and <code>.gcno</code> files in the source directory. | ||
| + | # Generate the human readable information from those files with <code>gcov ./**/*.gcno</code>. This will generate a <code>.gcov</code> file for each source file. | ||
| + | # Open any gcov file(s) of interest. | ||
=== gprof === | === gprof === | ||
Revision as of 07:50, 9 June 2021
Contents
Linux
When using either scons or cmake to build, there are four options available for profiling which are listed below. For cmake use -DPROFILER=<name>, for scons use profiler=<name>.
gperftools
To use gperftools:
- Install the packages
google-perftools(needed later for running google-pprof) andlibgoogle-perftools-dev(needed in order to use the -lprofiler linker option). - In a terminal, export the
CPUPROFILEvariable, such asexport CPUPROFILE=./wesnoth-prof. - Build any executable while setting either
-DPROFILER=gperftools(cmake) orprofiler=gperftools(scons). - Run the executable and have it do any task(s) as needed to get relevant profiling information.
- Generate the human-readable profiling output using the command
google-pprof <executable> <profiling info> > prof.txtfor a text file, orgoogle-pprof -gif <executable> <profiling info> > prof.giffor a viewable gif image.
Unfortunately, the output, whether graphical or text, doesn't provide any labels for what the values mean. For the text output, the columns are:
- The number of profiling samples in this function
- The percentage of profiling samples in this function
- The percentage of profiling samples in the functions printed so far
- The number of profiling samples in this function and its callees
- The percentage of profiling samples in this function and its callees
- The function name
For the graphical output, each square will contain:
- The namespace/class/method profiled, each of those on a separate line
- The number of profiling samples in this function
- The percentage of profiling samples in this function (in parenthesis)
- The number of profiling samples in this function and its callees
- The percentage of profiling samples in this function and its callees (in parenthesis)
perf
To use perf:
- Install the packages
linux-tools-commonandlinux-tools-<kernel version>, ie linux-tools-5.8.0-55-generic. - Run
perf record <executable>. To do this you will need to either:- Run the executable as root
- Switch to root and run
echo 2 > /proc/sys/kernel/perf_event_paranoid - Create a new group that has rights to use perf and add your user to it, ie:
cd /usr/bin
groupadd perf_users
chgrp perf_users perf
chmod o-rwx perf
setcap cap_sys_admin,cap_sys_ptrace,cap_syslog=ep perf
Once that's complete, there will be a perf.data file created, and commands like perf report can be run.
gcov
To use gcov:
- After the executable is built and been executed as needed, there will be many
.gcdaand.gcnofiles in the source directory. - Generate the human readable information from those files with
gcov ./**/*.gcno. This will generate a.gcovfile for each source file. - Open any gcov file(s) of interest.