]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
perf annotate: Move objdump_path to struct annotation_options
authorArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 28 May 2018 17:24:45 +0000 (14:24 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 4 Jun 2018 13:28:53 +0000 (10:28 -0300)
One more step in grouping annotation options.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-sogzdhugoavm6fyw60jnb0vs@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/arch/common.c
tools/perf/arch/common.h
tools/perf/builtin-annotate.c
tools/perf/builtin-report.c
tools/perf/builtin-top.c
tools/perf/ui/browsers/hists.c
tools/perf/util/annotate.c
tools/perf/util/annotate.h

index c6f373508a4f8c4d47c1a3547e22868bcc1e07fd..82657c01a3b8e13ebb8a9c82ae37297ba3448867 100644 (file)
@@ -189,7 +189,7 @@ static int perf_env__lookup_binutils_path(struct perf_env *env,
        return -1;
 }
 
-int perf_env__lookup_objdump(struct perf_env *env)
+int perf_env__lookup_objdump(struct perf_env *env, const char **path)
 {
        /*
         * For live mode, env->arch will be NULL and we can use
@@ -198,5 +198,5 @@ int perf_env__lookup_objdump(struct perf_env *env)
        if (env->arch == NULL)
                return 0;
 
-       return perf_env__lookup_binutils_path(env, "objdump", &objdump_path);
+       return perf_env__lookup_binutils_path(env, "objdump", path);
 }
index 2d875baa92e68fbdd025f90f2a4a13f963613a9f..2167001b18c5ee3de53406ae729856aab6e9f1e3 100644 (file)
@@ -4,8 +4,6 @@
 
 #include "../util/env.h"
 
-extern const char *objdump_path;
-
-int perf_env__lookup_objdump(struct perf_env *env);
+int perf_env__lookup_objdump(struct perf_env *env, const char **path);
 
 #endif /* ARCH_PERF_COMMON_H */
index 2339ae719e1de82c9b267203b7ce23172de48188..5eb22cc563636c11d4e12bf42c71f00b3e1255db 100644 (file)
@@ -388,8 +388,9 @@ static int __cmd_annotate(struct perf_annotate *ann)
                        goto out;
        }
 
-       if (!objdump_path) {
-               ret = perf_env__lookup_objdump(&session->header.env);
+       if (!ann->opts.objdump_path) {
+               ret = perf_env__lookup_objdump(&session->header.env,
+                                              &ann->opts.objdump_path);
                if (ret)
                        goto out;
        }
@@ -521,7 +522,7 @@ int cmd_annotate(int argc, const char **argv)
                    "Display raw encoding of assembly instructions (default)"),
        OPT_STRING('M', "disassembler-style", &annotate.opts.disassembler_style, "disassembler style",
                   "Specify disassembler style (e.g. -M intel for intel syntax)"),
-       OPT_STRING(0, "objdump", &objdump_path, "path",
+       OPT_STRING(0, "objdump", &annotate.opts.objdump_path, "path",
                   "objdump binary to use for disassembly and annotations"),
        OPT_BOOLEAN(0, "group", &symbol_conf.event_group,
                    "Show event group information together"),
index 14b516a3a0de56203b7329826416ba424dd2a0c7..bc133e7a7ac26054c1eb3c8833be530927cd855d 100644 (file)
@@ -1094,7 +1094,7 @@ int cmd_report(int argc, const char **argv)
                    parse_branch_mode),
        OPT_BOOLEAN(0, "branch-history", &branch_call_mode,
                    "add last branch records to call history"),
-       OPT_STRING(0, "objdump", &objdump_path, "path",
+       OPT_STRING(0, "objdump", &report.annotation_opts.objdump_path, "path",
                   "objdump binary to use for disassembly and annotations"),
        OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
                    "Disable symbol demangling"),
index bd60a631a481bee497ade9e0b2e72d6cc7b1d864..ffdc2769ff9f757b0a9d650c573aa06e800270a8 100644 (file)
@@ -1077,8 +1077,9 @@ static int __cmd_top(struct perf_top *top)
        if (top->session == NULL)
                return -1;
 
-       if (!objdump_path) {
-               ret = perf_env__lookup_objdump(&top->session->header.env);
+       if (!top->annotation_opts.objdump_path) {
+               ret = perf_env__lookup_objdump(&top->session->header.env,
+                                              &top->annotation_opts.objdump_path);
                if (ret)
                        goto out_delete;
        }
@@ -1347,7 +1348,7 @@ int cmd_top(int argc, const char **argv)
                    "Display raw encoding of assembly instructions (default)"),
        OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
                    "Enable kernel symbol demangling"),
-       OPT_STRING(0, "objdump", &objdump_path, "path",
+       OPT_STRING(0, "objdump", &top.annotation_opts.objdump_path, "path",
                    "objdump binary to use for disassembly and annotations"),
        OPT_STRING('M', "disassembler-style", &top.annotation_opts.disassembler_style, "disassembler style",
                   "Specify disassembler style (e.g. -M intel for intel syntax)"),
index 3af1b74608ab6046031e6caafc048a05ddbd312e..22054107f1af781f522c3f390031d30093e64e2b 100644 (file)
@@ -2338,7 +2338,8 @@ do_annotate(struct hist_browser *browser, struct popup_action *act)
        struct hist_entry *he;
        int err;
 
-       if (!objdump_path && perf_env__lookup_objdump(browser->env))
+       if (!browser->annotation_opts->objdump_path &&
+           perf_env__lookup_objdump(browser->env, &browser->annotation_opts->objdump_path))
                return 0;
 
        notes = symbol__annotation(act->ms.sym);
index a90777717b6056792be2aa4004974240338d6b18..2baa22933b0ed746318777f93cdd01eea667324f 100644 (file)
@@ -51,7 +51,6 @@ struct annotation_options annotation__default_options = {
        .offset_level   = ANNOTATION__OFFSET_JUMP_TARGETS,
 };
 
-const char     *objdump_path;
 static regex_t  file_lineno;
 
 static struct ins_ops *ins__find(struct arch *arch, const char *name);
@@ -1657,7 +1656,7 @@ static int symbol__disassemble(struct symbol *sym, struct annotate_args *args)
                 "%s %s%s --start-address=0x%016" PRIx64
                 " --stop-address=0x%016" PRIx64
                 " -l -d %s %s -C \"%s\" 2>/dev/null|grep -v \"%s:\"|expand",
-                objdump_path ? objdump_path : "objdump",
+                opts->objdump_path ?: "objdump",
                 opts->disassembler_style ? "-M " : "",
                 opts->disassembler_style ?: "",
                 map__rip_2objdump(map, sym->start),
index 6e6e2a571928b6409f9a19e1e078411681cae04f..a4c0d91907e662853aac249db5ce69dd3da9019b 100644 (file)
@@ -80,6 +80,7 @@ struct annotation_options {
        int  min_pcnt;
        int  max_lines;
        int  context;
+       const char *objdump_path;
        const char *disassembler_style;
 };