perf report: Add --percent-limit option
The --percent-limit option is for not showing small overhead entries in the output. Maybe we want to set a certain default value like 0.1. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Acked-by: Pekka Enberg <penberg@kernel.org> Cc: Andi Kleen <andi@firstfloor.org> Cc: David Ahern <dsahern@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/1368497347-9628-7-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
f3dd19817e
commit
064f19815c
@ -210,6 +210,10 @@ OPTIONS
|
|||||||
Demangle symbol names to human readable form. It's enabled by default,
|
Demangle symbol names to human readable form. It's enabled by default,
|
||||||
disable with --no-demangle.
|
disable with --no-demangle.
|
||||||
|
|
||||||
|
--percent-limit::
|
||||||
|
Do not show entries which have an overhead under that percent.
|
||||||
|
(Default: 0).
|
||||||
|
|
||||||
SEE ALSO
|
SEE ALSO
|
||||||
--------
|
--------
|
||||||
linkperf:perf-stat[1], linkperf:perf-annotate[1]
|
linkperf:perf-stat[1], linkperf:perf-annotate[1]
|
||||||
|
@ -457,7 +457,7 @@ static void hists__process(struct hists *old, struct hists *new)
|
|||||||
hists__output_resort(new);
|
hists__output_resort(new);
|
||||||
}
|
}
|
||||||
|
|
||||||
hists__fprintf(new, true, 0, 0, stdout);
|
hists__fprintf(new, true, 0, 0, 0, stdout);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __cmd_diff(void)
|
static int __cmd_diff(void)
|
||||||
|
@ -52,6 +52,7 @@ struct perf_report {
|
|||||||
symbol_filter_t annotate_init;
|
symbol_filter_t annotate_init;
|
||||||
const char *cpu_list;
|
const char *cpu_list;
|
||||||
const char *symbol_filter_str;
|
const char *symbol_filter_str;
|
||||||
|
float min_percent;
|
||||||
DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
|
DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -456,7 +457,7 @@ static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist,
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
hists__fprintf_nr_sample_events(rep, hists, evname, stdout);
|
hists__fprintf_nr_sample_events(rep, hists, evname, stdout);
|
||||||
hists__fprintf(hists, true, 0, 0, stdout);
|
hists__fprintf(hists, true, 0, 0, rep->min_percent, stdout);
|
||||||
fprintf(stdout, "\n\n");
|
fprintf(stdout, "\n\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -575,8 +576,8 @@ static int __cmd_report(struct perf_report *rep)
|
|||||||
if (use_browser > 0) {
|
if (use_browser > 0) {
|
||||||
if (use_browser == 1) {
|
if (use_browser == 1) {
|
||||||
ret = perf_evlist__tui_browse_hists(session->evlist,
|
ret = perf_evlist__tui_browse_hists(session->evlist,
|
||||||
help,
|
help, NULL,
|
||||||
NULL,
|
rep->min_percent,
|
||||||
&session->header.env);
|
&session->header.env);
|
||||||
/*
|
/*
|
||||||
* Usually "ret" is the last pressed key, and we only
|
* Usually "ret" is the last pressed key, and we only
|
||||||
@ -587,7 +588,7 @@ static int __cmd_report(struct perf_report *rep)
|
|||||||
|
|
||||||
} else if (use_browser == 2) {
|
} else if (use_browser == 2) {
|
||||||
perf_evlist__gtk_browse_hists(session->evlist, help,
|
perf_evlist__gtk_browse_hists(session->evlist, help,
|
||||||
NULL);
|
NULL, rep->min_percent);
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
perf_evlist__tty_browse_hists(session->evlist, rep, help);
|
perf_evlist__tty_browse_hists(session->evlist, rep, help);
|
||||||
@ -698,6 +699,16 @@ parse_branch_mode(const struct option *opt __maybe_unused,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
parse_percent_limit(const struct option *opt, const char *str,
|
||||||
|
int unset __maybe_unused)
|
||||||
|
{
|
||||||
|
struct perf_report *rep = opt->value;
|
||||||
|
|
||||||
|
rep->min_percent = strtof(str, NULL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int cmd_report(int argc, const char **argv, const char *prefix __maybe_unused)
|
int cmd_report(int argc, const char **argv, const char *prefix __maybe_unused)
|
||||||
{
|
{
|
||||||
struct perf_session *session;
|
struct perf_session *session;
|
||||||
@ -807,6 +818,8 @@ int cmd_report(int argc, const char **argv, const char *prefix __maybe_unused)
|
|||||||
OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
|
OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
|
||||||
"Disable symbol demangling"),
|
"Disable symbol demangling"),
|
||||||
OPT_BOOLEAN(0, "mem-mode", &report.mem_mode, "mem access profile"),
|
OPT_BOOLEAN(0, "mem-mode", &report.mem_mode, "mem access profile"),
|
||||||
|
OPT_CALLBACK(0, "percent-limit", &report, "percent",
|
||||||
|
"Don't show entries under that percent", parse_percent_limit),
|
||||||
OPT_END()
|
OPT_END()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -296,7 +296,7 @@ static void perf_top__print_sym_table(struct perf_top *top)
|
|||||||
top->print_entries - printed);
|
top->print_entries - printed);
|
||||||
putchar('\n');
|
putchar('\n');
|
||||||
hists__fprintf(&top->sym_evsel->hists, false,
|
hists__fprintf(&top->sym_evsel->hists, false,
|
||||||
top->print_entries - printed, win_width, stdout);
|
top->print_entries - printed, win_width, 0, stdout);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void prompt_integer(int *target, const char *msg)
|
static void prompt_integer(int *target, const char *msg)
|
||||||
@ -580,7 +580,7 @@ static void *display_thread_tui(void *arg)
|
|||||||
list_for_each_entry(pos, &top->evlist->entries, node)
|
list_for_each_entry(pos, &top->evlist->entries, node)
|
||||||
pos->hists.uid_filter_str = top->record_opts.target.uid_str;
|
pos->hists.uid_filter_str = top->record_opts.target.uid_str;
|
||||||
|
|
||||||
perf_evlist__tui_browse_hists(top->evlist, help, &hbt,
|
perf_evlist__tui_browse_hists(top->evlist, help, &hbt, 0,
|
||||||
&top->session->header.env);
|
&top->session->header.env);
|
||||||
|
|
||||||
done = 1;
|
done = 1;
|
||||||
|
@ -25,6 +25,8 @@ struct hist_browser {
|
|||||||
struct map_symbol *selection;
|
struct map_symbol *selection;
|
||||||
int print_seq;
|
int print_seq;
|
||||||
bool show_dso;
|
bool show_dso;
|
||||||
|
float min_pcnt;
|
||||||
|
u64 nr_pcnt_entries;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern void hist_browser__init_hpp(void);
|
extern void hist_browser__init_hpp(void);
|
||||||
@ -317,6 +319,8 @@ static int hist_browser__run(struct hist_browser *browser, const char *ev_name,
|
|||||||
|
|
||||||
browser->b.entries = &browser->hists->entries;
|
browser->b.entries = &browser->hists->entries;
|
||||||
browser->b.nr_entries = browser->hists->nr_entries;
|
browser->b.nr_entries = browser->hists->nr_entries;
|
||||||
|
if (browser->min_pcnt)
|
||||||
|
browser->b.nr_entries = browser->nr_pcnt_entries;
|
||||||
|
|
||||||
hist_browser__refresh_dimensions(browser);
|
hist_browser__refresh_dimensions(browser);
|
||||||
hists__browser_title(browser->hists, title, sizeof(title), ev_name);
|
hists__browser_title(browser->hists, title, sizeof(title), ev_name);
|
||||||
@ -795,10 +799,15 @@ static unsigned int hist_browser__refresh(struct ui_browser *browser)
|
|||||||
|
|
||||||
for (nd = browser->top; nd; nd = rb_next(nd)) {
|
for (nd = browser->top; nd; nd = rb_next(nd)) {
|
||||||
struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
|
struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
|
||||||
|
float percent = h->stat.period * 100.0 /
|
||||||
|
hb->hists->stats.total_period;
|
||||||
|
|
||||||
if (h->filtered)
|
if (h->filtered)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if (percent < hb->min_pcnt)
|
||||||
|
continue;
|
||||||
|
|
||||||
row += hist_browser__show_entry(hb, h, row);
|
row += hist_browser__show_entry(hb, h, row);
|
||||||
if (row == browser->height)
|
if (row == browser->height)
|
||||||
break;
|
break;
|
||||||
@ -807,10 +816,18 @@ static unsigned int hist_browser__refresh(struct ui_browser *browser)
|
|||||||
return row;
|
return row;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct rb_node *hists__filter_entries(struct rb_node *nd)
|
static struct rb_node *hists__filter_entries(struct rb_node *nd,
|
||||||
|
struct hists *hists,
|
||||||
|
float min_pcnt)
|
||||||
{
|
{
|
||||||
while (nd != NULL) {
|
while (nd != NULL) {
|
||||||
struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
|
struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
|
||||||
|
float percent = h->stat.period * 100.0 /
|
||||||
|
hists->stats.total_period;
|
||||||
|
|
||||||
|
if (percent < min_pcnt)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
if (!h->filtered)
|
if (!h->filtered)
|
||||||
return nd;
|
return nd;
|
||||||
|
|
||||||
@ -820,11 +837,16 @@ static struct rb_node *hists__filter_entries(struct rb_node *nd)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct rb_node *hists__filter_prev_entries(struct rb_node *nd)
|
static struct rb_node *hists__filter_prev_entries(struct rb_node *nd,
|
||||||
|
struct hists *hists,
|
||||||
|
float min_pcnt)
|
||||||
{
|
{
|
||||||
while (nd != NULL) {
|
while (nd != NULL) {
|
||||||
struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
|
struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
|
||||||
if (!h->filtered)
|
float percent = h->stat.period * 100.0 /
|
||||||
|
hists->stats.total_period;
|
||||||
|
|
||||||
|
if (!h->filtered && percent >= min_pcnt)
|
||||||
return nd;
|
return nd;
|
||||||
|
|
||||||
nd = rb_prev(nd);
|
nd = rb_prev(nd);
|
||||||
@ -839,6 +861,9 @@ static void ui_browser__hists_seek(struct ui_browser *browser,
|
|||||||
struct hist_entry *h;
|
struct hist_entry *h;
|
||||||
struct rb_node *nd;
|
struct rb_node *nd;
|
||||||
bool first = true;
|
bool first = true;
|
||||||
|
struct hist_browser *hb;
|
||||||
|
|
||||||
|
hb = container_of(browser, struct hist_browser, b);
|
||||||
|
|
||||||
if (browser->nr_entries == 0)
|
if (browser->nr_entries == 0)
|
||||||
return;
|
return;
|
||||||
@ -847,13 +872,15 @@ static void ui_browser__hists_seek(struct ui_browser *browser,
|
|||||||
|
|
||||||
switch (whence) {
|
switch (whence) {
|
||||||
case SEEK_SET:
|
case SEEK_SET:
|
||||||
nd = hists__filter_entries(rb_first(browser->entries));
|
nd = hists__filter_entries(rb_first(browser->entries),
|
||||||
|
hb->hists, hb->min_pcnt);
|
||||||
break;
|
break;
|
||||||
case SEEK_CUR:
|
case SEEK_CUR:
|
||||||
nd = browser->top;
|
nd = browser->top;
|
||||||
goto do_offset;
|
goto do_offset;
|
||||||
case SEEK_END:
|
case SEEK_END:
|
||||||
nd = hists__filter_prev_entries(rb_last(browser->entries));
|
nd = hists__filter_prev_entries(rb_last(browser->entries),
|
||||||
|
hb->hists, hb->min_pcnt);
|
||||||
first = false;
|
first = false;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -896,7 +923,8 @@ do_offset:
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
nd = hists__filter_entries(rb_next(nd));
|
nd = hists__filter_entries(rb_next(nd), hb->hists,
|
||||||
|
hb->min_pcnt);
|
||||||
if (nd == NULL)
|
if (nd == NULL)
|
||||||
break;
|
break;
|
||||||
--offset;
|
--offset;
|
||||||
@ -929,7 +957,8 @@ do_offset:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
nd = hists__filter_prev_entries(rb_prev(nd));
|
nd = hists__filter_prev_entries(rb_prev(nd), hb->hists,
|
||||||
|
hb->min_pcnt);
|
||||||
if (nd == NULL)
|
if (nd == NULL)
|
||||||
break;
|
break;
|
||||||
++offset;
|
++offset;
|
||||||
@ -1098,14 +1127,17 @@ static int hist_browser__fprintf_entry(struct hist_browser *browser,
|
|||||||
|
|
||||||
static int hist_browser__fprintf(struct hist_browser *browser, FILE *fp)
|
static int hist_browser__fprintf(struct hist_browser *browser, FILE *fp)
|
||||||
{
|
{
|
||||||
struct rb_node *nd = hists__filter_entries(rb_first(browser->b.entries));
|
struct rb_node *nd = hists__filter_entries(rb_first(browser->b.entries),
|
||||||
|
browser->hists,
|
||||||
|
browser->min_pcnt);
|
||||||
int printed = 0;
|
int printed = 0;
|
||||||
|
|
||||||
while (nd) {
|
while (nd) {
|
||||||
struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
|
struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
|
||||||
|
|
||||||
printed += hist_browser__fprintf_entry(browser, h, fp);
|
printed += hist_browser__fprintf_entry(browser, h, fp);
|
||||||
nd = hists__filter_entries(rb_next(nd));
|
nd = hists__filter_entries(rb_next(nd), browser->hists,
|
||||||
|
browser->min_pcnt);
|
||||||
}
|
}
|
||||||
|
|
||||||
return printed;
|
return printed;
|
||||||
@ -1324,11 +1356,25 @@ close_file_and_continue:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void hist_browser__update_pcnt_entries(struct hist_browser *hb)
|
||||||
|
{
|
||||||
|
u64 nr_entries = 0;
|
||||||
|
struct rb_node *nd = rb_first(&hb->hists->entries);
|
||||||
|
|
||||||
|
while (nd) {
|
||||||
|
nr_entries++;
|
||||||
|
nd = hists__filter_entries(rb_next(nd), hb->hists,
|
||||||
|
hb->min_pcnt);
|
||||||
|
}
|
||||||
|
|
||||||
|
hb->nr_pcnt_entries = nr_entries;
|
||||||
|
}
|
||||||
|
|
||||||
static int perf_evsel__hists_browse(struct perf_evsel *evsel, int nr_events,
|
static int perf_evsel__hists_browse(struct perf_evsel *evsel, int nr_events,
|
||||||
const char *helpline, const char *ev_name,
|
const char *helpline, const char *ev_name,
|
||||||
bool left_exits,
|
bool left_exits,
|
||||||
struct hist_browser_timer *hbt,
|
struct hist_browser_timer *hbt,
|
||||||
|
float min_pcnt,
|
||||||
struct perf_session_env *env)
|
struct perf_session_env *env)
|
||||||
{
|
{
|
||||||
struct hists *hists = &evsel->hists;
|
struct hists *hists = &evsel->hists;
|
||||||
@ -1345,6 +1391,11 @@ static int perf_evsel__hists_browse(struct perf_evsel *evsel, int nr_events,
|
|||||||
if (browser == NULL)
|
if (browser == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
if (min_pcnt) {
|
||||||
|
browser->min_pcnt = min_pcnt;
|
||||||
|
hist_browser__update_pcnt_entries(browser);
|
||||||
|
}
|
||||||
|
|
||||||
fstack = pstack__new(2);
|
fstack = pstack__new(2);
|
||||||
if (fstack == NULL)
|
if (fstack == NULL)
|
||||||
goto out;
|
goto out;
|
||||||
@ -1684,6 +1735,7 @@ struct perf_evsel_menu {
|
|||||||
struct ui_browser b;
|
struct ui_browser b;
|
||||||
struct perf_evsel *selection;
|
struct perf_evsel *selection;
|
||||||
bool lost_events, lost_events_warned;
|
bool lost_events, lost_events_warned;
|
||||||
|
float min_pcnt;
|
||||||
struct perf_session_env *env;
|
struct perf_session_env *env;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -1777,6 +1829,7 @@ browse_hists:
|
|||||||
ev_name = perf_evsel__name(pos);
|
ev_name = perf_evsel__name(pos);
|
||||||
key = perf_evsel__hists_browse(pos, nr_events, help,
|
key = perf_evsel__hists_browse(pos, nr_events, help,
|
||||||
ev_name, true, hbt,
|
ev_name, true, hbt,
|
||||||
|
menu->min_pcnt,
|
||||||
menu->env);
|
menu->env);
|
||||||
ui_browser__show_title(&menu->b, title);
|
ui_browser__show_title(&menu->b, title);
|
||||||
switch (key) {
|
switch (key) {
|
||||||
@ -1838,6 +1891,7 @@ static bool filter_group_entries(struct ui_browser *self __maybe_unused,
|
|||||||
static int __perf_evlist__tui_browse_hists(struct perf_evlist *evlist,
|
static int __perf_evlist__tui_browse_hists(struct perf_evlist *evlist,
|
||||||
int nr_entries, const char *help,
|
int nr_entries, const char *help,
|
||||||
struct hist_browser_timer *hbt,
|
struct hist_browser_timer *hbt,
|
||||||
|
float min_pcnt,
|
||||||
struct perf_session_env *env)
|
struct perf_session_env *env)
|
||||||
{
|
{
|
||||||
struct perf_evsel *pos;
|
struct perf_evsel *pos;
|
||||||
@ -1851,6 +1905,7 @@ static int __perf_evlist__tui_browse_hists(struct perf_evlist *evlist,
|
|||||||
.nr_entries = nr_entries,
|
.nr_entries = nr_entries,
|
||||||
.priv = evlist,
|
.priv = evlist,
|
||||||
},
|
},
|
||||||
|
.min_pcnt = min_pcnt,
|
||||||
.env = env,
|
.env = env,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -1869,6 +1924,7 @@ static int __perf_evlist__tui_browse_hists(struct perf_evlist *evlist,
|
|||||||
|
|
||||||
int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
|
int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
|
||||||
struct hist_browser_timer *hbt,
|
struct hist_browser_timer *hbt,
|
||||||
|
float min_pcnt,
|
||||||
struct perf_session_env *env)
|
struct perf_session_env *env)
|
||||||
{
|
{
|
||||||
int nr_entries = evlist->nr_entries;
|
int nr_entries = evlist->nr_entries;
|
||||||
@ -1880,7 +1936,8 @@ single_entry:
|
|||||||
const char *ev_name = perf_evsel__name(first);
|
const char *ev_name = perf_evsel__name(first);
|
||||||
|
|
||||||
return perf_evsel__hists_browse(first, nr_entries, help,
|
return perf_evsel__hists_browse(first, nr_entries, help,
|
||||||
ev_name, false, hbt, env);
|
ev_name, false, hbt, min_pcnt,
|
||||||
|
env);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (symbol_conf.event_group) {
|
if (symbol_conf.event_group) {
|
||||||
@ -1896,5 +1953,5 @@ single_entry:
|
|||||||
}
|
}
|
||||||
|
|
||||||
return __perf_evlist__tui_browse_hists(evlist, nr_entries, help,
|
return __perf_evlist__tui_browse_hists(evlist, nr_entries, help,
|
||||||
hbt, env);
|
hbt, min_pcnt, env);
|
||||||
}
|
}
|
||||||
|
@ -124,7 +124,8 @@ void perf_gtk__init_hpp(void)
|
|||||||
perf_gtk__hpp_color_overhead_guest_us;
|
perf_gtk__hpp_color_overhead_guest_us;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists)
|
static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists,
|
||||||
|
float min_pcnt)
|
||||||
{
|
{
|
||||||
struct perf_hpp_fmt *fmt;
|
struct perf_hpp_fmt *fmt;
|
||||||
GType col_types[MAX_COLUMNS];
|
GType col_types[MAX_COLUMNS];
|
||||||
@ -189,10 +190,15 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists)
|
|||||||
for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
|
for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
|
||||||
struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
|
struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
|
||||||
GtkTreeIter iter;
|
GtkTreeIter iter;
|
||||||
|
float percent = h->stat.period * 100.0 /
|
||||||
|
hists->stats.total_period;
|
||||||
|
|
||||||
if (h->filtered)
|
if (h->filtered)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if (percent < min_pcnt)
|
||||||
|
continue;
|
||||||
|
|
||||||
gtk_list_store_append(store, &iter);
|
gtk_list_store_append(store, &iter);
|
||||||
|
|
||||||
col_idx = 0;
|
col_idx = 0;
|
||||||
@ -222,7 +228,8 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists)
|
|||||||
|
|
||||||
int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist,
|
int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist,
|
||||||
const char *help,
|
const char *help,
|
||||||
struct hist_browser_timer *hbt __maybe_unused)
|
struct hist_browser_timer *hbt __maybe_unused,
|
||||||
|
float min_pcnt)
|
||||||
{
|
{
|
||||||
struct perf_evsel *pos;
|
struct perf_evsel *pos;
|
||||||
GtkWidget *vbox;
|
GtkWidget *vbox;
|
||||||
@ -286,7 +293,7 @@ int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist,
|
|||||||
GTK_POLICY_AUTOMATIC,
|
GTK_POLICY_AUTOMATIC,
|
||||||
GTK_POLICY_AUTOMATIC);
|
GTK_POLICY_AUTOMATIC);
|
||||||
|
|
||||||
perf_gtk__show_hists(scrolled_window, hists);
|
perf_gtk__show_hists(scrolled_window, hists, min_pcnt);
|
||||||
|
|
||||||
tab_label = gtk_label_new(evname);
|
tab_label = gtk_label_new(evname);
|
||||||
|
|
||||||
|
@ -334,7 +334,7 @@ static int hist_entry__fprintf(struct hist_entry *he, size_t size,
|
|||||||
}
|
}
|
||||||
|
|
||||||
size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
|
size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
|
||||||
int max_cols, FILE *fp)
|
int max_cols, float min_pcnt, FILE *fp)
|
||||||
{
|
{
|
||||||
struct perf_hpp_fmt *fmt;
|
struct perf_hpp_fmt *fmt;
|
||||||
struct sort_entry *se;
|
struct sort_entry *se;
|
||||||
@ -440,10 +440,15 @@ size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
|
|||||||
print_entries:
|
print_entries:
|
||||||
for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
|
for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
|
||||||
struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
|
struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
|
||||||
|
float percent = h->stat.period * 100.0 /
|
||||||
|
hists->stats.total_period;
|
||||||
|
|
||||||
if (h->filtered)
|
if (h->filtered)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if (percent < min_pcnt)
|
||||||
|
continue;
|
||||||
|
|
||||||
ret += hist_entry__fprintf(h, max_cols, hists, fp);
|
ret += hist_entry__fprintf(h, max_cols, hists, fp);
|
||||||
|
|
||||||
if (max_rows && ++nr_rows >= max_rows)
|
if (max_rows && ++nr_rows >= max_rows)
|
||||||
|
@ -115,7 +115,7 @@ void events_stats__inc(struct events_stats *stats, u32 type);
|
|||||||
size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
|
size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
|
||||||
|
|
||||||
size_t hists__fprintf(struct hists *self, bool show_header, int max_rows,
|
size_t hists__fprintf(struct hists *self, bool show_header, int max_rows,
|
||||||
int max_cols, FILE *fp);
|
int max_cols, float min_pcnt, FILE *fp);
|
||||||
|
|
||||||
int hist_entry__inc_addr_samples(struct hist_entry *self, int evidx, u64 addr);
|
int hist_entry__inc_addr_samples(struct hist_entry *self, int evidx, u64 addr);
|
||||||
int hist_entry__annotate(struct hist_entry *self, size_t privsize);
|
int hist_entry__annotate(struct hist_entry *self, size_t privsize);
|
||||||
@ -195,6 +195,7 @@ int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel,
|
|||||||
|
|
||||||
int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
|
int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
|
||||||
struct hist_browser_timer *hbt,
|
struct hist_browser_timer *hbt,
|
||||||
|
float min_pcnt,
|
||||||
struct perf_session_env *env);
|
struct perf_session_env *env);
|
||||||
int script_browse(const char *script_opt);
|
int script_browse(const char *script_opt);
|
||||||
#else
|
#else
|
||||||
@ -202,6 +203,7 @@ static inline
|
|||||||
int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
|
int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
|
||||||
const char *help __maybe_unused,
|
const char *help __maybe_unused,
|
||||||
struct hist_browser_timer *hbt __maybe_unused,
|
struct hist_browser_timer *hbt __maybe_unused,
|
||||||
|
float min_pcnt __maybe_unused,
|
||||||
struct perf_session_env *env __maybe_unused)
|
struct perf_session_env *env __maybe_unused)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
@ -229,12 +231,14 @@ static inline int script_browse(const char *script_opt __maybe_unused)
|
|||||||
|
|
||||||
#ifdef GTK2_SUPPORT
|
#ifdef GTK2_SUPPORT
|
||||||
int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist, const char *help,
|
int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist, const char *help,
|
||||||
struct hist_browser_timer *hbt __maybe_unused);
|
struct hist_browser_timer *hbt __maybe_unused,
|
||||||
|
float min_pcnt);
|
||||||
#else
|
#else
|
||||||
static inline
|
static inline
|
||||||
int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist __maybe_unused,
|
int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist __maybe_unused,
|
||||||
const char *help __maybe_unused,
|
const char *help __maybe_unused,
|
||||||
struct hist_browser_timer *hbt __maybe_unused)
|
struct hist_browser_timer *hbt __maybe_unused,
|
||||||
|
float min_pcnt __maybe_unused)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user