The Kcachegrind Handbook
The Kcachegrind Handbook
The Kcachegrind Handbook
2
Contents
1 Introduction 6
1.1 Profiling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
1.2 Profiling Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
1.3 Profiling Tools . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
1.4 Visualization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
2 Using KCachegrind 9
2.1 Generate Data to Visualize . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
2.1.1 Callgrind . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
2.1.2 OProfile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
2.2 User Interface Basics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
3 Basic Concepts 11
3.1 The Data Model for Profile Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
3.1.1 Cost Entities . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
3.1.2 Event Types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
3.2 Visualization State . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
3.3 Parts of the GUI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
3.3.1 Sidedocks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
3.3.2 View Area . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
3.3.3 Areas of a Tab . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
3.3.4 Synchronized View with Selected Entity in a Tab . . . . . . . . . . . . . . . . 13
3.3.5 Synchronization between Tabs . . . . . . . . . . . . . . . . . . . . . . . . . . 13
3.3.6 Layouts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
3.4 Sidedocks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.4.1 Flat Profile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.4.2 Parts Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.4.3 Call Stack . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.5 Views . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.5.1 Event Type . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.5.2 Call Lists . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.5.3 Maps . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
3.5.4 Call Graph . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
3.5.5 Annotations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
The KCachegrind Handbook
4 Command Reference 16
4.1 The main KCachegrind window . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
4.1.1 The File Menu . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
6 Glossary 18
4
Abstract
Chapter 1
Introduction
KCachegrind is a browser for data produced by profiling tools. This chapter explains what pro-
filing is for, how it is done, and gives some examples of profiling tools available.
1.1 Profiling
When developing a program, one of the last steps often involves performance optimizations. As
it makes no sense to optimize functions rarely used, because that would be a waste of time, one
needs to know in which part of a program most of the time is spent.
For sequential code, collecting statistical data of the programs runtime characteristic like time
numbers spent in functions and code lines usually is enough. This is called Profiling. The pro-
gram is run under control of a profiling tool, which gives the summary of an execution run at the
end. In contrast, for parallel code, performance problems typically are caused when one proces-
sor is waiting for data from another. As this waiting time usually cannot easily attributed, here it
is better to generate timestamped event traces. KCachegrind cannot visualize this kind of data.
After analyzing the produced profile data, it should be easy to see the hot spots and bottlenecks
of the code: for example, assumptions about call counts can be checked, and identified code
regions can be optimized. Afterwards, the success of the optimization should be verified with
another profile run.
6
The KCachegrind Handbook
source code is similar when looking only at every n-th event instead of every event, a measure-
ment method whose overhead is tunable has been developed: it is called Sampling. Time Based
Sampling (TBS) uses a timer to regularly look at the program counter to create a histogram over
the program code. Event Based Sampling (EBS) exploits the hardware counters of modern pro-
cessors, and uses a mode where an interrupt handler is called on counter underflow to generate
a histogram of the corresponding event distribution: in the handler, the event counter is always
reinitialized to the n of the sampling method. The advantage of sampling is that the code does
not have to be changed, but it is still a compromise: the above assumption will be more correct if
n is small, but the smaller the n, the higher the overhead of the interrupt handler.
Another measurement method is to simulate things happening in the computer system when ex-
ecuting a given code, i.e. execution driven simulation. The simulation is always derived from a
more or less accurate machine model; however, with very detailed machine models, giving very
close approximations to reality, the simulation time can be unacceptably high in practice. The ad-
vantage of simulation is that arbitrarily complex measurement/simulation code can be inserted
in a given code without perturbing results. Doing this directly before execution (called runtime
instrumentation), using the original binary, is very comfortable for the user: no re-compilation
is necessary. Simulation becomes usable when simulating only parts of a machine with a simple
model; another advantage is that the results produced by simple models are often easier to un-
derstand: often, the problem with real hardware is that results include overlapping effects from
different parts of the machine.
7
The KCachegrind Handbook
Callgrind is an extension of Cachegrind that builds up the call graph of a program on-the-fly, i.e.
how the functions call each other and how many events happen while running a function. Also,
the profile data to be collected can separated by threads and call chain contexts. It can provide
profiling data on an instruction level to allow for annotation of disassembled code.
1.4 Visualization
Profiling tools typically produce a large amount of data. The wish to easily browse down and
up the call graph, together with fast switching of the sorting mode of functions and display of
different event types, motivates a GUI application to accomplish this task.
KCachegrind is a visualization tool for profile data fulfilling these wishes. Despite being pro-
grammed first with browsing the data from Cachegrind and Calltree in mind, there are converters
available to be able to display profile data produced by other tools. In the appendix, a description
of the Cachegrind/Callgrind file format is given.
Besides a list of functions sorted according exclusive or inclusive cost metrics, and optionally
grouped by source file, shared library or C++ class, KCachegrind features various views for a
selected function, namely:
• a call-graph view, which shows a section of the call graph around the selected function,
• a tree-map view, which allows nested-call relations to be visualized, together with inclusive
cost metric for fast visual detection of problematic functions,
• source code and disassembler annotation views, allowing to see details of cost related to source
lines and assembler instructions.
8
The KCachegrind Handbook
Chapter 2
Using KCachegrind
2.1.1 Callgrind
Callgrind is a part of Valgrind. Note that it previously was called Calltree, but that name was
misleading.
The most common use is to prefix the command line to start your application with valgrind
--tool=callgrind , as in:
At program termination, a file callgrind.out.pid will be generated, which can be loaded into
KCachegrind.
More advanced use is to dump out profile data whenever a given function of your application is
called. E.g. for Konqueror, to see profile data only for the rendering of a Web page, you could
decide to dump the data whenever you select the menu item View → Reload . This corresponds
to a call to KonqMainWindow::slotReload. Use:
This will produce multiple profile data files with an additional sequential number at the end of
the filename. A file without such an number at the end (only ending in the process PID) will also
be produced; by loading this file into KCachegrind, all others are loaded too, and can be seen in
the Parts Overview and Parts list.
2.1.2 OProfile
OProfile is available from its home page. Follow the installation instructions on the Web site,
but, before you do, check whether your distribution does not already provide it as package (like
SuSE® ).
9
The KCachegrind Handbook
System-wide profiling is only permitted to the root user, as all actions on the system can be
observed; therefore, the following has to be done as root. First, configure the profiling process,
using the GUI oprof_start or the command-line tool opcontrol. Standard configuration should
be timer mode (TBS, see introduction). To start the measurement, run opcontrol -s. Then
run the application you are interested in and, afterwards, do a opcontrol -d. This will write
out the measurement results into files under folder /var/lib/oprofile/samples/ . To be able to
visualize the data in KCachegrind, do in an empty directory:
This will produce a lot of files, one for every program which was running on the system. Each
one can be loaded into KCachegrind on its own.
10
The KCachegrind Handbook
Chapter 3
Basic Concepts
This chapter explains some concepts of the KCachegrind, and introduces terms used in the inter-
face.
Instruction
An assembler instruction at a specified address.
Source Line of a Function
All instructions that the compiler (via debug information) maps to a given source line spec-
ified by source file name and line number, and which are executed in the context of some
function. The latter is needed because a source line inside of an inlined function can appear
in the context of multiple functions. Instructions without any mapping to an actual source
line are mapped to line number 0 in file ???.
Function
All source lines of a given function make up the function itself. A function is specified by
its name and its location in some binary object if available. The latter is needed because
binary objects of a single program each can hold functions with the same name (these can
be accessed e.g. with dlopen or dlsym; the runtime linker resolves functions in a given
search order of binary objects used). If a profiling tool cannot detect the symbol name of
a function, e.g. because debug information is not available, either the address of the first
executed instruction typically is used, or ???.
Binary Object
All functions whose code is inside the range of a given binary object, either the main exe-
cutable or a shared library.
Source File
All functions whose first instruction is mapped to a line of the given source file.
11
The KCachegrind Handbook
Class
Symbol names of functions typically are hierarchically ordered in name spaces, e.g. C++
namespaces, or classes of object-oriented languages; thus, a class can hold functions of the
class or embedded classes itself.
Profile Part
Some time section of a profile run, with a given thread ID, process ID, and command line
executed.
As can be seen from the list, a set of cost entities often defines another cost entity; thus, there is a
inclusion hierarchy of cost entities.
Positions tuples:
Jumps between functions are not allowed, as this makes no sense in a call graph; thus, constructs
like exception handling and long jumps in C have to be translated to popping the call stack as
needed.
12
The KCachegrind Handbook
3.3.1 Sidedocks
Sidedocks are side windows which can be placed at any border of a KCachegrind window. They
always contain a list of cost entities sorted in some way.
• The Function Profile is a list of functions showing inclusive and exclusive cost, call count,
name and position of functions.
• Parts Overview
• Call Stack
Besides an active entity, each tab has a selected entity. As most view types show multiple entities
with the active one somehow centered, you can change the selected item by navigating inside a
view (by clicking with the mouse or using the keyboard). Typically, selected items are shown in
a highlighted state. By changing the selected entity in one of the views of a tab, all other views
highlight the new selected entity accordingly.
If there are multiple tabs, a selection change in one tab leads to an activation change in the next
tab, be it right of the former or under it. This kind of linkage should, for example, allow for fast
browsing in call graphs.
3.3.6 Layouts
The layout of all the tabs of a window can be saved (View → Layout). After duplicating the
current layout (View → Layout → Duplicate (Ctrl++)) and changing some sizes or moving a
view to another area of a tab, you can quickly switch between the old and the new layout via
Ctrl+← and Ctrl+→. The set of layouts will be stored between KCachegrind sessions of the same
profiled command. You can make the current set of layouts the default one for new KCachegrind
sessions, or restore the default layout set.
13
The KCachegrind Handbook
3.4 Sidedocks
Partitioning Mode
The partitioning is shown in groups for a profile data part, according to the group type
selected. For example, if ELF object groups are selected, you see colored rectangles for each
used ELF object (shared library or executable), sized according to the cost spent therein.
Diagram Mode
A rectangle showing the inclusive cost of the current active function in the part is shown.
This, again, is split up to show the inclusive costs of its callees.
3.5 Views
The Event Type list shows all cost types available and the corresponding self and inclusive cost
of the current active function for that event type.
By choosing an event type from the list, you change the type of costs shown all over KCachegrind
to the selected one.
14
The KCachegrind Handbook
• Direct Callers
• Direct Callees
• All Callers
• All Callees
3.5.3 Maps
A treemap view of the primary event type, up or down the call hierarchy. Each colored rectangle
represents a function; its size is approximately proportional to the cost spent therein while the
active function is running (however, there are drawing constrains).
For the Caller Map, the graph shows the nested hierarchy of all callers of the currently activated
function; for the Callee Map, it shows that of all callees.
Appearance options can be found in the context menu. To get exact size proportions, choose
Skip Incorrect Borders. As this mode can be very time-consuming, you may want to limit the
maximum drawn nesting level before. Best determinates the split direction for children from
the aspect ratio of the parent. Always Best decides on remaining space for each sibling. Ignore
Proportions takes space for function name drawing before drawing children. Note that size
proportions can get heavily wrong.
Keyboard navigation is available with the left and right arrow keys for traversing siblings, and
up and down arrow keys to go a nesting level up and down. Enter activates the current item.
This view shows the call graph around the active function. The cost shown is only the cost spent
while the active function was actually running, i.e. the cost shown for main() (if it’s visible)
should be the same as the cost of the active function, as that is the part of inclusive cost of main()
spent while the active function was running.
For cycles, blue call arrows indicate that this is an artificial call, which never actually happened,
added for correct drawing.
If the graph is larger than the drawing area, a bird’s eye view is shown on a side. There are view
options similar to those of the call maps; the selected function is highlighted.
3.5.5 Annotations
The annotated source or assembler lists show the source lines or disassembled instructions of
the current active function together with the (self) cost spent executing the code of a source line
or instruction. If there was a call, lines with details on the call are inserted into the source: the
(inclusive) cost spent inside of the call, the number of calls happening, and the call destination.
Select such a call information line to activate the call destination.
15
The KCachegrind Handbook
Chapter 4
Command Reference
16
The KCachegrind Handbook
Chapter 5
17
The KCachegrind Handbook
Chapter 6
Glossary
Cost Entity
An abstract item related to source code to which event counts can be attributed. Dimensions
for cost entities are code location (e.g. source line, function), data location (e.g. accessed
data type, data object), execution location (e.g. thread, process), and tuples or triples of the
aforementioned positions (e.g. calls, object access from statement, evicted data from cache).
Event Costs
Sum of events of some event type occurring while the execution is related to some cost
entity. The cost is attributed to the entity.
Event Type
The kind of event of which costs can be attributed to a cost entity. There are real event types
and inherited event types.
Inherited Event Type
A virtual event type only visible in the view, defined by a formula to be calculated from
real event types.
Profile Data File
A file containing data measured in a profile experiment, or part of one, or produced by
post-processing a trace. Its size is typically linear with the code size of the program.
Profile Data Part
Data from a profile data file.
Profile Experiment
A program run supervised by a profiling tool, producing possibly multiple profile data files
from parts or threads of the run.
Profile Project
A configuration for profile experiments used for one program to profile, perhaps in multiple
versions. Comparisons of profile data typically only makes sense between profile data
produced in experiments of one profile project.
Profiling
The process of collecting statistical information about runtime characteristics of program
runs.
18
The KCachegrind Handbook
19
The KCachegrind Handbook
Chapter 7
Thanks to Julian Seward for his excellent Valgrind, and Nicholas Nethercote for the Cachegrind
addition. Without these programs, KCachegrind would not exist. Some ideas for this GUI were
from them, too.
Thanks for all the bug reports and suggestions from different users.
This documentation is licensed under the terms of the GNU Free Documentation License.
20