2009-09-28 21:32:55 +08:00
|
|
|
#ifndef __PERF_HIST_H
|
|
|
|
#define __PERF_HIST_H
|
|
|
|
|
2009-12-14 23:10:39 +08:00
|
|
|
#include <linux/types.h>
|
2011-10-06 04:50:23 +08:00
|
|
|
#include <pthread.h>
|
2009-09-28 21:32:55 +08:00
|
|
|
#include "callchain.h"
|
2012-11-02 13:50:06 +08:00
|
|
|
#include "header.h"
|
2009-09-28 21:32:55 +08:00
|
|
|
|
|
|
|
extern struct callchain_param callchain_param;
|
|
|
|
|
2009-12-14 23:10:39 +08:00
|
|
|
struct hist_entry;
|
|
|
|
struct addr_location;
|
|
|
|
struct symbol;
|
2010-05-12 10:18:06 +08:00
|
|
|
|
2010-05-15 00:16:55 +08:00
|
|
|
/*
|
|
|
|
* The kernel collects the number of events it couldn't send in a stretch and
|
|
|
|
* when possible sends this number in a PERF_RECORD_LOST event. The number of
|
|
|
|
* such "chunks" of lost events is stored in .nr_events[PERF_EVENT_LOST] while
|
|
|
|
* total_lost tells exactly how many events the kernel in fact lost, i.e. it is
|
|
|
|
* the sum of all struct lost_event.lost fields reported.
|
|
|
|
*
|
|
|
|
* The total_period is needed because by default auto-freq is used, so
|
|
|
|
* multipling nr_events[PERF_EVENT_SAMPLE] by a frequency isn't possible to get
|
|
|
|
* the total number of low level events, it is necessary to to sum all struct
|
|
|
|
* sample_event.period and stash the result in total_period.
|
|
|
|
*/
|
perf hist: Introduce hists class and move lots of methods to it
In cbbc79a we introduced support for multiple events by introducing a
new "event_stat_id" struct and then made several perf_session methods
receive a point to it instead of a pointer to perf_session, and kept the
event_stats and hists rb_tree in perf_session.
While working on the new newt based browser, I realised that it would be
better to introduce a new class, "hists" (short for "histograms"),
renaming the "event_stat_id" struct and the perf_session methods that
were really "hists" methods, as they manipulate only struct hists
members, not touching anything in the other perf_session members.
Other optimizations, such as calculating the maximum lenght of a symbol
name present in an hists instance will be possible as we add them,
avoiding a re-traversal just for finding that information.
The rationale for the name "hists" to replace "event_stat_id" is that we
may have multiple sets of hists for the same event_stat id, as, for
instance, the 'perf diff' tool has, so event stat id is not what
characterizes what this struct and the functions that manipulate it do.
Cc: Eric B Munson <ebmunson@us.ibm.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2010-05-11 00:04:11 +08:00
|
|
|
struct events_stats {
|
2010-05-15 00:16:55 +08:00
|
|
|
u64 total_period;
|
|
|
|
u64 total_lost;
|
perf session: Parse sample earlier
At perf_session__process_event, so that we reduce the number of lines in eache
tool sample processing routine that now receives a sample_data pointer already
parsed.
This will also be useful in the next patch, where we'll allow sample the
identity fields in MMAP, FORK, EXIT, etc, when it will be possible to see (cpu,
timestamp) just after before every event.
Also validate callchains in perf_session__process_event, i.e. as early as
possible, and keep a counter of the number of events discarded due to invalid
callchains, warning the user about it if it happens.
There is an assumption that was kept that all events have the same sample_type,
that will be dealt with in the future, when this preexisting limitation will be
removed.
Tested-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Ian Munsie <imunsie@au1.ibm.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Ian Munsie <imunsie@au1.ibm.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Stephane Eranian <eranian@google.com>
LKML-Reference: <1291318772-30880-4-git-send-email-acme@infradead.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2010-12-03 00:10:21 +08:00
|
|
|
u64 total_invalid_chains;
|
2010-05-14 21:36:42 +08:00
|
|
|
u32 nr_events[PERF_RECORD_HEADER_MAX];
|
2011-10-29 22:15:04 +08:00
|
|
|
u32 nr_lost_warned;
|
2010-05-14 21:36:42 +08:00
|
|
|
u32 nr_unknown_events;
|
perf session: Parse sample earlier
At perf_session__process_event, so that we reduce the number of lines in eache
tool sample processing routine that now receives a sample_data pointer already
parsed.
This will also be useful in the next patch, where we'll allow sample the
identity fields in MMAP, FORK, EXIT, etc, when it will be possible to see (cpu,
timestamp) just after before every event.
Also validate callchains in perf_session__process_event, i.e. as early as
possible, and keep a counter of the number of events discarded due to invalid
callchains, warning the user about it if it happens.
There is an assumption that was kept that all events have the same sample_type,
that will be dealt with in the future, when this preexisting limitation will be
removed.
Tested-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Ian Munsie <imunsie@au1.ibm.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Ian Munsie <imunsie@au1.ibm.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Stephane Eranian <eranian@google.com>
LKML-Reference: <1291318772-30880-4-git-send-email-acme@infradead.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2010-12-03 00:10:21 +08:00
|
|
|
u32 nr_invalid_chains;
|
2011-03-16 02:44:01 +08:00
|
|
|
u32 nr_unknown_id;
|
2012-02-11 01:05:04 +08:00
|
|
|
u32 nr_unprocessable_samples;
|
perf hist: Introduce hists class and move lots of methods to it
In cbbc79a we introduced support for multiple events by introducing a
new "event_stat_id" struct and then made several perf_session methods
receive a point to it instead of a pointer to perf_session, and kept the
event_stats and hists rb_tree in perf_session.
While working on the new newt based browser, I realised that it would be
better to introduce a new class, "hists" (short for "histograms"),
renaming the "event_stat_id" struct and the perf_session methods that
were really "hists" methods, as they manipulate only struct hists
members, not touching anything in the other perf_session members.
Other optimizations, such as calculating the maximum lenght of a symbol
name present in an hists instance will be possible as we add them,
avoiding a re-traversal just for finding that information.
The rationale for the name "hists" to replace "event_stat_id" is that we
may have multiple sets of hists for the same event_stat id, as, for
instance, the 'perf diff' tool has, so event stat id is not what
characterizes what this struct and the functions that manipulate it do.
Cc: Eric B Munson <ebmunson@us.ibm.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2010-05-11 00:04:11 +08:00
|
|
|
};
|
|
|
|
|
2010-07-21 01:42:52 +08:00
|
|
|
enum hist_column {
|
|
|
|
HISTC_SYMBOL,
|
|
|
|
HISTC_DSO,
|
|
|
|
HISTC_THREAD,
|
|
|
|
HISTC_COMM,
|
|
|
|
HISTC_PARENT,
|
|
|
|
HISTC_CPU,
|
2013-04-05 09:26:31 +08:00
|
|
|
HISTC_SRCLINE,
|
2012-02-10 06:21:01 +08:00
|
|
|
HISTC_MISPREDICT,
|
|
|
|
HISTC_SYMBOL_FROM,
|
|
|
|
HISTC_SYMBOL_TO,
|
|
|
|
HISTC_DSO_FROM,
|
|
|
|
HISTC_DSO_TO,
|
2013-01-24 23:10:29 +08:00
|
|
|
HISTC_LOCAL_WEIGHT,
|
|
|
|
HISTC_GLOBAL_WEIGHT,
|
2013-01-24 23:10:35 +08:00
|
|
|
HISTC_MEM_DADDR_SYMBOL,
|
|
|
|
HISTC_MEM_DADDR_DSO,
|
|
|
|
HISTC_MEM_LOCKED,
|
|
|
|
HISTC_MEM_TLB,
|
|
|
|
HISTC_MEM_LVL,
|
|
|
|
HISTC_MEM_SNOOP,
|
2010-07-21 01:42:52 +08:00
|
|
|
HISTC_NR_COLS, /* Last entry */
|
|
|
|
};
|
|
|
|
|
2011-10-19 05:07:34 +08:00
|
|
|
struct thread;
|
|
|
|
struct dso;
|
|
|
|
|
perf hist: Introduce hists class and move lots of methods to it
In cbbc79a we introduced support for multiple events by introducing a
new "event_stat_id" struct and then made several perf_session methods
receive a point to it instead of a pointer to perf_session, and kept the
event_stats and hists rb_tree in perf_session.
While working on the new newt based browser, I realised that it would be
better to introduce a new class, "hists" (short for "histograms"),
renaming the "event_stat_id" struct and the perf_session methods that
were really "hists" methods, as they manipulate only struct hists
members, not touching anything in the other perf_session members.
Other optimizations, such as calculating the maximum lenght of a symbol
name present in an hists instance will be possible as we add them,
avoiding a re-traversal just for finding that information.
The rationale for the name "hists" to replace "event_stat_id" is that we
may have multiple sets of hists for the same event_stat id, as, for
instance, the 'perf diff' tool has, so event stat id is not what
characterizes what this struct and the functions that manipulate it do.
Cc: Eric B Munson <ebmunson@us.ibm.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2010-05-11 00:04:11 +08:00
|
|
|
struct hists {
|
2011-10-06 04:50:23 +08:00
|
|
|
struct rb_root entries_in_array[2];
|
|
|
|
struct rb_root *entries_in;
|
perf hist: Introduce hists class and move lots of methods to it
In cbbc79a we introduced support for multiple events by introducing a
new "event_stat_id" struct and then made several perf_session methods
receive a point to it instead of a pointer to perf_session, and kept the
event_stats and hists rb_tree in perf_session.
While working on the new newt based browser, I realised that it would be
better to introduce a new class, "hists" (short for "histograms"),
renaming the "event_stat_id" struct and the perf_session methods that
were really "hists" methods, as they manipulate only struct hists
members, not touching anything in the other perf_session members.
Other optimizations, such as calculating the maximum lenght of a symbol
name present in an hists instance will be possible as we add them,
avoiding a re-traversal just for finding that information.
The rationale for the name "hists" to replace "event_stat_id" is that we
may have multiple sets of hists for the same event_stat id, as, for
instance, the 'perf diff' tool has, so event stat id is not what
characterizes what this struct and the functions that manipulate it do.
Cc: Eric B Munson <ebmunson@us.ibm.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2010-05-11 00:04:11 +08:00
|
|
|
struct rb_root entries;
|
2011-10-06 04:50:23 +08:00
|
|
|
struct rb_root entries_collapsed;
|
2010-05-11 00:57:51 +08:00
|
|
|
u64 nr_entries;
|
2011-10-19 05:07:34 +08:00
|
|
|
const struct thread *thread_filter;
|
|
|
|
const struct dso *dso_filter;
|
2012-01-20 00:08:15 +08:00
|
|
|
const char *uid_filter_str;
|
2012-03-16 16:50:51 +08:00
|
|
|
const char *symbol_filter_str;
|
2011-10-06 04:50:23 +08:00
|
|
|
pthread_mutex_t lock;
|
perf hist: Introduce hists class and move lots of methods to it
In cbbc79a we introduced support for multiple events by introducing a
new "event_stat_id" struct and then made several perf_session methods
receive a point to it instead of a pointer to perf_session, and kept the
event_stats and hists rb_tree in perf_session.
While working on the new newt based browser, I realised that it would be
better to introduce a new class, "hists" (short for "histograms"),
renaming the "event_stat_id" struct and the perf_session methods that
were really "hists" methods, as they manipulate only struct hists
members, not touching anything in the other perf_session members.
Other optimizations, such as calculating the maximum lenght of a symbol
name present in an hists instance will be possible as we add them,
avoiding a re-traversal just for finding that information.
The rationale for the name "hists" to replace "event_stat_id" is that we
may have multiple sets of hists for the same event_stat id, as, for
instance, the 'perf diff' tool has, so event stat id is not what
characterizes what this struct and the functions that manipulate it do.
Cc: Eric B Munson <ebmunson@us.ibm.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2010-05-11 00:04:11 +08:00
|
|
|
struct events_stats stats;
|
|
|
|
u64 event_stream;
|
2010-07-21 01:42:52 +08:00
|
|
|
u16 col_len[HISTC_NR_COLS];
|
perf hist: Introduce hists class and move lots of methods to it
In cbbc79a we introduced support for multiple events by introducing a
new "event_stat_id" struct and then made several perf_session methods
receive a point to it instead of a pointer to perf_session, and kept the
event_stats and hists rb_tree in perf_session.
While working on the new newt based browser, I realised that it would be
better to introduce a new class, "hists" (short for "histograms"),
renaming the "event_stat_id" struct and the perf_session methods that
were really "hists" methods, as they manipulate only struct hists
members, not touching anything in the other perf_session members.
Other optimizations, such as calculating the maximum lenght of a symbol
name present in an hists instance will be possible as we add them,
avoiding a re-traversal just for finding that information.
The rationale for the name "hists" to replace "event_stat_id" is that we
may have multiple sets of hists for the same event_stat id, as, for
instance, the 'perf diff' tool has, so event stat id is not what
characterizes what this struct and the functions that manipulate it do.
Cc: Eric B Munson <ebmunson@us.ibm.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2010-05-11 00:04:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct hist_entry *__hists__add_entry(struct hists *self,
|
|
|
|
struct addr_location *al,
|
2013-01-24 23:10:29 +08:00
|
|
|
struct symbol *parent, u64 period,
|
|
|
|
u64 weight);
|
2012-01-04 22:27:03 +08:00
|
|
|
int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
|
|
|
|
int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
|
2012-08-20 12:52:06 +08:00
|
|
|
int hist_entry__sort_snprintf(struct hist_entry *self, char *bf, size_t size,
|
|
|
|
struct hists *hists);
|
2009-12-14 23:10:39 +08:00
|
|
|
void hist_entry__free(struct hist_entry *);
|
|
|
|
|
2012-02-10 06:21:01 +08:00
|
|
|
struct hist_entry *__hists__add_branch_entry(struct hists *self,
|
|
|
|
struct addr_location *al,
|
|
|
|
struct symbol *sym_parent,
|
|
|
|
struct branch_info *bi,
|
2013-01-24 23:10:29 +08:00
|
|
|
u64 period,
|
|
|
|
u64 weight);
|
2012-02-10 06:21:01 +08:00
|
|
|
|
2013-01-24 23:10:35 +08:00
|
|
|
struct hist_entry *__hists__add_mem_entry(struct hists *self,
|
|
|
|
struct addr_location *al,
|
|
|
|
struct symbol *sym_parent,
|
|
|
|
struct mem_info *mi,
|
|
|
|
u64 period,
|
|
|
|
u64 weight);
|
|
|
|
|
2010-05-11 00:57:51 +08:00
|
|
|
void hists__output_resort(struct hists *self);
|
perf hist: Introduce hists class and move lots of methods to it
In cbbc79a we introduced support for multiple events by introducing a
new "event_stat_id" struct and then made several perf_session methods
receive a point to it instead of a pointer to perf_session, and kept the
event_stats and hists rb_tree in perf_session.
While working on the new newt based browser, I realised that it would be
better to introduce a new class, "hists" (short for "histograms"),
renaming the "event_stat_id" struct and the perf_session methods that
were really "hists" methods, as they manipulate only struct hists
members, not touching anything in the other perf_session members.
Other optimizations, such as calculating the maximum lenght of a symbol
name present in an hists instance will be possible as we add them,
avoiding a re-traversal just for finding that information.
The rationale for the name "hists" to replace "event_stat_id" is that we
may have multiple sets of hists for the same event_stat id, as, for
instance, the 'perf diff' tool has, so event stat id is not what
characterizes what this struct and the functions that manipulate it do.
Cc: Eric B Munson <ebmunson@us.ibm.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2010-05-11 00:04:11 +08:00
|
|
|
void hists__collapse_resort(struct hists *self);
|
2010-05-14 21:36:42 +08:00
|
|
|
|
2011-10-17 19:05:04 +08:00
|
|
|
void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
|
perf top: Reuse the 'report' hist_entry/hists classes
This actually fixes several problems we had in the old 'perf top':
1. Unresolved symbols not show, limitation that came from the old
"KernelTop" codebase, to solve it we would need to do changes
that would make sym_entry have most of the hist_entry fields.
2. It was using the number of samples, not the sum of sample->period.
And brings the --sort code that allows us to have all the views in
'perf report', for instance:
[root@emilia ~]# perf top --sort dso
PerfTop: 5903 irqs/sec kernel:77.5% exact: 0.0% [1000Hz cycles], (all, 8 CPUs)
------------------------------------------------------------------------------
31.59% libcrypto.so.1.0.0
21.55% [kernel]
18.57% libpython2.6.so.1.0
7.04% libc-2.12.so
6.99% _backend_agg.so
4.72% sshd
1.48% multiarray.so
1.39% libfreetype.so.6.3.22
1.37% perf
0.71% libgobject-2.0.so.0.2200.5
0.53% [tg3]
0.48% libglib-2.0.so.0.2200.5
0.44% libstdc++.so.6.0.13
0.40% libcairo.so.2.10800.8
0.38% libm-2.12.so
0.34% umath.so
0.30% libgdk-x11-2.0.so.0.1800.9
0.22% libpthread-2.12.so
0.20% libgtk-x11-2.0.so.0.1800.9
0.20% librt-2.12.so
0.15% _path.so
0.13% libpango-1.0.so.0.2800.1
0.11% libatlas.so.3.0
0.09% ft2font.so
0.09% libpangoft2-1.0.so.0.2800.1
0.08% libX11.so.6.3.0
0.07% [vdso]
0.06% cyclictest
^C
All the filter lists can be used as well: --dsos, --comms, --symbols,
etc.
The 'perf report' TUI is also reused, being possible to apply all the
zoom operations, do annotation, etc.
This change will allow multiple simplifications in the symbol system as
well, that will be detailed in upcoming changesets.
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-xzaaldxq7zhqrrxdxjifk1mh@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2011-10-06 06:16:15 +08:00
|
|
|
void hists__output_recalc_col_len(struct hists *hists, int max_rows);
|
|
|
|
|
2012-12-10 16:29:56 +08:00
|
|
|
void hists__inc_nr_entries(struct hists *hists, struct hist_entry *h);
|
2010-05-14 21:36:42 +08:00
|
|
|
void hists__inc_nr_events(struct hists *self, u32 type);
|
2012-12-19 03:24:46 +08:00
|
|
|
void events_stats__inc(struct events_stats *stats, u32 type);
|
2012-12-19 03:02:17 +08:00
|
|
|
size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
|
2010-05-14 21:36:42 +08:00
|
|
|
|
2012-10-04 20:49:38 +08:00
|
|
|
size_t hists__fprintf(struct hists *self, bool show_header, int max_rows,
|
2013-05-14 10:09:04 +08:00
|
|
|
int max_cols, float min_pcnt, FILE *fp);
|
2010-05-11 22:10:15 +08:00
|
|
|
|
2011-02-04 23:43:24 +08:00
|
|
|
int hist_entry__inc_addr_samples(struct hist_entry *self, int evidx, u64 addr);
|
2011-02-08 23:27:39 +08:00
|
|
|
int hist_entry__annotate(struct hist_entry *self, size_t privsize);
|
2010-05-12 10:18:06 +08:00
|
|
|
|
2011-10-19 05:07:34 +08:00
|
|
|
void hists__filter_by_dso(struct hists *hists);
|
|
|
|
void hists__filter_by_thread(struct hists *hists);
|
2012-03-16 16:50:51 +08:00
|
|
|
void hists__filter_by_symbol(struct hists *hists);
|
2010-05-11 22:10:15 +08:00
|
|
|
|
2010-07-21 01:42:52 +08:00
|
|
|
u16 hists__col_len(struct hists *self, enum hist_column col);
|
|
|
|
void hists__set_col_len(struct hists *self, enum hist_column col, u16 len);
|
|
|
|
bool hists__new_col_len(struct hists *self, enum hist_column col, u16 len);
|
2012-08-20 12:52:05 +08:00
|
|
|
void hists__reset_col_len(struct hists *hists);
|
|
|
|
void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
|
2010-07-21 01:42:52 +08:00
|
|
|
|
2012-11-09 04:54:33 +08:00
|
|
|
void hists__match(struct hists *leader, struct hists *other);
|
2012-11-09 05:03:09 +08:00
|
|
|
int hists__link(struct hists *leader, struct hists *other);
|
2012-11-09 04:54:33 +08:00
|
|
|
|
2012-09-03 10:53:06 +08:00
|
|
|
struct perf_hpp {
|
|
|
|
char *buf;
|
|
|
|
size_t size;
|
|
|
|
const char *sep;
|
|
|
|
void *ptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct perf_hpp_fmt {
|
2013-02-01 06:31:11 +08:00
|
|
|
int (*header)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp);
|
|
|
|
int (*width)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp);
|
|
|
|
int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
|
|
|
|
struct hist_entry *he);
|
|
|
|
int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
|
|
|
|
struct hist_entry *he);
|
2012-10-13 06:06:16 +08:00
|
|
|
|
|
|
|
struct list_head list;
|
2012-09-03 10:53:06 +08:00
|
|
|
};
|
|
|
|
|
2012-10-13 06:06:16 +08:00
|
|
|
extern struct list_head perf_hpp__list;
|
|
|
|
|
|
|
|
#define perf_hpp__for_each_format(format) \
|
|
|
|
list_for_each_entry(format, &perf_hpp__list, list)
|
|
|
|
|
2012-09-03 10:53:06 +08:00
|
|
|
extern struct perf_hpp_fmt perf_hpp__format[];
|
|
|
|
|
|
|
|
enum {
|
2013-02-04 03:08:34 +08:00
|
|
|
/* Matches perf_hpp__format array. */
|
2012-09-03 10:53:06 +08:00
|
|
|
PERF_HPP__OVERHEAD,
|
|
|
|
PERF_HPP__OVERHEAD_SYS,
|
|
|
|
PERF_HPP__OVERHEAD_US,
|
|
|
|
PERF_HPP__OVERHEAD_GUEST_SYS,
|
|
|
|
PERF_HPP__OVERHEAD_GUEST_US,
|
|
|
|
PERF_HPP__SAMPLES,
|
|
|
|
PERF_HPP__PERIOD,
|
|
|
|
|
|
|
|
PERF_HPP__MAX_INDEX
|
|
|
|
};
|
|
|
|
|
2012-10-04 20:49:39 +08:00
|
|
|
void perf_hpp__init(void);
|
2012-10-13 06:06:16 +08:00
|
|
|
void perf_hpp__column_register(struct perf_hpp_fmt *format);
|
|
|
|
void perf_hpp__column_enable(unsigned col);
|
2012-09-03 10:53:06 +08:00
|
|
|
|
2011-03-06 08:40:06 +08:00
|
|
|
struct perf_evlist;
|
|
|
|
|
2012-11-02 13:50:05 +08:00
|
|
|
struct hist_browser_timer {
|
|
|
|
void (*timer)(void *arg);
|
|
|
|
void *arg;
|
|
|
|
int refresh;
|
|
|
|
};
|
|
|
|
|
2013-03-28 22:34:10 +08:00
|
|
|
#ifdef SLANG_SUPPORT
|
2012-09-28 17:32:02 +08:00
|
|
|
#include "../ui/keysyms.h"
|
2013-03-05 13:53:21 +08:00
|
|
|
int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel,
|
2012-11-02 13:50:05 +08:00
|
|
|
struct hist_browser_timer *hbt);
|
2012-09-28 17:32:02 +08:00
|
|
|
|
|
|
|
int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
|
2012-11-02 13:50:06 +08:00
|
|
|
struct hist_browser_timer *hbt,
|
2013-05-14 10:09:04 +08:00
|
|
|
float min_pcnt,
|
2012-11-02 13:50:06 +08:00
|
|
|
struct perf_session_env *env);
|
2012-10-30 11:56:04 +08:00
|
|
|
int script_browse(const char *script_opt);
|
2012-09-28 17:32:02 +08:00
|
|
|
#else
|
2011-03-07 00:07:30 +08:00
|
|
|
static inline
|
2012-09-11 06:15:03 +08:00
|
|
|
int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
|
|
|
|
const char *help __maybe_unused,
|
2012-11-02 13:50:06 +08:00
|
|
|
struct hist_browser_timer *hbt __maybe_unused,
|
2013-05-14 10:09:04 +08:00
|
|
|
float min_pcnt __maybe_unused,
|
2012-11-02 13:50:06 +08:00
|
|
|
struct perf_session_env *env __maybe_unused)
|
2010-05-24 09:36:51 +08:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-11 06:15:03 +08:00
|
|
|
static inline int hist_entry__tui_annotate(struct hist_entry *self
|
|
|
|
__maybe_unused,
|
2013-03-05 13:53:21 +08:00
|
|
|
struct perf_evsel *evsel
|
|
|
|
__maybe_unused,
|
2012-11-02 13:50:05 +08:00
|
|
|
struct hist_browser_timer *hbt
|
|
|
|
__maybe_unused)
|
2010-05-22 22:25:40 +08:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2012-10-30 11:56:04 +08:00
|
|
|
|
2012-11-12 13:14:00 +08:00
|
|
|
static inline int script_browse(const char *script_opt __maybe_unused)
|
2012-10-30 11:56:04 +08:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-02-26 13:02:02 +08:00
|
|
|
#define K_LEFT -1000
|
|
|
|
#define K_RIGHT -2000
|
2013-02-26 13:02:03 +08:00
|
|
|
#define K_SWITCH_INPUT_DATA -3000
|
2010-05-11 22:10:15 +08:00
|
|
|
#endif
|
2010-07-22 04:58:25 +08:00
|
|
|
|
2012-09-28 17:32:03 +08:00
|
|
|
#ifdef GTK2_SUPPORT
|
|
|
|
int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist, const char *help,
|
2013-05-14 10:09:04 +08:00
|
|
|
struct hist_browser_timer *hbt __maybe_unused,
|
|
|
|
float min_pcnt);
|
2012-09-28 17:32:03 +08:00
|
|
|
#else
|
2012-03-20 02:13:29 +08:00
|
|
|
static inline
|
2012-09-11 06:15:03 +08:00
|
|
|
int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist __maybe_unused,
|
|
|
|
const char *help __maybe_unused,
|
2013-05-14 10:09:04 +08:00
|
|
|
struct hist_browser_timer *hbt __maybe_unused,
|
|
|
|
float min_pcnt __maybe_unused)
|
2012-03-20 02:13:29 +08:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-07-22 04:58:25 +08:00
|
|
|
unsigned int hists__sort_list_width(struct hists *self);
|
2009-09-28 21:32:55 +08:00
|
|
|
#endif /* __PERF_HIST_H */
|