blob: 67328d1069942b0822c78946171129e2a77a6ca5 [file] [log] [blame]
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -02001/*
2 * builtin-diff.c
3 *
4 * Builtin diff command: Analyze two perf.data input files, look up and read
5 * DSOs and symbol information, sort them and produce a diff.
6 */
7#include "builtin.h"
8
9#include "util/debug.h"
10#include "util/event.h"
11#include "util/hist.h"
12#include "util/session.h"
13#include "util/sort.h"
14#include "util/symbol.h"
15#include "util/util.h"
16
17#include <stdlib.h>
18
19static char const *input_old = "perf.data.old",
20 *input_new = "perf.data";
21static int force;
22static bool show_percent;
23
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -020024static int perf_session__add_hist_entry(struct perf_session *self,
25 struct addr_location *al, u64 count)
26{
27 bool hit;
28 struct hist_entry *he = __perf_session__add_hist_entry(self, al, NULL,
29 count, &hit);
30 if (he == NULL)
31 return -ENOMEM;
32
33 if (hit)
34 he->count += count;
35
36 return 0;
37}
38
39static int diff__process_sample_event(event_t *event, struct perf_session *session)
40{
41 struct addr_location al;
42 struct sample_data data = { .period = 1, };
43
44 dump_printf("(IP, %d): %d: %p\n", event->header.misc,
45 event->ip.pid, (void *)(long)event->ip.ip);
46
47 if (event__preprocess_sample(event, session, &al, NULL) < 0) {
48 pr_warning("problem processing %d event, skipping it.\n",
49 event->header.type);
50 return -1;
51 }
52
53 event__parse_sample(event, session->sample_type, &data);
54
55 if (al.sym && perf_session__add_hist_entry(session, &al, data.period)) {
56 pr_warning("problem incrementing symbol count, skipping event\n");
57 return -1;
58 }
59
60 session->events_stats.total += data.period;
61 return 0;
62}
63
64static struct perf_event_ops event_ops = {
65 .process_sample_event = diff__process_sample_event,
66 .process_mmap_event = event__process_mmap,
67 .process_comm_event = event__process_comm,
68 .process_exit_event = event__process_task,
69 .process_fork_event = event__process_task,
70 .process_lost_event = event__process_lost,
71};
72
73static void perf_session__insert_hist_entry_by_name(struct rb_root *root,
74 struct hist_entry *he)
75{
76 struct rb_node **p = &root->rb_node;
77 struct rb_node *parent = NULL;
78 struct hist_entry *iter;
79
80 while (*p != NULL) {
81 int cmp;
82 parent = *p;
83 iter = rb_entry(parent, struct hist_entry, rb_node);
84
85 cmp = strcmp(he->map->dso->name, iter->map->dso->name);
86 if (cmp > 0)
87 p = &(*p)->rb_left;
88 else if (cmp < 0)
89 p = &(*p)->rb_right;
90 else {
91 cmp = strcmp(he->sym->name, iter->sym->name);
92 if (cmp > 0)
93 p = &(*p)->rb_left;
94 else
95 p = &(*p)->rb_right;
96 }
97 }
98
99 rb_link_node(&he->rb_node, parent, p);
100 rb_insert_color(&he->rb_node, root);
101}
102
103static void perf_session__resort_by_name(struct perf_session *self)
104{
105 unsigned long position = 1;
106 struct rb_root tmp = RB_ROOT;
107 struct rb_node *next = rb_first(&self->hists);
108
109 while (next != NULL) {
110 struct hist_entry *n = rb_entry(next, struct hist_entry, rb_node);
111
112 next = rb_next(&n->rb_node);
113 rb_erase(&n->rb_node, &self->hists);
114 n->position = position++;
115 perf_session__insert_hist_entry_by_name(&tmp, n);
116 }
117
118 self->hists = tmp;
119}
120
121static struct hist_entry *
122perf_session__find_hist_entry_by_name(struct perf_session *self,
123 struct hist_entry *he)
124{
125 struct rb_node *n = self->hists.rb_node;
126
127 while (n) {
128 struct hist_entry *iter = rb_entry(n, struct hist_entry, rb_node);
129 int cmp = strcmp(he->map->dso->name, iter->map->dso->name);
130
131 if (cmp > 0)
132 n = n->rb_left;
133 else if (cmp < 0)
134 n = n->rb_right;
135 else {
136 cmp = strcmp(he->sym->name, iter->sym->name);
137 if (cmp > 0)
138 n = n->rb_left;
139 else if (cmp < 0)
140 n = n->rb_right;
141 else
142 return iter;
143 }
144 }
145
146 return NULL;
147}
148
149static void perf_session__match_hists(struct perf_session *old_session,
150 struct perf_session *new_session)
151{
152 struct rb_node *nd;
153
154 perf_session__resort_by_name(old_session);
155
156 for (nd = rb_first(&new_session->hists); nd; nd = rb_next(nd)) {
157 struct hist_entry *pos = rb_entry(nd, struct hist_entry, rb_node);
158 pos->pair = perf_session__find_hist_entry_by_name(old_session, pos);
159 }
160}
161
162static size_t hist_entry__fprintf_matched(struct hist_entry *self,
163 unsigned long pos,
164 struct perf_session *session,
165 struct perf_session *pair_session,
166 FILE *fp)
167{
168 u64 old_count = 0;
169 char displacement[16];
170 size_t printed;
171
172 if (self->pair != NULL) {
173 long pdiff = (long)self->pair->position - (long)pos;
174 old_count = self->pair->count;
175 if (pdiff == 0)
176 goto blank;
177 snprintf(displacement, sizeof(displacement), "%+4ld", pdiff);
178 } else {
179blank: memset(displacement, ' ', sizeof(displacement));
180 }
181
182 printed = fprintf(fp, "%4lu %5.5s ", pos, displacement);
183
184 if (show_percent) {
185 double old_percent = (old_count * 100) / pair_session->events_stats.total,
186 new_percent = (self->count * 100) / session->events_stats.total;
187 double diff = old_percent - new_percent;
188
189 if (verbose)
190 printed += fprintf(fp, " %3.2f%% %3.2f%%", old_percent, new_percent);
191
192 if ((u64)diff != 0)
193 printed += fprintf(fp, " %+4.2F%%", diff);
194 else
195 printed += fprintf(fp, " ");
196 } else {
197 if (verbose)
198 printed += fprintf(fp, " %9Lu %9Lu", old_count, self->count);
199 printed += fprintf(fp, " %+9Ld", (s64)self->count - (s64)old_count);
200 }
201
202 return printed + fprintf(fp, " %25.25s %s\n",
203 self->map->dso->name, self->sym->name);
204}
205
206static size_t perf_session__fprintf_matched_hists(struct perf_session *self,
207 struct perf_session *pair,
208 FILE *fp)
209{
210 struct rb_node *nd;
211 size_t printed = 0;
212 unsigned long pos = 1;
213
214 for (nd = rb_first(&self->hists); nd; nd = rb_next(nd)) {
215 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node);
216 printed += hist_entry__fprintf_matched(he, pos++, self, pair, fp);
217 }
218
219 return printed;
220}
221
222static int __cmd_diff(void)
223{
224 int ret, i;
225 struct perf_session *session[2];
226
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200227 session[0] = perf_session__new(input_old, O_RDONLY, force);
228 session[1] = perf_session__new(input_new, O_RDONLY, force);
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200229 if (session[0] == NULL || session[1] == NULL)
230 return -ENOMEM;
231
232 for (i = 0; i < 2; ++i) {
233 ret = perf_session__process_events(session[i], &event_ops);
234 if (ret)
235 goto out_delete;
236 perf_session__output_resort(session[i], session[i]->events_stats.total);
237 }
238
239 perf_session__match_hists(session[0], session[1]);
240 perf_session__fprintf_matched_hists(session[1], session[0], stdout);
241out_delete:
242 for (i = 0; i < 2; ++i)
243 perf_session__delete(session[i]);
244 return ret;
245}
246
247static const char *const diff_usage[] = {
248 "perf diff [<options>] [old_file] [new_file]",
249};
250
251static const struct option options[] = {
252 OPT_BOOLEAN('v', "verbose", &verbose,
253 "be more verbose (show symbol address, etc)"),
254 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
255 "dump raw trace in ASCII"),
256 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
257 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
258 "load module symbols - WARNING: use only with -k and LIVE kernel"),
259 OPT_BOOLEAN('p', "percentages", &show_percent,
260 "Don't shorten the pathnames taking into account the cwd"),
261 OPT_BOOLEAN('P', "full-paths", &event_ops.full_paths,
262 "Don't shorten the pathnames taking into account the cwd"),
263 OPT_END()
264};
265
266int cmd_diff(int argc, const char **argv, const char *prefix __used)
267{
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200268 if (symbol__init() < 0)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200269 return -1;
270
271 setup_sorting(diff_usage, options);
272
273 argc = parse_options(argc, argv, options, diff_usage, 0);
274 if (argc) {
275 if (argc > 2)
276 usage_with_options(diff_usage, options);
277 if (argc == 2) {
278 input_old = argv[0];
279 input_new = argv[1];
280 } else
281 input_new = argv[0];
282 }
283
284 setup_pager();
285 return __cmd_diff();
286}