File: README

package info (click to toggle)
kcachegrind 4%3A25.04.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,964 kB
  • sloc: cpp: 32,149; xml: 403; perl: 325; python: 235; sh: 8; makefile: 6
file content (87 lines) | stat: -rw-r--r-- 1,820 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
OVERVIEW

This directory contains widgets which display views
into profile data. A view either shows some aspect of
the profile data directly, are is a container for
other views.

All views are subclasses of TraceItemView.

Implementation of all views depend on Qt only.
KDE-specific views, these should be in kcachegrind/.


VIEWS


Container views
---------------

TabView

A Tabview embeds multiple views with the same cost item
selected/activated. The views can be arranged either
on top of each other using tabs for selection, or nearside
each other in four regions (right/top/left/bottom).

Multiview

A Multiview is a horizontal or vertical series of embedded views,
separated by splitters.
Eeach embedded view can have its own cost item selection/activation.
One of the views has the focus, and thus providing the
selection/activation of the multiview itself.
Selection in one view changes the activation in the next view to
the right/bottom (with wrap around).


Detailed views
--------------

EventTypeView

A list of event types measured in the profile experiment,
attributed with the costs of the currently activated cost item.

CallView

A list of callers/callees of the currently activated cost item.

CallMapView

A treemap showing the nesting of callers/callees starting from
the currently activated cost item.

CallGraphView

A graph around the currently activated cost item, with edges
being the call relations. Only nodes and edges with cost over a
given threshould are shown.

CoverageView

Similar to the CallView list, the coverage list includes not
only direct callers/callees, but also indirect.

SourceView

Annotated source.

InstrView

Annotated assembly.

PartView

List of loaded profile data parts


Misc
----

TreeMap

Generic widget for treemaps

listutils.cpp
helpers for lists in views