aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/annotate.h
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung.kim@lge.com>2013-03-05 00:53:21 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-03-15 12:06:04 -0400
commitdb8fd07a541fc2d5e8076f0151286e19591465b3 (patch)
tree50b9bd5d03c7f761ff6f295bdebdf0be49729662 /tools/perf/util/annotate.h
parentacf2892270dcc4288c572b1159474c81f3819749 (diff)
perf annotate: Pass evsel instead of evidx on annotation functions
Pass evsel instead of evidx. This is a preparation for supporting event group view in annotation and no functional change is intended. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Cc: Andi Kleen <andi@firstfloor.org> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Pekka Enberg <penberg@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1362462812-30885-2-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/annotate.h')
-rw-r--r--tools/perf/util/annotate.h36
1 files changed, 19 insertions, 17 deletions
diff --git a/tools/perf/util/annotate.h b/tools/perf/util/annotate.h
index c422440fe611..376395475663 100644
--- a/tools/perf/util/annotate.h
+++ b/tools/perf/util/annotate.h
@@ -130,47 +130,49 @@ void symbol__annotate_zero_histograms(struct symbol *sym);
130 130
131int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize); 131int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize);
132int symbol__annotate_init(struct map *map __maybe_unused, struct symbol *sym); 132int symbol__annotate_init(struct map *map __maybe_unused, struct symbol *sym);
133int symbol__annotate_printf(struct symbol *sym, struct map *map, int evidx, 133int symbol__annotate_printf(struct symbol *sym, struct map *map,
134 bool full_paths, int min_pcnt, int max_lines, 134 struct perf_evsel *evsel, bool full_paths,
135 int context); 135 int min_pcnt, int max_lines, int context);
136void symbol__annotate_zero_histogram(struct symbol *sym, int evidx); 136void symbol__annotate_zero_histogram(struct symbol *sym, int evidx);
137void symbol__annotate_decay_histogram(struct symbol *sym, int evidx); 137void symbol__annotate_decay_histogram(struct symbol *sym, int evidx);
138void disasm__purge(struct list_head *head); 138void disasm__purge(struct list_head *head);
139 139
140int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx, 140int symbol__tty_annotate(struct symbol *sym, struct map *map,
141 bool print_lines, bool full_paths, int min_pcnt, 141 struct perf_evsel *evsel, bool print_lines,
142 int max_lines); 142 bool full_paths, int min_pcnt, int max_lines);
143 143
144#ifdef NEWT_SUPPORT 144#ifdef NEWT_SUPPORT
145int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx, 145int symbol__tui_annotate(struct symbol *sym, struct map *map,
146 struct perf_evsel *evsel,
146 struct hist_browser_timer *hbt); 147 struct hist_browser_timer *hbt);
147#else 148#else
148static inline int symbol__tui_annotate(struct symbol *sym __maybe_unused, 149static inline int symbol__tui_annotate(struct symbol *sym __maybe_unused,
149 struct map *map __maybe_unused, 150 struct map *map __maybe_unused,
150 int evidx __maybe_unused, 151 struct perf_evsel *evsel __maybe_unused,
151 struct hist_browser_timer *hbt 152 struct hist_browser_timer *hbt
152 __maybe_unused) 153 __maybe_unused)
153{ 154{
154 return 0; 155 return 0;
155} 156}
156#endif 157#endif
157 158
158#ifdef GTK2_SUPPORT 159#ifdef GTK2_SUPPORT
159int symbol__gtk_annotate(struct symbol *sym, struct map *map, int evidx, 160int symbol__gtk_annotate(struct symbol *sym, struct map *map,
161 struct perf_evsel *evsel,
160 struct hist_browser_timer *hbt); 162 struct hist_browser_timer *hbt);
161 163
162static inline int hist_entry__gtk_annotate(struct hist_entry *he, int evidx, 164static inline int hist_entry__gtk_annotate(struct hist_entry *he,
165 struct perf_evsel *evsel,
163 struct hist_browser_timer *hbt) 166 struct hist_browser_timer *hbt)
164{ 167{
165 return symbol__gtk_annotate(he->ms.sym, he->ms.map, evidx, hbt); 168 return symbol__gtk_annotate(he->ms.sym, he->ms.map, evsel, hbt);
166} 169}
167 170
168void perf_gtk__show_annotations(void); 171void perf_gtk__show_annotations(void);
169#else 172#else
170static inline int hist_entry__gtk_annotate(struct hist_entry *he __maybe_unused, 173static inline int hist_entry__gtk_annotate(struct hist_entry *he __maybe_unused,
171 int evidx __maybe_unused, 174 struct perf_evsel *evsel __maybe_unused,
172 struct hist_browser_timer *hbt 175 struct hist_browser_timer *hbt __maybe_unused)
173 __maybe_unused)
174{ 176{
175 return 0; 177 return 0;
176} 178}