perf annotate: Get the cpuid from evsel->evlist->env in symbol__annotate()
authorArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 11 Dec 2017 15:46:11 +0000 (12:46 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 27 Dec 2017 15:15:51 +0000 (12:15 -0300)
To reduce its function signature, since we get this from 'evsel' which
is already one of its arguments.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Thomas Richter <tmricht@linux.vnet.ibm.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-070eap7t6uicg9c3w086xy2z@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-top.c
tools/perf/ui/browsers/annotate.c
tools/perf/ui/gtk/annotate.c
tools/perf/util/annotate.c
tools/perf/util/annotate.h
tools/perf/util/evsel.c
tools/perf/util/evsel.h

index 540461f5e3451f155c8496214de492594b8eabd5..c6ccda52117d3076e9d46bc1101f090a48d32e65 100644 (file)
@@ -138,7 +138,7 @@ static int perf_top__parse_source(struct perf_top *top, struct hist_entry *he)
                return err;
        }
 
-       err = symbol__annotate(sym, map, evsel, 0, NULL, NULL);
+       err = symbol__annotate(sym, map, evsel, 0, NULL);
        if (err == 0) {
 out_assign:
                top->sym_filter_entry = he;
index 03b7363a49c9ae646ac731078fe3fc52a8c5450f..2864279751122aa8efc518778759cc04589e12ba 100644 (file)
@@ -1116,9 +1116,7 @@ int symbol__tui_annotate(struct symbol *sym, struct map *map,
        if (perf_evsel__is_group_event(evsel))
                nr_pcnt = evsel->nr_members;
 
-       err = symbol__annotate(sym, map, evsel,
-                              sizeof(struct browser_line), &browser.arch,
-                              perf_evsel__env_cpuid(evsel));
+       err = symbol__annotate(sym, map, evsel, sizeof(struct browser_line), &browser.arch);
        if (err) {
                char msg[BUFSIZ];
                symbol__strerror_disassemble(sym, map, err, msg, sizeof(msg));
index cdb5ecf91666b354348a6cecc9e960c899ded5ae..aeeaf15029f09798c1eabb15470c593b990ccac8 100644 (file)
@@ -169,7 +169,7 @@ static int symbol__gtk_annotate(struct symbol *sym, struct map *map,
        if (map->dso->annotate_warned)
                return -1;
 
-       err = symbol__annotate(sym, map, evsel, 0, NULL, NULL);
+       err = symbol__annotate(sym, map, evsel, 0, NULL);
        if (err) {
                char msg[BUFSIZ];
                symbol__strerror_disassemble(sym, map, err, msg, sizeof(msg));
index facad1e279a82e9a453e5c829b9b1eb7a2eacd7d..bc34b28373f499d960260c0bd1d58c9e0479ba88 100644 (file)
@@ -1622,13 +1622,14 @@ void symbol__calc_percent(struct symbol *sym, struct perf_evsel *evsel)
 
 int symbol__annotate(struct symbol *sym, struct map *map,
                     struct perf_evsel *evsel, size_t privsize,
-                    struct arch **parch, char *cpuid)
+                    struct arch **parch)
 {
        struct annotate_args args = {
                .privsize       = privsize,
                .map            = map,
                .evsel          = evsel,
        };
+       struct perf_env *env = perf_evsel__env(evsel);
        const char *arch_name = NULL;
        struct arch *arch;
        int err;
@@ -1648,7 +1649,7 @@ int symbol__annotate(struct symbol *sym, struct map *map,
                *parch = arch;
 
        if (arch->init) {
-               err = arch->init(arch, cpuid);
+               err = arch->init(arch, env ? env->cpuid : NULL);
                if (err) {
                        pr_err("%s: failed to initialize %s arch priv area\n", __func__, arch->name);
                        return err;
@@ -1999,7 +2000,7 @@ int symbol__tty_annotate(struct symbol *sym, struct map *map,
        struct dso *dso = map->dso;
        struct rb_root source_line = RB_ROOT;
 
-       if (symbol__annotate(sym, map, evsel, 0, NULL, NULL) < 0)
+       if (symbol__annotate(sym, map, evsel, 0, NULL) < 0)
                return -1;
 
        symbol__calc_percent(sym, evsel);
index 6d7289e88fa3779abcec72812f4049d82ef1bd25..ce427445671f5b85278d87b868e048d0d9dbc92c 100644 (file)
@@ -179,7 +179,7 @@ void symbol__annotate_zero_histograms(struct symbol *sym);
 
 int symbol__annotate(struct symbol *sym, struct map *map,
                     struct perf_evsel *evsel, size_t privsize,
-                    struct arch **parch, char *cpuid);
+                    struct arch **parch);
 
 enum symbol_disassemble_errno {
        SYMBOL_ANNOTATE_ERRNO__SUCCESS          = 0,
index 95853c51c0ca45293200e0fea7aba4b8d33a89bd..541897049c6cdfec7ed106eed38accb89fe8ae93 100644 (file)
@@ -2842,9 +2842,9 @@ char *perf_evsel__env_arch(struct perf_evsel *evsel)
        return NULL;
 }
 
-char *perf_evsel__env_cpuid(struct perf_evsel *evsel)
+struct perf_env *perf_evsel__env(struct perf_evsel *evsel)
 {
-       if (evsel && evsel->evlist && evsel->evlist->env)
-               return evsel->evlist->env->cpuid;
+       if (evsel && evsel->evlist)
+               return evsel->evlist->env;
        return NULL;
 }
index c3663a70c9b9b13537df7b8e582d4e02bef9d599..0e961ce60a9ccdb2ff8fd92b9d163acc2c8a8e56 100644 (file)
@@ -447,6 +447,6 @@ int perf_event_attr__fprintf(FILE *fp, struct perf_event_attr *attr,
                             attr__fprintf_f attr__fprintf, void *priv);
 
 char *perf_evsel__env_arch(struct perf_evsel *evsel);
-char *perf_evsel__env_cpuid(struct perf_evsel *evsel);
+struct perf_env *perf_evsel__env(struct perf_evsel *evsel);
 
 #endif /* __PERF_EVSEL_H */