perf report: Rename 'perf_report' to 'report'

Reduce typing, functions use class__method convention, so unlikely to
clash with other libraries.

This actually was discussed in the "Link:" referenced message below.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/20131112113427.GA4053@ghostprotocols.netSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 4c7aafc9
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
#include <dlfcn.h> #include <dlfcn.h>
#include <linux/bitmap.h> #include <linux/bitmap.h>
struct perf_report { struct report {
struct perf_tool tool; struct perf_tool tool;
struct perf_session *session; struct perf_session *session;
bool force, use_tui, use_gtk, use_stdio; bool force, use_tui, use_gtk, use_stdio;
...@@ -60,14 +60,14 @@ struct perf_report { ...@@ -60,14 +60,14 @@ struct perf_report {
DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS); DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
}; };
static int perf_report_config(const char *var, const char *value, void *cb) static int report__config(const char *var, const char *value, void *cb)
{ {
if (!strcmp(var, "report.group")) { if (!strcmp(var, "report.group")) {
symbol_conf.event_group = perf_config_bool(var, value); symbol_conf.event_group = perf_config_bool(var, value);
return 0; return 0;
} }
if (!strcmp(var, "report.percent-limit")) { if (!strcmp(var, "report.percent-limit")) {
struct perf_report *rep = cb; struct report *rep = cb;
rep->min_percent = strtof(value, NULL); rep->min_percent = strtof(value, NULL);
return 0; return 0;
} }
...@@ -75,7 +75,7 @@ static int perf_report_config(const char *var, const char *value, void *cb) ...@@ -75,7 +75,7 @@ static int perf_report_config(const char *var, const char *value, void *cb)
return perf_default_config(var, value, cb); return perf_default_config(var, value, cb);
} }
static int report__resolve_callchain(struct perf_report *rep, struct symbol **parent, static int report__resolve_callchain(struct report *rep, struct symbol **parent,
struct perf_evsel *evsel, struct addr_location *al, struct perf_evsel *evsel, struct addr_location *al,
struct perf_sample *sample, struct machine *machine) struct perf_sample *sample, struct machine *machine)
{ {
...@@ -93,14 +93,11 @@ static int hist_entry__append_callchain(struct hist_entry *he, struct perf_sampl ...@@ -93,14 +93,11 @@ static int hist_entry__append_callchain(struct hist_entry *he, struct perf_sampl
return callchain_append(he->callchain, &callchain_cursor, sample->period); return callchain_append(he->callchain, &callchain_cursor, sample->period);
} }
static int perf_report__add_mem_hist_entry(struct perf_tool *tool, static int report__add_mem_hist_entry(struct perf_tool *tool, struct addr_location *al,
struct addr_location *al, struct perf_sample *sample, struct perf_evsel *evsel,
struct perf_sample *sample, struct machine *machine, union perf_event *event)
struct perf_evsel *evsel,
struct machine *machine,
union perf_event *event)
{ {
struct perf_report *rep = container_of(tool, struct perf_report, tool); struct report *rep = container_of(tool, struct report, tool);
struct symbol *parent = NULL; struct symbol *parent = NULL;
u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK; u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
struct hist_entry *he; struct hist_entry *he;
...@@ -150,13 +147,11 @@ static int perf_report__add_mem_hist_entry(struct perf_tool *tool, ...@@ -150,13 +147,11 @@ static int perf_report__add_mem_hist_entry(struct perf_tool *tool,
return err; return err;
} }
static int perf_report__add_branch_hist_entry(struct perf_tool *tool, static int report__add_branch_hist_entry(struct perf_tool *tool, struct addr_location *al,
struct addr_location *al, struct perf_sample *sample, struct perf_evsel *evsel,
struct perf_sample *sample, struct machine *machine)
struct perf_evsel *evsel,
struct machine *machine)
{ {
struct perf_report *rep = container_of(tool, struct perf_report, tool); struct report *rep = container_of(tool, struct report, tool);
struct symbol *parent = NULL; struct symbol *parent = NULL;
unsigned i; unsigned i;
struct hist_entry *he; struct hist_entry *he;
...@@ -208,13 +203,11 @@ static int perf_report__add_branch_hist_entry(struct perf_tool *tool, ...@@ -208,13 +203,11 @@ static int perf_report__add_branch_hist_entry(struct perf_tool *tool,
return err; return err;
} }
static int perf_evsel__add_hist_entry(struct perf_tool *tool, static int report__add_hist_entry(struct perf_tool *tool, struct perf_evsel *evsel,
struct perf_evsel *evsel, struct addr_location *al, struct perf_sample *sample,
struct addr_location *al, struct machine *machine)
struct perf_sample *sample,
struct machine *machine)
{ {
struct perf_report *rep = container_of(tool, struct perf_report, tool); struct report *rep = container_of(tool, struct report, tool);
struct symbol *parent = NULL; struct symbol *parent = NULL;
struct hist_entry *he; struct hist_entry *he;
int err = report__resolve_callchain(rep, &parent, evsel, al, sample, machine); int err = report__resolve_callchain(rep, &parent, evsel, al, sample, machine);
...@@ -246,7 +239,7 @@ static int process_sample_event(struct perf_tool *tool, ...@@ -246,7 +239,7 @@ static int process_sample_event(struct perf_tool *tool,
struct perf_evsel *evsel, struct perf_evsel *evsel,
struct machine *machine) struct machine *machine)
{ {
struct perf_report *rep = container_of(tool, struct perf_report, tool); struct report *rep = container_of(tool, struct report, tool);
struct addr_location al; struct addr_location al;
int ret; int ret;
...@@ -263,21 +256,18 @@ static int process_sample_event(struct perf_tool *tool, ...@@ -263,21 +256,18 @@ static int process_sample_event(struct perf_tool *tool,
return 0; return 0;
if (sort__mode == SORT_MODE__BRANCH) { if (sort__mode == SORT_MODE__BRANCH) {
ret = perf_report__add_branch_hist_entry(tool, &al, sample, ret = report__add_branch_hist_entry(tool, &al, sample, evsel, machine);
evsel, machine);
if (ret < 0) if (ret < 0)
pr_debug("problem adding lbr entry, skipping event\n"); pr_debug("problem adding lbr entry, skipping event\n");
} else if (rep->mem_mode == 1) { } else if (rep->mem_mode == 1) {
ret = perf_report__add_mem_hist_entry(tool, &al, sample, ret = report__add_mem_hist_entry(tool, &al, sample, evsel, machine, event);
evsel, machine, event);
if (ret < 0) if (ret < 0)
pr_debug("problem adding mem entry, skipping event\n"); pr_debug("problem adding mem entry, skipping event\n");
} else { } else {
if (al.map != NULL) if (al.map != NULL)
al.map->dso->hit = 1; al.map->dso->hit = 1;
ret = perf_evsel__add_hist_entry(tool, evsel, &al, sample, ret = report__add_hist_entry(tool, evsel, &al, sample, machine);
machine);
if (ret < 0) if (ret < 0)
pr_debug("problem incrementing symbol period, skipping event\n"); pr_debug("problem incrementing symbol period, skipping event\n");
} }
...@@ -290,7 +280,7 @@ static int process_read_event(struct perf_tool *tool, ...@@ -290,7 +280,7 @@ static int process_read_event(struct perf_tool *tool,
struct perf_evsel *evsel, struct perf_evsel *evsel,
struct machine *machine __maybe_unused) struct machine *machine __maybe_unused)
{ {
struct perf_report *rep = container_of(tool, struct perf_report, tool); struct report *rep = container_of(tool, struct report, tool);
if (rep->show_threads) { if (rep->show_threads) {
const char *name = evsel ? perf_evsel__name(evsel) : "unknown"; const char *name = evsel ? perf_evsel__name(evsel) : "unknown";
...@@ -309,7 +299,7 @@ static int process_read_event(struct perf_tool *tool, ...@@ -309,7 +299,7 @@ static int process_read_event(struct perf_tool *tool,
} }
/* For pipe mode, sample_type is not currently set */ /* For pipe mode, sample_type is not currently set */
static int perf_report__setup_sample_type(struct perf_report *rep) static int report__setup_sample_type(struct report *rep)
{ {
struct perf_session *session = rep->session; struct perf_session *session = rep->session;
u64 sample_type = perf_evlist__combined_sample_type(session->evlist); u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
...@@ -354,8 +344,7 @@ static void sig_handler(int sig __maybe_unused) ...@@ -354,8 +344,7 @@ static void sig_handler(int sig __maybe_unused)
session_done = 1; session_done = 1;
} }
static size_t hists__fprintf_nr_sample_events(struct perf_report *rep, static size_t hists__fprintf_nr_sample_events(struct hists *hists, struct report *rep,
struct hists *hists,
const char *evname, FILE *fp) const char *evname, FILE *fp)
{ {
size_t ret; size_t ret;
...@@ -392,7 +381,7 @@ static size_t hists__fprintf_nr_sample_events(struct perf_report *rep, ...@@ -392,7 +381,7 @@ static size_t hists__fprintf_nr_sample_events(struct perf_report *rep,
} }
static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist, static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist,
struct perf_report *rep, struct report *rep,
const char *help) const char *help)
{ {
struct perf_evsel *pos; struct perf_evsel *pos;
...@@ -405,7 +394,7 @@ static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist, ...@@ -405,7 +394,7 @@ static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist,
!perf_evsel__is_group_leader(pos)) !perf_evsel__is_group_leader(pos))
continue; continue;
hists__fprintf_nr_sample_events(rep, hists, evname, stdout); hists__fprintf_nr_sample_events(hists, rep, evname, stdout);
hists__fprintf(hists, true, 0, 0, rep->min_percent, stdout); hists__fprintf(hists, true, 0, 0, rep->min_percent, stdout);
fprintf(stdout, "\n\n"); fprintf(stdout, "\n\n");
} }
...@@ -425,7 +414,7 @@ static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist, ...@@ -425,7 +414,7 @@ static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist,
return 0; return 0;
} }
static int __cmd_report(struct perf_report *rep) static int __cmd_report(struct report *rep)
{ {
int ret = -EINVAL; int ret = -EINVAL;
u64 nr_samples; u64 nr_samples;
...@@ -449,7 +438,7 @@ static int __cmd_report(struct perf_report *rep) ...@@ -449,7 +438,7 @@ static int __cmd_report(struct perf_report *rep)
if (rep->show_threads) if (rep->show_threads)
perf_read_values_init(&rep->show_threads_values); perf_read_values_init(&rep->show_threads_values);
ret = perf_report__setup_sample_type(rep); ret = report__setup_sample_type(rep);
if (ret) if (ret)
return ret; return ret;
...@@ -568,7 +557,7 @@ static int __cmd_report(struct perf_report *rep) ...@@ -568,7 +557,7 @@ static int __cmd_report(struct perf_report *rep)
static int static int
parse_callchain_opt(const struct option *opt, const char *arg, int unset) parse_callchain_opt(const struct option *opt, const char *arg, int unset)
{ {
struct perf_report *rep = (struct perf_report *)opt->value; struct report *rep = (struct report *)opt->value;
char *tok, *tok2; char *tok, *tok2;
char *endptr; char *endptr;
...@@ -688,7 +677,7 @@ static int ...@@ -688,7 +677,7 @@ static int
parse_percent_limit(const struct option *opt, const char *str, parse_percent_limit(const struct option *opt, const char *str,
int unset __maybe_unused) int unset __maybe_unused)
{ {
struct perf_report *rep = opt->value; struct report *rep = opt->value;
rep->min_percent = strtof(str, NULL); rep->min_percent = strtof(str, NULL);
return 0; return 0;
...@@ -706,7 +695,7 @@ int cmd_report(int argc, const char **argv, const char *prefix __maybe_unused) ...@@ -706,7 +695,7 @@ int cmd_report(int argc, const char **argv, const char *prefix __maybe_unused)
"perf report [<options>]", "perf report [<options>]",
NULL NULL
}; };
struct perf_report report = { struct report report = {
.tool = { .tool = {
.sample = process_sample_event, .sample = process_sample_event,
.mmap = perf_event__process_mmap, .mmap = perf_event__process_mmap,
...@@ -822,7 +811,7 @@ int cmd_report(int argc, const char **argv, const char *prefix __maybe_unused) ...@@ -822,7 +811,7 @@ int cmd_report(int argc, const char **argv, const char *prefix __maybe_unused)
.mode = PERF_DATA_MODE_READ, .mode = PERF_DATA_MODE_READ,
}; };
perf_config(perf_report_config, &report); perf_config(report__config, &report);
argc = parse_options(argc, argv, options, report_usage, 0); argc = parse_options(argc, argv, options, report_usage, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment