perf annotate: Add init/exit to annotation_options remove default
authorIan Rogers <irogers@google.com>
Tue, 28 Mar 2023 23:55:40 +0000 (16:55 -0700)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 4 Apr 2023 12:39:56 +0000 (09:39 -0300)
The annotation__default_options global variable was used to initialize
annotation_options.  Switch to the init/exit pattern as later changes
will give ownership over strings and this will be necessary to avoid
memory leaks.

Committer note:

Fix the GTK2=1 build, hist_entry__gtk_annotate() needs to receive a
'struct annotation_options' pointer.

Signed-off-by: Ian Rogers <irogers@google.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Andres Freund <andres@anarazel.de>
Cc: German Gomez <german.gomez@arm.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: James Clark <james.clark@arm.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nathan Chancellor <nathan@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Sandipan Das <sandipan.das@amd.com>
Cc: Tom Rix <trix@redhat.com>
Cc: llvm@lists.linux.dev
Link: https://lore.kernel.org/r/20230328235543.1082207-2-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-annotate.c
tools/perf/builtin-report.c
tools/perf/builtin-top.c
tools/perf/ui/gtk/annotate.c
tools/perf/ui/gtk/gtk.h
tools/perf/util/annotate.c
tools/perf/util/annotate.h

index 98d1b63792307436ac18e54653597867cc17edba..997a1e65d090b2a61c4fa2c0a7b1ec2bae316609 100644 (file)
@@ -352,6 +352,7 @@ find_next:
                        int ret;
                        int (*annotate)(struct hist_entry *he,
                                        struct evsel *evsel,
+                                       struct annotation_options *options,
                                        struct hist_browser_timer *hbt);
 
                        annotate = dlsym(perf_gtk_handle,
@@ -361,7 +362,7 @@ find_next:
                                return;
                        }
 
-                       ret = annotate(he, evsel, NULL);
+                       ret = annotate(he, evsel, &ann->opts, NULL);
                        if (!ret || !ann->skip_missing)
                                return;
 
@@ -509,7 +510,6 @@ int cmd_annotate(int argc, const char **argv)
                        .ordered_events = true,
                        .ordering_requires_timestamps = true,
                },
-               .opts = annotation__default_options,
        };
        struct perf_data data = {
                .mode  = PERF_DATA_MODE_READ,
@@ -598,6 +598,7 @@ int cmd_annotate(int argc, const char **argv)
        set_option_flag(options, 0, "show-total-period", PARSE_OPT_EXCLUSIVE);
        set_option_flag(options, 0, "show-nr-samples", PARSE_OPT_EXCLUSIVE);
 
+       annotation_options__init(&annotate.opts);
 
        ret = hists__init();
        if (ret < 0)
@@ -698,6 +699,7 @@ out_delete:
 #ifndef NDEBUG
        perf_session__delete(annotate.session);
 #endif
+       annotation_options__exit(&annotate.opts);
 
        return ret;
 }
index 500f9d8902e7a9240e397ba4c46cc62d04c945eb..b41e1219d153b1b2c474e5e95c3ad8e38cb29b3a 100644 (file)
@@ -728,8 +728,7 @@ static int hists__resort_cb(struct hist_entry *he, void *arg)
        if (rep->symbol_ipc && sym && !sym->annotate2) {
                struct evsel *evsel = hists_to_evsel(he->hists);
 
-               symbol__annotate2(&he->ms, evsel,
-                                 &annotation__default_options, NULL);
+               symbol__annotate2(&he->ms, evsel, &rep->annotation_opts, NULL);
        }
 
        return 0;
@@ -1223,7 +1222,6 @@ int cmd_report(int argc, const char **argv)
                .max_stack               = PERF_MAX_STACK_DEPTH,
                .pretty_printing_style   = "normal",
                .socket_filter           = -1,
-               .annotation_opts         = annotation__default_options,
                .skip_empty              = true,
        };
        char *sort_order_help = sort_help("sort by key(s):");
@@ -1403,6 +1401,8 @@ int cmd_report(int argc, const char **argv)
        if (ret < 0)
                goto exit;
 
+       annotation_options__init(&report.annotation_opts);
+
        ret = perf_config(report__config, &report);
        if (ret)
                goto exit;
@@ -1706,6 +1706,7 @@ error:
        zstd_fini(&(session->zstd_data));
        perf_session__delete(session);
 exit:
+       annotation_options__exit(&report.annotation_opts);
        free(sort_order_help);
        free(field_order_help);
        return ret;
index d4b5b02bab7335b01171f65046df3418164d67f6..592eb827fba90e93f3a80093f1f6aa041fb04e83 100644 (file)
@@ -1435,7 +1435,6 @@ int cmd_top(int argc, const char **argv)
                        .sample_time_set = true,
                },
                .max_stack           = sysctl__max_stack(),
-               .annotation_opts     = annotation__default_options,
                .nr_threads_synthesize = UINT_MAX,
        };
        struct record_opts *opts = &top.record_opts;
@@ -1587,6 +1586,8 @@ int cmd_top(int argc, const char **argv)
        if (status < 0)
                return status;
 
+       annotation_options__init(&top.annotation_opts);
+
        top.annotation_opts.min_pcnt = 5;
        top.annotation_opts.context  = 4;
 
@@ -1783,6 +1784,7 @@ int cmd_top(int argc, const char **argv)
 out_delete_evlist:
        evlist__delete(top.evlist);
        perf_session__delete(top.session);
+       annotation_options__exit(&top.annotation_opts);
 
        return status;
 }
index 0a50e962f9a386e0cb70c3a30da9ef0fe43e317b..a1c021a6d3c1f0f1c38e1fced836f253e58b9aa1 100644 (file)
@@ -162,6 +162,7 @@ static int perf_gtk__annotate_symbol(GtkWidget *window, struct map_symbol *ms,
 }
 
 static int symbol__gtk_annotate(struct map_symbol *ms, struct evsel *evsel,
+                               struct annotation_options *options,
                                struct hist_browser_timer *hbt)
 {
        struct symbol *sym = ms->sym;
@@ -174,7 +175,7 @@ static int symbol__gtk_annotate(struct map_symbol *ms, struct evsel *evsel,
        if (ms->map->dso->annotate_warned)
                return -1;
 
-       err = symbol__annotate(ms, evsel, &annotation__default_options, NULL);
+       err = symbol__annotate(ms, evsel, options, NULL);
        if (err) {
                char msg[BUFSIZ];
                ms->map->dso->annotate_warned = true;
@@ -242,9 +243,10 @@ static int symbol__gtk_annotate(struct map_symbol *ms, struct evsel *evsel,
 
 int hist_entry__gtk_annotate(struct hist_entry *he,
                             struct evsel *evsel,
+                            struct annotation_options *options,
                             struct hist_browser_timer *hbt)
 {
-       return symbol__gtk_annotate(&he->ms, evsel, hbt);
+       return symbol__gtk_annotate(&he->ms, evsel, options, hbt);
 }
 
 void perf_gtk__show_annotations(void)
index a2b497f03fd6e478f11136e5ef21e987f4aeb89d..1e84dceb52671385696db95e603b008e0d19efda 100644 (file)
@@ -56,11 +56,13 @@ struct evsel;
 struct evlist;
 struct hist_entry;
 struct hist_browser_timer;
+struct annotation_options;
 
 int evlist__gtk_browse_hists(struct evlist *evlist, const char *help,
                             struct hist_browser_timer *hbt, float min_pcnt);
 int hist_entry__gtk_annotate(struct hist_entry *he,
                             struct evsel *evsel,
+                            struct annotation_options *options,
                             struct hist_browser_timer *hbt);
 void perf_gtk__show_annotations(void);
 
index db475e44f42fae8d87e4e18b0f8afefb0c383526..a984bdae78118953ccace646d87a1883b5799936 100644 (file)
 
 #include <linux/ctype.h>
 
-struct annotation_options annotation__default_options = {
-       .use_offset     = true,
-       .jump_arrows    = true,
-       .annotate_src   = true,
-       .offset_level   = ANNOTATION__OFFSET_JUMP_TARGETS,
-       .percent_type   = PERCENT_PERIOD_LOCAL,
-};
-
 static regex_t  file_lineno;
 
 static struct ins_ops *ins__find(struct arch *arch, const char *name);
@@ -3226,6 +3218,23 @@ static int annotation__config(const char *var, const char *value, void *data)
        return 0;
 }
 
+void annotation_options__init(struct annotation_options *opt)
+{
+       memset(opt, 0, sizeof(*opt));
+
+       /* Default values. */
+       opt->use_offset = true;
+       opt->jump_arrows = true;
+       opt->annotate_src = true;
+       opt->offset_level = ANNOTATION__OFFSET_JUMP_TARGETS;
+       opt->percent_type = PERCENT_PERIOD_LOCAL;
+}
+
+
+void annotation_options__exit(struct annotation_options *opt __maybe_unused)
+{
+}
+
 void annotation_config__init(struct annotation_options *opt)
 {
        perf_config(annotation__config, opt);
index 8934072c39e6beefffff0c30048b3bf9962c7d78..e7238c6944653c0052693965864367410a8aa779 100644 (file)
@@ -109,8 +109,6 @@ enum {
 
 #define ANNOTATION__MIN_OFFSET_LEVEL ANNOTATION__OFFSET_JUMP_TARGETS
 
-extern struct annotation_options annotation__default_options;
-
 struct annotation;
 
 struct sym_hist_entry {
@@ -418,6 +416,9 @@ static inline int symbol__tui_annotate(struct map_symbol *ms __maybe_unused,
 }
 #endif
 
+void annotation_options__init(struct annotation_options *opt);
+void annotation_options__exit(struct annotation_options *opt);
+
 void annotation_config__init(struct annotation_options *opt);
 
 int annotate_parse_percent_type(const struct option *opt, const char *_str,