blob: 3db99fd99867c5184805a5fb2f61d18d0e19fe5c [file] [log] [blame]
Ingo Molnarbf9e1872009-06-02 23:37:05 +02001/*
2 * builtin-report.c
3 *
4 * Builtin report command: Analyze the perf.data input file,
5 * look up and read DSOs and symbol information and display
6 * a histogram of results, along various sorting keys.
7 */
Ingo Molnar16f762a2009-05-27 09:10:38 +02008#include "builtin.h"
Ingo Molnar53cb8bc2009-05-26 09:17:18 +02009
Ingo Molnarbf9e1872009-06-02 23:37:05 +020010#include "util/util.h"
11
Ingo Molnar8fc03212009-06-04 15:19:47 +020012#include "util/color.h"
Arnaldo Carvalho de Melo5da50252009-07-01 14:46:08 -030013#include <linux/list.h>
Ingo Molnara930d2c2009-05-27 09:50:13 +020014#include "util/cache.h"
Arnaldo Carvalho de Melo43cbcd82009-07-01 12:28:37 -030015#include <linux/rbtree.h>
Arnaldo Carvalho de Meloa2928c42009-05-28 14:55:04 -030016#include "util/symbol.h"
Arnaldo Carvalho de Meloa0055ae2009-06-01 17:50:19 -030017#include "util/string.h"
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +020018#include "util/callchain.h"
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -030019#include "util/strlist.h"
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030020
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020021#include "perf.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020022#include "util/header.h"
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020023
24#include "util/parse-options.h"
25#include "util/parse-events.h"
26
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030027#define SHOW_KERNEL 1
28#define SHOW_USER 2
29#define SHOW_HV 4
30
Ingo Molnar23ac9cb2009-05-27 09:33:18 +020031static char const *input_name = "perf.data";
Peter Zijlstra450aaa22009-05-27 20:20:23 +020032static char *vmlinux = NULL;
Ingo Molnarbd741372009-06-04 14:13:04 +020033
34static char default_sort_order[] = "comm,dso";
35static char *sort_order = default_sort_order;
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -030036static char *dso_list_str, *comm_list_str, *sym_list_str;
37static struct strlist *dso_list, *comm_list, *sym_list;
Ingo Molnarbd741372009-06-04 14:13:04 +020038
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030039static int input;
40static int show_mask = SHOW_KERNEL | SHOW_USER | SHOW_HV;
41
Ingo Molnar97b07b62009-05-26 18:48:58 +020042static int dump_trace = 0;
Ingo Molnar35029732009-06-03 09:38:58 +020043#define dprintf(x...) do { if (dump_trace) printf(x); } while (0)
Ingo Molnar3efa1cc92009-06-14 15:04:15 +020044#define cdprintf(x...) do { if (dump_trace) color_fprintf(stdout, color, x); } while (0)
Ingo Molnar35029732009-06-03 09:38:58 +020045
Ingo Molnar16f762a2009-05-27 09:10:38 +020046static int verbose;
Ingo Molnar75220602009-06-18 08:00:17 +020047#define eprintf(x...) do { if (verbose) fprintf(stderr, x); } while (0)
48
Mike Galbraith42976482009-07-02 08:09:46 +020049static int modules;
50
Arnaldo Carvalho de Melob78c07d2009-05-29 13:48:59 -030051static int full_paths;
Ingo Molnar97b07b62009-05-26 18:48:58 +020052
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030053static unsigned long page_size;
54static unsigned long mmap_window = 32;
55
Ingo Molnarb8e6d822009-06-18 14:32:19 +020056static char default_parent_pattern[] = "^sys_|^do_page_fault";
57static char *parent_pattern = default_parent_pattern;
Ingo Molnarb25bcf22009-06-18 07:01:03 +020058static regex_t parent_regex;
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +020059
Ingo Molnarb8e6d822009-06-18 14:32:19 +020060static int exclude_other = 1;
Frederic Weisbeckerbe903882009-07-05 07:39:18 +020061
62static char callchain_default_opt[] = "flat,0";
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +020063static int callchain;
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020064static enum chain_mode callchain_mode;
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +020065static double callchain_min_percent = 0.0;
Ingo Molnarb8e6d822009-06-18 14:32:19 +020066
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +020067static u64 sample_type;
68
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030069struct ip_event {
70 struct perf_event_header header;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100071 u64 ip;
72 u32 pid, tid;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +020073 unsigned char __more_data[];
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030074};
Ingo Molnar75051722009-06-03 23:14:49 +020075
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030076struct mmap_event {
77 struct perf_event_header header;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100078 u32 pid, tid;
79 u64 start;
80 u64 len;
81 u64 pgoff;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030082 char filename[PATH_MAX];
83};
Ingo Molnar75051722009-06-03 23:14:49 +020084
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030085struct comm_event {
86 struct perf_event_header header;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100087 u32 pid, tid;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030088 char comm[16];
89};
90
Peter Zijlstra62fc4452009-06-04 16:53:49 +020091struct fork_event {
92 struct perf_event_header header;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100093 u32 pid, ppid;
Peter Zijlstra62fc4452009-06-04 16:53:49 +020094};
95
Ingo Molnarb2fef072009-06-05 18:07:51 +020096struct period_event {
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030097 struct perf_event_header header;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100098 u64 time;
99 u64 id;
100 u64 sample_period;
Ingo Molnarb2fef072009-06-05 18:07:51 +0200101};
102
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200103struct lost_event {
104 struct perf_event_header header;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000105 u64 id;
106 u64 lost;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200107};
108
Peter Zijlstrae9ea2fd2009-06-24 22:46:04 +0200109struct read_event {
110 struct perf_event_header header;
111 u32 pid,tid;
112 u64 value;
113 u64 format[3];
114};
115
Ingo Molnarb2fef072009-06-05 18:07:51 +0200116typedef union event_union {
117 struct perf_event_header header;
118 struct ip_event ip;
119 struct mmap_event mmap;
120 struct comm_event comm;
121 struct fork_event fork;
122 struct period_event period;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200123 struct lost_event lost;
Peter Zijlstrae9ea2fd2009-06-24 22:46:04 +0200124 struct read_event read;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300125} event_t;
126
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300127static LIST_HEAD(dsos);
128static struct dso *kernel_dso;
Peter Zijlstrafc54db52009-06-05 14:04:59 +0200129static struct dso *vdso;
Anton Blanchardfb9c8182009-07-01 09:00:49 +1000130static struct dso *hypervisor_dso;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300131
132static void dsos__add(struct dso *dso)
133{
134 list_add_tail(&dso->node, &dsos);
135}
136
137static struct dso *dsos__find(const char *name)
138{
139 struct dso *pos;
140
141 list_for_each_entry(pos, &dsos, node)
142 if (strcmp(pos->name, name) == 0)
143 return pos;
144 return NULL;
145}
146
147static struct dso *dsos__findnew(const char *name)
148{
149 struct dso *dso = dsos__find(name);
Peter Zijlstrab7a16ea2009-05-27 13:35:35 +0200150 int nr;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300151
Ingo Molnar4593bba2009-06-02 15:34:25 +0200152 if (dso)
153 return dso;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300154
Ingo Molnar4593bba2009-06-02 15:34:25 +0200155 dso = dso__new(name, 0);
156 if (!dso)
157 goto out_delete_dso;
Peter Zijlstrab7a16ea2009-05-27 13:35:35 +0200158
Ingo Molnarbd741372009-06-04 14:13:04 +0200159 nr = dso__load(dso, NULL, verbose);
Ingo Molnar4593bba2009-06-02 15:34:25 +0200160 if (nr < 0) {
Ingo Molnar75220602009-06-18 08:00:17 +0200161 eprintf("Failed to open: %s\n", name);
Ingo Molnar4593bba2009-06-02 15:34:25 +0200162 goto out_delete_dso;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300163 }
Ingo Molnar75220602009-06-18 08:00:17 +0200164 if (!nr)
165 eprintf("No symbols found in: %s, maybe install a debug package?\n", name);
Ingo Molnar4593bba2009-06-02 15:34:25 +0200166
167 dsos__add(dso);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300168
169 return dso;
170
171out_delete_dso:
172 dso__delete(dso);
173 return NULL;
174}
175
Ingo Molnar16f762a2009-05-27 09:10:38 +0200176static void dsos__fprintf(FILE *fp)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300177{
178 struct dso *pos;
179
180 list_for_each_entry(pos, &dsos, node)
181 dso__fprintf(pos, fp);
182}
183
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000184static struct symbol *vdso__find_symbol(struct dso *dso, u64 ip)
Peter Zijlstrafc54db52009-06-05 14:04:59 +0200185{
Ingo Molnarf37a2912009-07-01 12:37:06 +0200186 return dso__find_symbol(dso, ip);
Peter Zijlstrafc54db52009-06-05 14:04:59 +0200187}
188
Peter Zijlstra450aaa22009-05-27 20:20:23 +0200189static int load_kernel(void)
190{
Arnaldo Carvalho de Meloa827c872009-05-28 14:55:19 -0300191 int err;
Peter Zijlstra450aaa22009-05-27 20:20:23 +0200192
Arnaldo Carvalho de Melo0085c9542009-05-28 14:55:13 -0300193 kernel_dso = dso__new("[kernel]", 0);
Peter Zijlstra450aaa22009-05-27 20:20:23 +0200194 if (!kernel_dso)
Arnaldo Carvalho de Meloa2928c42009-05-28 14:55:04 -0300195 return -1;
Peter Zijlstra450aaa22009-05-27 20:20:23 +0200196
Mike Galbraith42976482009-07-02 08:09:46 +0200197 err = dso__load_kernel(kernel_dso, vmlinux, NULL, verbose, modules);
Mike Galbraith9974f492009-07-02 08:05:58 +0200198 if (err <= 0) {
Arnaldo Carvalho de Meloa2928c42009-05-28 14:55:04 -0300199 dso__delete(kernel_dso);
200 kernel_dso = NULL;
201 } else
202 dsos__add(kernel_dso);
Peter Zijlstra450aaa22009-05-27 20:20:23 +0200203
Peter Zijlstrafc54db52009-06-05 14:04:59 +0200204 vdso = dso__new("[vdso]", 0);
205 if (!vdso)
206 return -1;
207
208 vdso->find_symbol = vdso__find_symbol;
209
210 dsos__add(vdso);
211
Anton Blanchardfb9c8182009-07-01 09:00:49 +1000212 hypervisor_dso = dso__new("[hypervisor]", 0);
213 if (!hypervisor_dso)
214 return -1;
215 dsos__add(hypervisor_dso);
216
Arnaldo Carvalho de Meloa2928c42009-05-28 14:55:04 -0300217 return err;
Peter Zijlstra450aaa22009-05-27 20:20:23 +0200218}
219
Ingo Molnard80d3382009-06-03 23:14:49 +0200220static char __cwd[PATH_MAX];
221static char *cwd = __cwd;
222static int cwdlen;
223
224static int strcommon(const char *pathname)
Arnaldo Carvalho de Melob78c07d2009-05-29 13:48:59 -0300225{
226 int n = 0;
227
228 while (pathname[n] == cwd[n] && n < cwdlen)
229 ++n;
230
231 return n;
232}
233
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300234struct map {
235 struct list_head node;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000236 u64 start;
237 u64 end;
238 u64 pgoff;
239 u64 (*map_ip)(struct map *, u64);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300240 struct dso *dso;
241};
242
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000243static u64 map__map_ip(struct map *map, u64 ip)
Peter Zijlstrafc54db52009-06-05 14:04:59 +0200244{
245 return ip - map->start + map->pgoff;
246}
247
Ingo Molnarf37a2912009-07-01 12:37:06 +0200248static u64 vdso__map_ip(struct map *map __used, u64 ip)
Peter Zijlstrafc54db52009-06-05 14:04:59 +0200249{
250 return ip;
251}
252
Pekka Enberg80d496b2009-06-08 21:12:48 +0300253static inline int is_anon_memory(const char *filename)
254{
Arnaldo Carvalho de Melocc8b88b2009-06-30 19:01:21 -0300255 return strcmp(filename, "//anon") == 0;
Pekka Enberg80d496b2009-06-08 21:12:48 +0300256}
257
Ingo Molnard80d3382009-06-03 23:14:49 +0200258static struct map *map__new(struct mmap_event *event)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300259{
260 struct map *self = malloc(sizeof(*self));
261
262 if (self != NULL) {
Arnaldo Carvalho de Melob78c07d2009-05-29 13:48:59 -0300263 const char *filename = event->filename;
264 char newfilename[PATH_MAX];
Pekka Enberg80d496b2009-06-08 21:12:48 +0300265 int anon;
Arnaldo Carvalho de Melob78c07d2009-05-29 13:48:59 -0300266
267 if (cwd) {
Ingo Molnard80d3382009-06-03 23:14:49 +0200268 int n = strcommon(filename);
269
Arnaldo Carvalho de Melob78c07d2009-05-29 13:48:59 -0300270 if (n == cwdlen) {
271 snprintf(newfilename, sizeof(newfilename),
272 ".%s", filename + n);
273 filename = newfilename;
274 }
275 }
276
Pekka Enberg80d496b2009-06-08 21:12:48 +0300277 anon = is_anon_memory(filename);
278
279 if (anon) {
280 snprintf(newfilename, sizeof(newfilename), "/tmp/perf-%d.map", event->pid);
281 filename = newfilename;
282 }
283
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300284 self->start = event->start;
285 self->end = event->start + event->len;
286 self->pgoff = event->pgoff;
287
Arnaldo Carvalho de Melob78c07d2009-05-29 13:48:59 -0300288 self->dso = dsos__findnew(filename);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300289 if (self->dso == NULL)
290 goto out_delete;
Peter Zijlstrafc54db52009-06-05 14:04:59 +0200291
Pekka Enberg80d496b2009-06-08 21:12:48 +0300292 if (self->dso == vdso || anon)
Peter Zijlstrafc54db52009-06-05 14:04:59 +0200293 self->map_ip = vdso__map_ip;
294 else
295 self->map_ip = map__map_ip;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300296 }
297 return self;
298out_delete:
299 free(self);
300 return NULL;
301}
302
Peter Zijlstra62fc4452009-06-04 16:53:49 +0200303static struct map *map__clone(struct map *self)
304{
305 struct map *map = malloc(sizeof(*self));
306
307 if (!map)
308 return NULL;
309
310 memcpy(map, self, sizeof(*self));
311
312 return map;
313}
314
315static int map__overlap(struct map *l, struct map *r)
316{
317 if (l->start > r->start) {
318 struct map *t = l;
319 l = r;
320 r = t;
321 }
322
323 if (l->end > r->start)
324 return 1;
325
326 return 0;
327}
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300328
Arnaldo Carvalho de Melo9ac99542009-06-04 13:54:00 -0300329static size_t map__fprintf(struct map *self, FILE *fp)
330{
Ingo Molnar729ff5e22009-06-11 14:16:15 +0200331 return fprintf(fp, " %Lx-%Lx %Lx %s\n",
Arnaldo Carvalho de Melo9ac99542009-06-04 13:54:00 -0300332 self->start, self->end, self->pgoff, self->dso->name);
333}
334
335
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300336struct thread {
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300337 struct rb_node rb_node;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300338 struct list_head maps;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300339 pid_t pid;
340 char *comm;
341};
342
343static struct thread *thread__new(pid_t pid)
344{
345 struct thread *self = malloc(sizeof(*self));
346
347 if (self != NULL) {
348 self->pid = pid;
Peter Zijlstra82292892009-06-03 12:37:36 +0200349 self->comm = malloc(32);
Ingo Molnar0a520c62009-06-02 23:24:45 +0200350 if (self->comm)
Peter Zijlstra82292892009-06-03 12:37:36 +0200351 snprintf(self->comm, 32, ":%d", self->pid);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300352 INIT_LIST_HEAD(&self->maps);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300353 }
354
355 return self;
356}
357
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300358static int thread__set_comm(struct thread *self, const char *comm)
359{
Peter Zijlstra82292892009-06-03 12:37:36 +0200360 if (self->comm)
361 free(self->comm);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300362 self->comm = strdup(comm);
363 return self->comm ? 0 : -ENOMEM;
364}
365
Arnaldo Carvalho de Melo9ac99542009-06-04 13:54:00 -0300366static size_t thread__fprintf(struct thread *self, FILE *fp)
367{
368 struct map *pos;
369 size_t ret = fprintf(fp, "Thread %d %s\n", self->pid, self->comm);
370
371 list_for_each_entry(pos, &self->maps, node)
372 ret += map__fprintf(pos, fp);
373
374 return ret;
375}
376
377
Ingo Molnar16f762a2009-05-27 09:10:38 +0200378static struct rb_root threads;
Ingo Molnareed4dcd2009-06-03 19:59:24 +0200379static struct thread *last_match;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300380
381static struct thread *threads__findnew(pid_t pid)
382{
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300383 struct rb_node **p = &threads.rb_node;
384 struct rb_node *parent = NULL;
385 struct thread *th;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300386
Ingo Molnareed4dcd2009-06-03 19:59:24 +0200387 /*
388 * Font-end cache - PID lookups come in blocks,
389 * so most of the time we dont have to look up
390 * the full rbtree:
391 */
392 if (last_match && last_match->pid == pid)
393 return last_match;
394
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300395 while (*p != NULL) {
396 parent = *p;
397 th = rb_entry(parent, struct thread, rb_node);
398
Ingo Molnareed4dcd2009-06-03 19:59:24 +0200399 if (th->pid == pid) {
400 last_match = th;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300401 return th;
Ingo Molnareed4dcd2009-06-03 19:59:24 +0200402 }
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300403
404 if (pid < th->pid)
405 p = &(*p)->rb_left;
406 else
407 p = &(*p)->rb_right;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300408 }
409
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300410 th = thread__new(pid);
411 if (th != NULL) {
412 rb_link_node(&th->rb_node, parent, p);
413 rb_insert_color(&th->rb_node, &threads);
Ingo Molnareed4dcd2009-06-03 19:59:24 +0200414 last_match = th;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300415 }
Ingo Molnareed4dcd2009-06-03 19:59:24 +0200416
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300417 return th;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300418}
419
420static void thread__insert_map(struct thread *self, struct map *map)
421{
Peter Zijlstra62fc4452009-06-04 16:53:49 +0200422 struct map *pos, *tmp;
423
424 list_for_each_entry_safe(pos, tmp, &self->maps, node) {
425 if (map__overlap(pos, map)) {
Peter Zijlstra3d906ef2009-06-23 11:23:07 +0200426 if (verbose >= 2) {
427 printf("overlapping maps:\n");
428 map__fprintf(map, stdout);
429 map__fprintf(pos, stdout);
430 }
431
432 if (map->start <= pos->start && map->end > pos->start)
433 pos->start = map->end;
434
435 if (map->end >= pos->end && map->start < pos->end)
436 pos->end = map->start;
437
438 if (verbose >= 2) {
439 printf("after collision:\n");
440 map__fprintf(pos, stdout);
441 }
442
443 if (pos->start >= pos->end) {
444 list_del_init(&pos->node);
445 free(pos);
446 }
Peter Zijlstra62fc4452009-06-04 16:53:49 +0200447 }
448 }
449
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300450 list_add_tail(&map->node, &self->maps);
451}
452
Peter Zijlstra62fc4452009-06-04 16:53:49 +0200453static int thread__fork(struct thread *self, struct thread *parent)
454{
455 struct map *map;
456
457 if (self->comm)
458 free(self->comm);
459 self->comm = strdup(parent->comm);
460 if (!self->comm)
461 return -ENOMEM;
462
463 list_for_each_entry(map, &parent->maps, node) {
464 struct map *new = map__clone(map);
465 if (!new)
466 return -ENOMEM;
467 thread__insert_map(self, new);
468 }
469
470 return 0;
471}
472
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000473static struct map *thread__find_map(struct thread *self, u64 ip)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300474{
Ingo Molnar16f762a2009-05-27 09:10:38 +0200475 struct map *pos;
476
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300477 if (self == NULL)
478 return NULL;
479
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300480 list_for_each_entry(pos, &self->maps, node)
481 if (ip >= pos->start && ip <= pos->end)
482 return pos;
483
484 return NULL;
485}
486
Arnaldo Carvalho de Melo9ac99542009-06-04 13:54:00 -0300487static size_t threads__fprintf(FILE *fp)
488{
489 size_t ret = 0;
490 struct rb_node *nd;
491
492 for (nd = rb_first(&threads); nd; nd = rb_next(nd)) {
493 struct thread *pos = rb_entry(nd, struct thread, rb_node);
494
495 ret += thread__fprintf(pos, fp);
496 }
497
498 return ret;
499}
500
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +0200501/*
502 * histogram, sorted on item, collects counts
503 */
504
505static struct rb_root hist;
506
507struct hist_entry {
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +0200508 struct rb_node rb_node;
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +0200509
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +0200510 struct thread *thread;
511 struct map *map;
512 struct dso *dso;
513 struct symbol *sym;
514 struct symbol *parent;
515 u64 ip;
516 char level;
517 struct callchain_node callchain;
518 struct rb_root sorted_chain;
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +0200519
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +0200520 u64 count;
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +0200521};
522
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200523/*
524 * configurable sorting bits
525 */
526
527struct sort_entry {
528 struct list_head list;
529
Peter Zijlstraca8cdee2009-05-28 11:08:33 +0200530 char *header;
531
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200532 int64_t (*cmp)(struct hist_entry *, struct hist_entry *);
Peter Zijlstra82292892009-06-03 12:37:36 +0200533 int64_t (*collapse)(struct hist_entry *, struct hist_entry *);
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200534 size_t (*print)(FILE *fp, struct hist_entry *);
535};
536
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200537static int64_t cmp_null(void *l, void *r)
538{
539 if (!l && !r)
540 return 0;
541 else if (!l)
542 return -1;
543 else
544 return 1;
545}
546
Peter Zijlstra82292892009-06-03 12:37:36 +0200547/* --sort pid */
548
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +0200549static int64_t
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200550sort__thread_cmp(struct hist_entry *left, struct hist_entry *right)
551{
552 return right->thread->pid - left->thread->pid;
553}
554
555static size_t
556sort__thread_print(FILE *fp, struct hist_entry *self)
557{
Peter Zijlstra71dd8942009-06-04 15:16:56 +0200558 return fprintf(fp, "%16s:%5d", self->thread->comm ?: "", self->thread->pid);
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200559}
560
561static struct sort_entry sort_thread = {
Peter Zijlstra71dd8942009-06-04 15:16:56 +0200562 .header = " Command: Pid",
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200563 .cmp = sort__thread_cmp,
564 .print = sort__thread_print,
565};
566
Peter Zijlstra82292892009-06-03 12:37:36 +0200567/* --sort comm */
568
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200569static int64_t
Peter Zijlstra992444b2009-05-27 20:20:27 +0200570sort__comm_cmp(struct hist_entry *left, struct hist_entry *right)
571{
Peter Zijlstra82292892009-06-03 12:37:36 +0200572 return right->thread->pid - left->thread->pid;
573}
574
575static int64_t
576sort__comm_collapse(struct hist_entry *left, struct hist_entry *right)
577{
Peter Zijlstra992444b2009-05-27 20:20:27 +0200578 char *comm_l = left->thread->comm;
579 char *comm_r = right->thread->comm;
580
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200581 if (!comm_l || !comm_r)
582 return cmp_null(comm_l, comm_r);
Peter Zijlstra992444b2009-05-27 20:20:27 +0200583
584 return strcmp(comm_l, comm_r);
585}
586
587static size_t
588sort__comm_print(FILE *fp, struct hist_entry *self)
589{
Peter Zijlstra71dd8942009-06-04 15:16:56 +0200590 return fprintf(fp, "%16s", self->thread->comm);
Peter Zijlstra992444b2009-05-27 20:20:27 +0200591}
592
593static struct sort_entry sort_comm = {
Ingo Molnar8edd4282009-06-05 14:13:18 +0200594 .header = " Command",
Peter Zijlstra82292892009-06-03 12:37:36 +0200595 .cmp = sort__comm_cmp,
596 .collapse = sort__comm_collapse,
597 .print = sort__comm_print,
Peter Zijlstra992444b2009-05-27 20:20:27 +0200598};
599
Peter Zijlstra82292892009-06-03 12:37:36 +0200600/* --sort dso */
601
Peter Zijlstra992444b2009-05-27 20:20:27 +0200602static int64_t
Peter Zijlstra55e5ec42009-05-27 20:20:28 +0200603sort__dso_cmp(struct hist_entry *left, struct hist_entry *right)
604{
605 struct dso *dso_l = left->dso;
606 struct dso *dso_r = right->dso;
607
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200608 if (!dso_l || !dso_r)
609 return cmp_null(dso_l, dso_r);
Peter Zijlstra55e5ec42009-05-27 20:20:28 +0200610
611 return strcmp(dso_l->name, dso_r->name);
612}
613
614static size_t
615sort__dso_print(FILE *fp, struct hist_entry *self)
616{
Ingo Molnar0a520c62009-06-02 23:24:45 +0200617 if (self->dso)
Peter Zijlstra71dd8942009-06-04 15:16:56 +0200618 return fprintf(fp, "%-25s", self->dso->name);
Ingo Molnar0a520c62009-06-02 23:24:45 +0200619
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000620 return fprintf(fp, "%016llx ", (u64)self->ip);
Peter Zijlstra55e5ec42009-05-27 20:20:28 +0200621}
622
623static struct sort_entry sort_dso = {
Peter Zijlstra71dd8942009-06-04 15:16:56 +0200624 .header = "Shared Object ",
Peter Zijlstra55e5ec42009-05-27 20:20:28 +0200625 .cmp = sort__dso_cmp,
626 .print = sort__dso_print,
627};
628
Peter Zijlstra82292892009-06-03 12:37:36 +0200629/* --sort symbol */
630
Peter Zijlstra55e5ec42009-05-27 20:20:28 +0200631static int64_t
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200632sort__sym_cmp(struct hist_entry *left, struct hist_entry *right)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300633{
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000634 u64 ip_l, ip_r;
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +0200635
636 if (left->sym == right->sym)
637 return 0;
638
639 ip_l = left->sym ? left->sym->start : left->ip;
640 ip_r = right->sym ? right->sym->start : right->ip;
641
642 return (int64_t)(ip_r - ip_l);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300643}
644
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200645static size_t
646sort__sym_print(FILE *fp, struct hist_entry *self)
647{
648 size_t ret = 0;
649
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200650 if (verbose)
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000651 ret += fprintf(fp, "%#018llx ", (u64)self->ip);
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200652
Ingo Molnar8edd4282009-06-05 14:13:18 +0200653 if (self->sym) {
654 ret += fprintf(fp, "[%c] %s",
Anton Blanchardfb9c8182009-07-01 09:00:49 +1000655 self->dso == kernel_dso ? 'k' :
656 self->dso == hypervisor_dso ? 'h' : '.', self->sym->name);
Mike Galbraith42976482009-07-02 08:09:46 +0200657
658 if (self->sym->module)
659 ret += fprintf(fp, "\t[%s]", self->sym->module->name);
Ingo Molnar8edd4282009-06-05 14:13:18 +0200660 } else {
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000661 ret += fprintf(fp, "%#016llx", (u64)self->ip);
Ingo Molnar8edd4282009-06-05 14:13:18 +0200662 }
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200663
664 return ret;
665}
666
667static struct sort_entry sort_sym = {
Peter Zijlstra71dd8942009-06-04 15:16:56 +0200668 .header = "Symbol",
Peter Zijlstraca8cdee2009-05-28 11:08:33 +0200669 .cmp = sort__sym_cmp,
670 .print = sort__sym_print,
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200671};
672
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200673/* --sort parent */
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200674
675static int64_t
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200676sort__parent_cmp(struct hist_entry *left, struct hist_entry *right)
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200677{
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200678 struct symbol *sym_l = left->parent;
679 struct symbol *sym_r = right->parent;
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200680
681 if (!sym_l || !sym_r)
682 return cmp_null(sym_l, sym_r);
683
684 return strcmp(sym_l->name, sym_r->name);
685}
686
687static size_t
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200688sort__parent_print(FILE *fp, struct hist_entry *self)
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200689{
690 size_t ret = 0;
691
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200692 ret += fprintf(fp, "%-20s", self->parent ? self->parent->name : "[other]");
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200693
694 return ret;
695}
696
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200697static struct sort_entry sort_parent = {
698 .header = "Parent symbol ",
699 .cmp = sort__parent_cmp,
700 .print = sort__parent_print,
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200701};
702
Peter Zijlstra82292892009-06-03 12:37:36 +0200703static int sort__need_collapse = 0;
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200704static int sort__has_parent = 0;
Peter Zijlstra82292892009-06-03 12:37:36 +0200705
Peter Zijlstra37f440c2009-05-27 20:20:26 +0200706struct sort_dimension {
Ingo Molnar8edd4282009-06-05 14:13:18 +0200707 char *name;
708 struct sort_entry *entry;
709 int taken;
Peter Zijlstra37f440c2009-05-27 20:20:26 +0200710};
711
712static struct sort_dimension sort_dimensions[] = {
713 { .name = "pid", .entry = &sort_thread, },
Peter Zijlstra992444b2009-05-27 20:20:27 +0200714 { .name = "comm", .entry = &sort_comm, },
Peter Zijlstra55e5ec42009-05-27 20:20:28 +0200715 { .name = "dso", .entry = &sort_dso, },
Peter Zijlstra37f440c2009-05-27 20:20:26 +0200716 { .name = "symbol", .entry = &sort_sym, },
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200717 { .name = "parent", .entry = &sort_parent, },
Peter Zijlstra37f440c2009-05-27 20:20:26 +0200718};
719
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200720static LIST_HEAD(hist_entry__sort_list);
721
Peter Zijlstra37f440c2009-05-27 20:20:26 +0200722static int sort_dimension__add(char *tok)
723{
Ingo Molnarf37a2912009-07-01 12:37:06 +0200724 unsigned int i;
Peter Zijlstra37f440c2009-05-27 20:20:26 +0200725
726 for (i = 0; i < ARRAY_SIZE(sort_dimensions); i++) {
727 struct sort_dimension *sd = &sort_dimensions[i];
728
729 if (sd->taken)
730 continue;
731
Ingo Molnar5352f352009-06-03 10:07:39 +0200732 if (strncasecmp(tok, sd->name, strlen(tok)))
Peter Zijlstra37f440c2009-05-27 20:20:26 +0200733 continue;
734
Peter Zijlstra82292892009-06-03 12:37:36 +0200735 if (sd->entry->collapse)
736 sort__need_collapse = 1;
737
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200738 if (sd->entry == &sort_parent) {
739 int ret = regcomp(&parent_regex, parent_pattern, REG_EXTENDED);
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200740 if (ret) {
741 char err[BUFSIZ];
742
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200743 regerror(ret, &parent_regex, err, sizeof(err));
744 fprintf(stderr, "Invalid regex: %s\n%s",
745 parent_pattern, err);
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200746 exit(-1);
747 }
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200748 sort__has_parent = 1;
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200749 }
750
Peter Zijlstra37f440c2009-05-27 20:20:26 +0200751 list_add_tail(&sd->entry->list, &hist_entry__sort_list);
752 sd->taken = 1;
Ingo Molnar5352f352009-06-03 10:07:39 +0200753
Peter Zijlstra37f440c2009-05-27 20:20:26 +0200754 return 0;
755 }
756
757 return -ESRCH;
758}
759
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200760static int64_t
761hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
762{
763 struct sort_entry *se;
764 int64_t cmp = 0;
765
766 list_for_each_entry(se, &hist_entry__sort_list, list) {
767 cmp = se->cmp(left, right);
768 if (cmp)
769 break;
770 }
771
772 return cmp;
773}
774
Peter Zijlstra82292892009-06-03 12:37:36 +0200775static int64_t
776hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
777{
778 struct sort_entry *se;
779 int64_t cmp = 0;
780
781 list_for_each_entry(se, &hist_entry__sort_list, list) {
782 int64_t (*f)(struct hist_entry *, struct hist_entry *);
783
784 f = se->collapse ?: se->cmp;
785
786 cmp = f(left, right);
787 if (cmp)
788 break;
789 }
790
791 return cmp;
792}
793
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200794static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask)
795{
796 int i;
797 size_t ret = 0;
798
799 ret += fprintf(fp, "%s", " ");
800
801 for (i = 0; i < depth; i++)
802 if (depth_mask & (1 << i))
803 ret += fprintf(fp, "| ");
804 else
805 ret += fprintf(fp, " ");
806
807 ret += fprintf(fp, "\n");
808
809 return ret;
810}
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200811static size_t
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200812ipchain__fprintf_graph(FILE *fp, struct callchain_list *chain, int depth,
813 int depth_mask, int count, u64 total_samples,
814 int hits)
815{
816 int i;
817 size_t ret = 0;
818
819 ret += fprintf(fp, "%s", " ");
820 for (i = 0; i < depth; i++) {
821 if (depth_mask & (1 << i))
822 ret += fprintf(fp, "|");
823 else
824 ret += fprintf(fp, " ");
825 if (!count && i == depth - 1) {
826 double percent;
827
828 percent = hits * 100.0 / total_samples;
Frederic Weisbecker24b57c62009-07-02 20:14:35 +0200829 ret += percent_color_fprintf(fp, "--%2.2f%%-- ", percent);
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200830 } else
831 ret += fprintf(fp, "%s", " ");
832 }
833 if (chain->sym)
834 ret += fprintf(fp, "%s\n", chain->sym->name);
835 else
836 ret += fprintf(fp, "%p\n", (void *)(long)chain->ip);
837
838 return ret;
839}
840
841static size_t
842callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
843 u64 total_samples, int depth, int depth_mask)
844{
845 struct rb_node *node, *next;
846 struct callchain_node *child;
847 struct callchain_list *chain;
848 int new_depth_mask = depth_mask;
849 size_t ret = 0;
850 int i;
851
852 node = rb_first(&self->rb_root);
853 while (node) {
854 child = rb_entry(node, struct callchain_node, rb_node);
855
856 /*
857 * The depth mask manages the output of pipes that show
858 * the depth. We don't want to keep the pipes of the current
859 * level for the last child of this depth
860 */
861 next = rb_next(node);
862 if (!next)
863 new_depth_mask &= ~(1 << (depth - 1));
864
865 /*
866 * But we keep the older depth mask for the line seperator
867 * to keep the level link until we reach the last child
868 */
869 ret += ipchain__fprintf_graph_line(fp, depth, depth_mask);
870 i = 0;
871 list_for_each_entry(chain, &child->val, list) {
872 if (chain->ip >= PERF_CONTEXT_MAX)
873 continue;
874 ret += ipchain__fprintf_graph(fp, chain, depth,
875 new_depth_mask, i++,
876 total_samples,
877 child->cumul_hit);
878 }
879 ret += callchain__fprintf_graph(fp, child, total_samples,
880 depth + 1,
881 new_depth_mask | (1 << depth));
882 node = next;
883 }
884
885 return ret;
886}
887
888static size_t
889callchain__fprintf_flat(FILE *fp, struct callchain_node *self,
890 u64 total_samples)
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +0200891{
892 struct callchain_list *chain;
893 size_t ret = 0;
894
895 if (!self)
896 return 0;
897
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200898 ret += callchain__fprintf_flat(fp, self->parent, total_samples);
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +0200899
900
Frederic Weisbecker44249612009-07-01 05:35:14 +0200901 list_for_each_entry(chain, &self->val, list) {
902 if (chain->ip >= PERF_CONTEXT_MAX)
903 continue;
904 if (chain->sym)
905 ret += fprintf(fp, " %s\n", chain->sym->name);
906 else
907 ret += fprintf(fp, " %p\n",
Ingo Molnarf37a2912009-07-01 12:37:06 +0200908 (void *)(long)chain->ip);
Frederic Weisbecker44249612009-07-01 05:35:14 +0200909 }
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +0200910
911 return ret;
912}
913
914static size_t
915hist_entry_callchain__fprintf(FILE *fp, struct hist_entry *self,
916 u64 total_samples)
917{
918 struct rb_node *rb_node;
919 struct callchain_node *chain;
920 size_t ret = 0;
921
922 rb_node = rb_first(&self->sorted_chain);
923 while (rb_node) {
924 double percent;
925
926 chain = rb_entry(rb_node, struct callchain_node, rb_node);
927 percent = chain->hit * 100.0 / total_samples;
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200928 if (callchain_mode == FLAT) {
Frederic Weisbecker24b57c62009-07-02 20:14:35 +0200929 ret += percent_color_fprintf(fp, " %6.2f%%\n",
930 percent);
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200931 ret += callchain__fprintf_flat(fp, chain, total_samples);
932 } else if (callchain_mode == GRAPH) {
933 ret += callchain__fprintf_graph(fp, chain,
934 total_samples, 1, 1);
935 }
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +0200936 ret += fprintf(fp, "\n");
937 rb_node = rb_next(rb_node);
938 }
939
940 return ret;
941}
942
943
944static size_t
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000945hist_entry__fprintf(FILE *fp, struct hist_entry *self, u64 total_samples)
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200946{
947 struct sort_entry *se;
948 size_t ret;
949
Ingo Molnarb8e6d822009-06-18 14:32:19 +0200950 if (exclude_other && !self->parent)
951 return 0;
952
Frederic Weisbecker1e11fd82009-07-02 20:14:34 +0200953 if (total_samples)
954 ret = percent_color_fprintf(fp, " %6.2f%%",
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200955 (self->count * 100.0) / total_samples);
Frederic Weisbecker1e11fd82009-07-02 20:14:34 +0200956 else
Ingo Molnar729ff5e22009-06-11 14:16:15 +0200957 ret = fprintf(fp, "%12Ld ", self->count);
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200958
Peter Zijlstra71dd8942009-06-04 15:16:56 +0200959 list_for_each_entry(se, &hist_entry__sort_list, list) {
Ingo Molnarb8e6d822009-06-18 14:32:19 +0200960 if (exclude_other && (se == &sort_parent))
961 continue;
962
Peter Zijlstra71dd8942009-06-04 15:16:56 +0200963 fprintf(fp, " ");
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200964 ret += se->print(fp, self);
Peter Zijlstra71dd8942009-06-04 15:16:56 +0200965 }
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200966
967 ret += fprintf(fp, "\n");
968
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +0200969 if (callchain)
970 hist_entry_callchain__fprintf(fp, self, total_samples);
971
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200972 return ret;
973}
974
975/*
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200976 *
977 */
978
979static struct symbol *
980resolve_symbol(struct thread *thread, struct map **mapp,
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000981 struct dso **dsop, u64 *ipp)
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200982{
983 struct dso *dso = dsop ? *dsop : NULL;
984 struct map *map = mapp ? *mapp : NULL;
Peter Zijlstra520f2c32009-06-22 16:52:51 +0200985 u64 ip = *ipp;
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +0200986
987 if (!thread)
988 return NULL;
989
990 if (dso)
991 goto got_dso;
992
993 if (map)
994 goto got_map;
995
996 map = thread__find_map(thread, ip);
997 if (map != NULL) {
998 if (mapp)
999 *mapp = map;
1000got_map:
1001 ip = map->map_ip(map, ip);
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +02001002
1003 dso = map->dso;
1004 } else {
1005 /*
1006 * If this is outside of all known maps,
1007 * and is a negative address, try to look it
1008 * up in the kernel dso, as it might be a
1009 * vsyscall (which executes in user-mode):
1010 */
1011 if ((long long)ip < 0)
1012 dso = kernel_dso;
1013 }
1014 dprintf(" ...... dso: %s\n", dso ? dso->name : "<not found>");
Peter Zijlstra520f2c32009-06-22 16:52:51 +02001015 dprintf(" ...... map: %Lx -> %Lx\n", *ipp, ip);
1016 *ipp = ip;
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +02001017
1018 if (dsop)
1019 *dsop = dso;
1020
1021 if (!dso)
1022 return NULL;
1023got_dso:
1024 return dso->find_symbol(dso, ip);
1025}
1026
Peter Zijlstra2a0a50f2009-06-18 22:20:45 +02001027static int call__match(struct symbol *sym)
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +02001028{
Ingo Molnarb25bcf22009-06-18 07:01:03 +02001029 if (sym->name && !regexec(&parent_regex, sym->name, 0, NULL, 0))
Peter Zijlstra2a0a50f2009-06-18 22:20:45 +02001030 return 1;
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +02001031
Peter Zijlstra2a0a50f2009-06-18 22:20:45 +02001032 return 0;
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +02001033}
1034
Frederic Weisbecker44249612009-07-01 05:35:14 +02001035static struct symbol **
Ingo Molnarf37a2912009-07-01 12:37:06 +02001036resolve_callchain(struct thread *thread, struct map *map __used,
Frederic Weisbecker44249612009-07-01 05:35:14 +02001037 struct ip_callchain *chain, struct hist_entry *entry)
1038{
Frederic Weisbecker44249612009-07-01 05:35:14 +02001039 u64 context = PERF_CONTEXT_MAX;
Ingo Molnar029e5b12009-07-03 13:17:28 +02001040 struct symbol **syms = NULL;
Ingo Molnarf37a2912009-07-01 12:37:06 +02001041 unsigned int i;
Frederic Weisbecker44249612009-07-01 05:35:14 +02001042
1043 if (callchain) {
1044 syms = calloc(chain->nr, sizeof(*syms));
1045 if (!syms) {
1046 fprintf(stderr, "Can't allocate memory for symbols\n");
1047 exit(-1);
1048 }
1049 }
1050
1051 for (i = 0; i < chain->nr; i++) {
1052 u64 ip = chain->ips[i];
1053 struct dso *dso = NULL;
1054 struct symbol *sym;
1055
1056 if (ip >= PERF_CONTEXT_MAX) {
1057 context = ip;
1058 continue;
1059 }
1060
1061 switch (context) {
Ingo Molnar88a69df2009-07-01 11:17:20 +02001062 case PERF_CONTEXT_HV:
1063 dso = hypervisor_dso;
1064 break;
Frederic Weisbecker44249612009-07-01 05:35:14 +02001065 case PERF_CONTEXT_KERNEL:
1066 dso = kernel_dso;
1067 break;
1068 default:
1069 break;
1070 }
1071
1072 sym = resolve_symbol(thread, NULL, &dso, &ip);
1073
1074 if (sym) {
1075 if (sort__has_parent && call__match(sym) &&
1076 !entry->parent)
1077 entry->parent = sym;
1078 if (!callchain)
1079 break;
1080 syms[i] = sym;
1081 }
1082 }
1083
1084 return syms;
1085}
1086
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +02001087/*
Peter Zijlstra1aa16732009-05-27 20:20:25 +02001088 * collect histogram counts
1089 */
1090
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001091static int
1092hist_entry__add(struct thread *thread, struct map *map, struct dso *dso,
Paul Mackerras9cffa8d2009-06-19 22:21:42 +10001093 struct symbol *sym, u64 ip, struct ip_callchain *chain,
1094 char level, u64 count)
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -03001095{
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001096 struct rb_node **p = &hist.rb_node;
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -03001097 struct rb_node *parent = NULL;
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001098 struct hist_entry *he;
Frederic Weisbecker44249612009-07-01 05:35:14 +02001099 struct symbol **syms = NULL;
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001100 struct hist_entry entry = {
1101 .thread = thread,
1102 .map = map,
1103 .dso = dso,
1104 .sym = sym,
1105 .ip = ip,
1106 .level = level,
Peter Zijlstraea1900e2009-06-10 21:45:22 +02001107 .count = count,
Ingo Molnarb8e6d822009-06-18 14:32:19 +02001108 .parent = NULL,
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +02001109 .sorted_chain = RB_ROOT
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001110 };
1111 int cmp;
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -03001112
Frederic Weisbecker44249612009-07-01 05:35:14 +02001113 if ((sort__has_parent || callchain) && chain)
1114 syms = resolve_callchain(thread, map, chain, &entry);
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +02001115
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -03001116 while (*p != NULL) {
1117 parent = *p;
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001118 he = rb_entry(parent, struct hist_entry, rb_node);
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -03001119
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001120 cmp = hist_entry__cmp(&entry, he);
1121
1122 if (!cmp) {
Peter Zijlstraea1900e2009-06-10 21:45:22 +02001123 he->count += count;
Frederic Weisbecker44249612009-07-01 05:35:14 +02001124 if (callchain) {
1125 append_chain(&he->callchain, chain, syms);
1126 free(syms);
1127 }
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001128 return 0;
1129 }
1130
1131 if (cmp < 0)
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -03001132 p = &(*p)->rb_left;
1133 else
1134 p = &(*p)->rb_right;
1135 }
1136
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001137 he = malloc(sizeof(*he));
1138 if (!he)
1139 return -ENOMEM;
1140 *he = entry;
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +02001141 if (callchain) {
1142 callchain_init(&he->callchain);
Frederic Weisbecker44249612009-07-01 05:35:14 +02001143 append_chain(&he->callchain, chain, syms);
1144 free(syms);
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +02001145 }
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001146 rb_link_node(&he->rb_node, parent, p);
1147 rb_insert_color(&he->rb_node, &hist);
1148
1149 return 0;
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -03001150}
1151
Peter Zijlstra82292892009-06-03 12:37:36 +02001152static void hist_entry__free(struct hist_entry *he)
1153{
1154 free(he);
1155}
1156
1157/*
1158 * collapse the histogram
1159 */
1160
1161static struct rb_root collapse_hists;
1162
1163static void collapse__insert_entry(struct hist_entry *he)
1164{
1165 struct rb_node **p = &collapse_hists.rb_node;
1166 struct rb_node *parent = NULL;
1167 struct hist_entry *iter;
1168 int64_t cmp;
1169
1170 while (*p != NULL) {
1171 parent = *p;
1172 iter = rb_entry(parent, struct hist_entry, rb_node);
1173
1174 cmp = hist_entry__collapse(iter, he);
1175
1176 if (!cmp) {
1177 iter->count += he->count;
1178 hist_entry__free(he);
1179 return;
1180 }
1181
1182 if (cmp < 0)
1183 p = &(*p)->rb_left;
1184 else
1185 p = &(*p)->rb_right;
1186 }
1187
1188 rb_link_node(&he->rb_node, parent, p);
1189 rb_insert_color(&he->rb_node, &collapse_hists);
1190}
1191
1192static void collapse__resort(void)
1193{
1194 struct rb_node *next;
1195 struct hist_entry *n;
1196
1197 if (!sort__need_collapse)
1198 return;
1199
1200 next = rb_first(&hist);
1201 while (next) {
1202 n = rb_entry(next, struct hist_entry, rb_node);
1203 next = rb_next(&n->rb_node);
1204
1205 rb_erase(&n->rb_node, &hist);
1206 collapse__insert_entry(n);
1207 }
1208}
1209
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001210/*
1211 * reverse the map, sort on count.
1212 */
1213
1214static struct rb_root output_hists;
1215
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +02001216static void output__insert_entry(struct hist_entry *he, u64 min_callchain_hits)
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001217{
1218 struct rb_node **p = &output_hists.rb_node;
1219 struct rb_node *parent = NULL;
1220 struct hist_entry *iter;
1221
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +02001222 if (callchain) {
1223 if (callchain_mode == FLAT)
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +02001224 sort_chain_flat(&he->sorted_chain, &he->callchain,
1225 min_callchain_hits);
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +02001226 else if (callchain_mode == GRAPH)
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +02001227 sort_chain_graph(&he->sorted_chain, &he->callchain,
1228 min_callchain_hits);
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +02001229 }
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +02001230
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001231 while (*p != NULL) {
1232 parent = *p;
1233 iter = rb_entry(parent, struct hist_entry, rb_node);
1234
1235 if (he->count > iter->count)
1236 p = &(*p)->rb_left;
1237 else
1238 p = &(*p)->rb_right;
1239 }
1240
1241 rb_link_node(&he->rb_node, parent, p);
1242 rb_insert_color(&he->rb_node, &output_hists);
1243}
1244
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +02001245static void output__resort(u64 total_samples)
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001246{
Peter Zijlstra82292892009-06-03 12:37:36 +02001247 struct rb_node *next;
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001248 struct hist_entry *n;
Arnaldo Carvalho de Meloa4c43be2009-06-03 23:02:33 -03001249 struct rb_root *tree = &hist;
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +02001250 u64 min_callchain_hits;
1251
1252 min_callchain_hits = total_samples * (callchain_min_percent / 100);
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001253
Peter Zijlstra82292892009-06-03 12:37:36 +02001254 if (sort__need_collapse)
Arnaldo Carvalho de Meloa4c43be2009-06-03 23:02:33 -03001255 tree = &collapse_hists;
1256
1257 next = rb_first(tree);
Peter Zijlstra82292892009-06-03 12:37:36 +02001258
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001259 while (next) {
1260 n = rb_entry(next, struct hist_entry, rb_node);
1261 next = rb_next(&n->rb_node);
1262
Arnaldo Carvalho de Meloa4c43be2009-06-03 23:02:33 -03001263 rb_erase(&n->rb_node, tree);
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +02001264 output__insert_entry(n, min_callchain_hits);
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -03001265 }
1266}
1267
Paul Mackerras9cffa8d2009-06-19 22:21:42 +10001268static size_t output__fprintf(FILE *fp, u64 total_samples)
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -03001269{
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001270 struct hist_entry *pos;
Ingo Molnar2d655372009-05-27 21:36:22 +02001271 struct sort_entry *se;
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -03001272 struct rb_node *nd;
1273 size_t ret = 0;
1274
Peter Zijlstra71dd8942009-06-04 15:16:56 +02001275 fprintf(fp, "\n");
Peter Zijlstraca8cdee2009-05-28 11:08:33 +02001276 fprintf(fp, "#\n");
Paul Mackerras9cffa8d2009-06-19 22:21:42 +10001277 fprintf(fp, "# (%Ld samples)\n", (u64)total_samples);
Ingo Molnar05ca0612009-06-04 14:21:16 +02001278 fprintf(fp, "#\n");
Peter Zijlstraca8cdee2009-05-28 11:08:33 +02001279
1280 fprintf(fp, "# Overhead");
Ingo Molnarb8e6d822009-06-18 14:32:19 +02001281 list_for_each_entry(se, &hist_entry__sort_list, list) {
1282 if (exclude_other && (se == &sort_parent))
1283 continue;
Peter Zijlstra71dd8942009-06-04 15:16:56 +02001284 fprintf(fp, " %s", se->header);
Ingo Molnarb8e6d822009-06-18 14:32:19 +02001285 }
Peter Zijlstraca8cdee2009-05-28 11:08:33 +02001286 fprintf(fp, "\n");
1287
1288 fprintf(fp, "# ........");
Ingo Molnar2d655372009-05-27 21:36:22 +02001289 list_for_each_entry(se, &hist_entry__sort_list, list) {
Ingo Molnarf37a2912009-07-01 12:37:06 +02001290 unsigned int i;
Peter Zijlstraca8cdee2009-05-28 11:08:33 +02001291
Ingo Molnarb8e6d822009-06-18 14:32:19 +02001292 if (exclude_other && (se == &sort_parent))
1293 continue;
1294
Ingo Molnar4593bba2009-06-02 15:34:25 +02001295 fprintf(fp, " ");
Peter Zijlstra71dd8942009-06-04 15:16:56 +02001296 for (i = 0; i < strlen(se->header); i++)
Peter Zijlstraca8cdee2009-05-28 11:08:33 +02001297 fprintf(fp, ".");
Ingo Molnar2d655372009-05-27 21:36:22 +02001298 }
Peter Zijlstraca8cdee2009-05-28 11:08:33 +02001299 fprintf(fp, "\n");
1300
1301 fprintf(fp, "#\n");
Ingo Molnar2d655372009-05-27 21:36:22 +02001302
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001303 for (nd = rb_first(&output_hists); nd; nd = rb_next(nd)) {
1304 pos = rb_entry(nd, struct hist_entry, rb_node);
1305 ret += hist_entry__fprintf(fp, pos, total_samples);
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -03001306 }
1307
Ingo Molnarb8e6d822009-06-18 14:32:19 +02001308 if (sort_order == default_sort_order &&
1309 parent_pattern == default_parent_pattern) {
Ingo Molnarbd741372009-06-04 14:13:04 +02001310 fprintf(fp, "#\n");
Peter Zijlstra71dd8942009-06-04 15:16:56 +02001311 fprintf(fp, "# (For more details, try: perf report --sort comm,dso,symbol)\n");
Ingo Molnarbd741372009-06-04 14:13:04 +02001312 fprintf(fp, "#\n");
1313 }
Peter Zijlstra71dd8942009-06-04 15:16:56 +02001314 fprintf(fp, "\n");
Ingo Molnarbd741372009-06-04 14:13:04 +02001315
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -03001316 return ret;
1317}
1318
Peter Zijlstra436224a2009-06-02 21:02:36 +02001319static void register_idle_thread(void)
1320{
1321 struct thread *thread = threads__findnew(0);
1322
1323 if (thread == NULL ||
1324 thread__set_comm(thread, "[idle]")) {
1325 fprintf(stderr, "problem inserting idle task.\n");
1326 exit(-1);
1327 }
1328}
1329
Peter Zijlstra62fc4452009-06-04 16:53:49 +02001330static unsigned long total = 0,
1331 total_mmap = 0,
1332 total_comm = 0,
1333 total_fork = 0,
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +02001334 total_unknown = 0,
1335 total_lost = 0;
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001336
Peter Zijlstra2a0a50f2009-06-18 22:20:45 +02001337static int validate_chain(struct ip_callchain *chain, event_t *event)
Ingo Molnar75220602009-06-18 08:00:17 +02001338{
1339 unsigned int chain_size;
1340
Ingo Molnar75220602009-06-18 08:00:17 +02001341 chain_size = event->header.size;
1342 chain_size -= (unsigned long)&event->ip.__more_data - (unsigned long)event;
1343
Paul Mackerras9cffa8d2009-06-19 22:21:42 +10001344 if (chain->nr*sizeof(u64) > chain_size)
Ingo Molnar75220602009-06-18 08:00:17 +02001345 return -1;
1346
1347 return 0;
1348}
1349
Ingo Molnard80d3382009-06-03 23:14:49 +02001350static int
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02001351process_sample_event(event_t *event, unsigned long offset, unsigned long head)
Ingo Molnar75051722009-06-03 23:14:49 +02001352{
1353 char level;
1354 int show = 0;
1355 struct dso *dso = NULL;
1356 struct thread *thread = threads__findnew(event->ip.pid);
Paul Mackerras9cffa8d2009-06-19 22:21:42 +10001357 u64 ip = event->ip.ip;
1358 u64 period = 1;
Ingo Molnar75051722009-06-03 23:14:49 +02001359 struct map *map = NULL;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001360 void *more_data = event->ip.__more_data;
Peter Zijlstra2a0a50f2009-06-18 22:20:45 +02001361 struct ip_callchain *chain = NULL;
Anton Blanchardd8db1b52009-07-01 09:00:48 +10001362 int cpumode;
Ingo Molnar75051722009-06-03 23:14:49 +02001363
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02001364 if (sample_type & PERF_SAMPLE_PERIOD) {
Paul Mackerras9cffa8d2009-06-19 22:21:42 +10001365 period = *(u64 *)more_data;
1366 more_data += sizeof(u64);
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001367 }
Peter Zijlstraea1900e2009-06-10 21:45:22 +02001368
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02001369 dprintf("%p [%p]: PERF_EVENT_SAMPLE (IP, %d): %d: %p period: %Ld\n",
Ingo Molnar75051722009-06-03 23:14:49 +02001370 (void *)(offset + head),
1371 (void *)(long)(event->header.size),
1372 event->header.misc,
1373 event->ip.pid,
Peter Zijlstra4502d772009-06-10 15:03:06 +02001374 (void *)(long)ip,
Peter Zijlstraea1900e2009-06-10 21:45:22 +02001375 (long long)period);
Ingo Molnar75051722009-06-03 23:14:49 +02001376
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02001377 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Ingo Molnarf37a2912009-07-01 12:37:06 +02001378 unsigned int i;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001379
1380 chain = (void *)more_data;
1381
Peter Zijlstra2a0a50f2009-06-18 22:20:45 +02001382 dprintf("... chain: nr:%Lu\n", chain->nr);
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001383
Ingo Molnar75220602009-06-18 08:00:17 +02001384 if (validate_chain(chain, event) < 0) {
1385 eprintf("call-chain problem with event, skipping it.\n");
1386 return 0;
1387 }
1388
1389 if (dump_trace) {
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001390 for (i = 0; i < chain->nr; i++)
Peter Zijlstra2a0a50f2009-06-18 22:20:45 +02001391 dprintf("..... %2d: %016Lx\n", i, chain->ips[i]);
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001392 }
1393 }
1394
Ingo Molnar75051722009-06-03 23:14:49 +02001395 dprintf(" ... thread: %s:%d\n", thread->comm, thread->pid);
1396
1397 if (thread == NULL) {
Ingo Molnar75220602009-06-18 08:00:17 +02001398 eprintf("problem processing %d event, skipping it.\n",
Ingo Molnar75051722009-06-03 23:14:49 +02001399 event->header.type);
1400 return -1;
1401 }
1402
Arnaldo Carvalho de Melocc8b88b2009-06-30 19:01:21 -03001403 if (comm_list && !strlist__has_entry(comm_list, thread->comm))
1404 return 0;
1405
Anton Blanchardd8db1b52009-07-01 09:00:48 +10001406 cpumode = event->header.misc & PERF_EVENT_MISC_CPUMODE_MASK;
1407
1408 if (cpumode == PERF_EVENT_MISC_KERNEL) {
Ingo Molnar75051722009-06-03 23:14:49 +02001409 show = SHOW_KERNEL;
1410 level = 'k';
1411
1412 dso = kernel_dso;
1413
1414 dprintf(" ...... dso: %s\n", dso->name);
1415
Anton Blanchardd8db1b52009-07-01 09:00:48 +10001416 } else if (cpumode == PERF_EVENT_MISC_USER) {
Ingo Molnar75051722009-06-03 23:14:49 +02001417
1418 show = SHOW_USER;
1419 level = '.';
1420
Ingo Molnar75051722009-06-03 23:14:49 +02001421 } else {
1422 show = SHOW_HV;
1423 level = 'H';
Anton Blanchardfb9c8182009-07-01 09:00:49 +10001424
1425 dso = hypervisor_dso;
1426
Ingo Molnar75051722009-06-03 23:14:49 +02001427 dprintf(" ...... dso: [hypervisor]\n");
1428 }
1429
1430 if (show & show_mask) {
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +02001431 struct symbol *sym = resolve_symbol(thread, &map, &dso, &ip);
Peter Zijlstrafc54db52009-06-05 14:04:59 +02001432
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -03001433 if (dso_list && dso && dso->name && !strlist__has_entry(dso_list, dso->name))
1434 return 0;
1435
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -03001436 if (sym_list && sym && !strlist__has_entry(sym_list, sym->name))
1437 return 0;
1438
Peter Zijlstra6e7d6fd2009-06-17 15:51:44 +02001439 if (hist_entry__add(thread, map, dso, sym, ip, chain, level, period)) {
Ingo Molnar75220602009-06-18 08:00:17 +02001440 eprintf("problem incrementing symbol count, skipping event\n");
Ingo Molnar75051722009-06-03 23:14:49 +02001441 return -1;
1442 }
1443 }
Peter Zijlstraea1900e2009-06-10 21:45:22 +02001444 total += period;
Ingo Molnar75051722009-06-03 23:14:49 +02001445
1446 return 0;
1447}
1448
1449static int
1450process_mmap_event(event_t *event, unsigned long offset, unsigned long head)
1451{
1452 struct thread *thread = threads__findnew(event->mmap.pid);
1453 struct map *map = map__new(&event->mmap);
1454
Peter Zijlstra62fc4452009-06-04 16:53:49 +02001455 dprintf("%p [%p]: PERF_EVENT_MMAP %d: [%p(%p) @ %p]: %s\n",
Ingo Molnar75051722009-06-03 23:14:49 +02001456 (void *)(offset + head),
1457 (void *)(long)(event->header.size),
Peter Zijlstra62fc4452009-06-04 16:53:49 +02001458 event->mmap.pid,
Ingo Molnar75051722009-06-03 23:14:49 +02001459 (void *)(long)event->mmap.start,
1460 (void *)(long)event->mmap.len,
1461 (void *)(long)event->mmap.pgoff,
1462 event->mmap.filename);
1463
1464 if (thread == NULL || map == NULL) {
1465 dprintf("problem processing PERF_EVENT_MMAP, skipping event.\n");
Ingo Molnardf979922009-06-04 13:41:22 +02001466 return 0;
Ingo Molnar75051722009-06-03 23:14:49 +02001467 }
1468
1469 thread__insert_map(thread, map);
1470 total_mmap++;
1471
1472 return 0;
1473}
1474
1475static int
1476process_comm_event(event_t *event, unsigned long offset, unsigned long head)
1477{
1478 struct thread *thread = threads__findnew(event->comm.pid);
1479
1480 dprintf("%p [%p]: PERF_EVENT_COMM: %s:%d\n",
1481 (void *)(offset + head),
1482 (void *)(long)(event->header.size),
1483 event->comm.comm, event->comm.pid);
1484
1485 if (thread == NULL ||
1486 thread__set_comm(thread, event->comm.comm)) {
1487 dprintf("problem processing PERF_EVENT_COMM, skipping event.\n");
1488 return -1;
1489 }
1490 total_comm++;
1491
1492 return 0;
1493}
1494
1495static int
Peter Zijlstra62fc4452009-06-04 16:53:49 +02001496process_fork_event(event_t *event, unsigned long offset, unsigned long head)
1497{
1498 struct thread *thread = threads__findnew(event->fork.pid);
1499 struct thread *parent = threads__findnew(event->fork.ppid);
1500
1501 dprintf("%p [%p]: PERF_EVENT_FORK: %d:%d\n",
1502 (void *)(offset + head),
1503 (void *)(long)(event->header.size),
1504 event->fork.pid, event->fork.ppid);
1505
1506 if (!thread || !parent || thread__fork(thread, parent)) {
1507 dprintf("problem processing PERF_EVENT_FORK, skipping event.\n");
1508 return -1;
1509 }
1510 total_fork++;
1511
1512 return 0;
1513}
1514
1515static int
Ingo Molnarb2fef072009-06-05 18:07:51 +02001516process_period_event(event_t *event, unsigned long offset, unsigned long head)
1517{
1518 dprintf("%p [%p]: PERF_EVENT_PERIOD: time:%Ld, id:%Ld: period:%Ld\n",
1519 (void *)(offset + head),
1520 (void *)(long)(event->header.size),
1521 event->period.time,
1522 event->period.id,
1523 event->period.sample_period);
1524
1525 return 0;
1526}
1527
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +02001528static int
1529process_lost_event(event_t *event, unsigned long offset, unsigned long head)
1530{
1531 dprintf("%p [%p]: PERF_EVENT_LOST: id:%Ld: lost:%Ld\n",
1532 (void *)(offset + head),
1533 (void *)(long)(event->header.size),
1534 event->lost.id,
1535 event->lost.lost);
1536
1537 total_lost += event->lost.lost;
1538
1539 return 0;
1540}
1541
Ingo Molnar8465b052009-06-14 14:44:07 +02001542static void trace_event(event_t *event)
1543{
1544 unsigned char *raw_event = (void *)event;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001545 char *color = PERF_COLOR_BLUE;
Ingo Molnar8465b052009-06-14 14:44:07 +02001546 int i, j;
1547
1548 if (!dump_trace)
1549 return;
1550
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001551 dprintf(".");
1552 cdprintf("\n. ... raw event: size %d bytes\n", event->header.size);
Ingo Molnar8465b052009-06-14 14:44:07 +02001553
1554 for (i = 0; i < event->header.size; i++) {
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001555 if ((i & 15) == 0) {
1556 dprintf(".");
1557 cdprintf(" %04x: ", i);
1558 }
Ingo Molnar8465b052009-06-14 14:44:07 +02001559
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001560 cdprintf(" %02x", raw_event[i]);
Ingo Molnar8465b052009-06-14 14:44:07 +02001561
1562 if (((i & 15) == 15) || i == event->header.size-1) {
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001563 cdprintf(" ");
Ingo Molnar8465b052009-06-14 14:44:07 +02001564 for (j = 0; j < 15-(i & 15); j++)
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001565 cdprintf(" ");
Ingo Molnar8465b052009-06-14 14:44:07 +02001566 for (j = 0; j < (i & 15); j++) {
Peter Zijlstraa73c7d82009-06-18 09:44:20 +02001567 if (isprint(raw_event[i-15+j]))
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001568 cdprintf("%c", raw_event[i-15+j]);
Ingo Molnar8465b052009-06-14 14:44:07 +02001569 else
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001570 cdprintf(".");
Ingo Molnar8465b052009-06-14 14:44:07 +02001571 }
Ingo Molnar3efa1cc92009-06-14 15:04:15 +02001572 cdprintf("\n");
Ingo Molnar8465b052009-06-14 14:44:07 +02001573 }
1574 }
1575 dprintf(".\n");
1576}
1577
Ingo Molnarb2fef072009-06-05 18:07:51 +02001578static int
Peter Zijlstrae9ea2fd2009-06-24 22:46:04 +02001579process_read_event(event_t *event, unsigned long offset, unsigned long head)
1580{
1581 dprintf("%p [%p]: PERF_EVENT_READ: %d %d %Lu\n",
1582 (void *)(offset + head),
1583 (void *)(long)(event->header.size),
1584 event->read.pid,
1585 event->read.tid,
1586 event->read.value);
1587
1588 return 0;
1589}
1590
1591static int
Ingo Molnard80d3382009-06-03 23:14:49 +02001592process_event(event_t *event, unsigned long offset, unsigned long head)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -03001593{
Ingo Molnar8465b052009-06-14 14:44:07 +02001594 trace_event(event);
1595
Ingo Molnar75051722009-06-03 23:14:49 +02001596 switch (event->header.type) {
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02001597 case PERF_EVENT_SAMPLE:
1598 return process_sample_event(event, offset, head);
1599
Ingo Molnar75051722009-06-03 23:14:49 +02001600 case PERF_EVENT_MMAP:
1601 return process_mmap_event(event, offset, head);
Ingo Molnar97b07b62009-05-26 18:48:58 +02001602
Ingo Molnar75051722009-06-03 23:14:49 +02001603 case PERF_EVENT_COMM:
1604 return process_comm_event(event, offset, head);
Ingo Molnared966aa2009-06-03 10:39:26 +02001605
Peter Zijlstra62fc4452009-06-04 16:53:49 +02001606 case PERF_EVENT_FORK:
1607 return process_fork_event(event, offset, head);
1608
Ingo Molnarb2fef072009-06-05 18:07:51 +02001609 case PERF_EVENT_PERIOD:
1610 return process_period_event(event, offset, head);
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +02001611
1612 case PERF_EVENT_LOST:
1613 return process_lost_event(event, offset, head);
1614
Peter Zijlstrae9ea2fd2009-06-24 22:46:04 +02001615 case PERF_EVENT_READ:
1616 return process_read_event(event, offset, head);
1617
Ingo Molnard11444d2009-06-03 23:29:14 +02001618 /*
1619 * We dont process them right now but they are fine:
1620 */
Peter Zijlstra62fc4452009-06-04 16:53:49 +02001621
Ingo Molnard11444d2009-06-03 23:29:14 +02001622 case PERF_EVENT_THROTTLE:
1623 case PERF_EVENT_UNTHROTTLE:
1624 return 0;
1625
Ingo Molnard80d3382009-06-03 23:14:49 +02001626 default:
1627 return -1;
1628 }
1629
1630 return 0;
1631}
1632
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02001633static struct perf_header *header;
1634
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02001635static u64 perf_header__sample_type(void)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02001636{
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02001637 u64 sample_type = 0;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02001638 int i;
1639
1640 for (i = 0; i < header->attrs; i++) {
1641 struct perf_header_attr *attr = header->attr[i];
1642
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02001643 if (!sample_type)
1644 sample_type = attr->attr.sample_type;
1645 else if (sample_type != attr->attr.sample_type)
1646 die("non matching sample_type");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02001647 }
1648
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02001649 return sample_type;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02001650}
Peter Zijlstraf5970552009-06-18 23:22:55 +02001651
Ingo Molnard80d3382009-06-03 23:14:49 +02001652static int __cmd_report(void)
1653{
Ingo Molnar75051722009-06-03 23:14:49 +02001654 int ret, rc = EXIT_FAILURE;
Ingo Molnard80d3382009-06-03 23:14:49 +02001655 unsigned long offset = 0;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02001656 unsigned long head, shift;
Ingo Molnard80d3382009-06-03 23:14:49 +02001657 struct stat stat;
Ingo Molnard80d3382009-06-03 23:14:49 +02001658 event_t *event;
Ingo Molnard80d3382009-06-03 23:14:49 +02001659 uint32_t size;
Ingo Molnar75051722009-06-03 23:14:49 +02001660 char *buf;
Ingo Molnard80d3382009-06-03 23:14:49 +02001661
1662 register_idle_thread();
1663
1664 input = open(input_name, O_RDONLY);
1665 if (input < 0) {
Ingo Molnara14832f2009-06-07 17:58:23 +02001666 fprintf(stderr, " failed to open file: %s", input_name);
1667 if (!strcmp(input_name, "perf.data"))
1668 fprintf(stderr, " (try 'perf record' first)");
1669 fprintf(stderr, "\n");
Ingo Molnard80d3382009-06-03 23:14:49 +02001670 exit(-1);
1671 }
1672
1673 ret = fstat(input, &stat);
1674 if (ret < 0) {
1675 perror("failed to stat file");
1676 exit(-1);
1677 }
1678
1679 if (!stat.st_size) {
1680 fprintf(stderr, "zero-sized file, nothing to do!\n");
1681 exit(0);
1682 }
1683
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02001684 header = perf_header__read(input);
1685 head = header->data_offset;
Peter Zijlstraf5970552009-06-18 23:22:55 +02001686
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02001687 sample_type = perf_header__sample_type();
1688
Frederic Weisbecker91b4eae2009-07-05 07:39:17 +02001689 if (!(sample_type & PERF_SAMPLE_CALLCHAIN)) {
1690 if (sort__has_parent) {
1691 fprintf(stderr, "selected --sort parent, but no"
1692 " callchain data. Did you call"
1693 " perf record without -g?\n");
1694 exit(-1);
1695 }
1696 if (callchain) {
1697 fprintf(stderr, "selected -c but no callchain data."
1698 " Did you call perf record without"
1699 " -g?\n");
1700 exit(-1);
1701 }
Peter Zijlstraf5970552009-06-18 23:22:55 +02001702 }
1703
Ingo Molnard80d3382009-06-03 23:14:49 +02001704 if (load_kernel() < 0) {
1705 perror("failed to load kernel symbols");
1706 return EXIT_FAILURE;
1707 }
1708
1709 if (!full_paths) {
1710 if (getcwd(__cwd, sizeof(__cwd)) == NULL) {
1711 perror("failed to get the current directory");
1712 return EXIT_FAILURE;
1713 }
1714 cwdlen = strlen(cwd);
1715 } else {
1716 cwd = NULL;
1717 cwdlen = 0;
1718 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02001719
1720 shift = page_size * (head / page_size);
1721 offset += shift;
1722 head -= shift;
1723
Ingo Molnard80d3382009-06-03 23:14:49 +02001724remap:
1725 buf = (char *)mmap(NULL, page_size * mmap_window, PROT_READ,
1726 MAP_SHARED, input, offset);
1727 if (buf == MAP_FAILED) {
1728 perror("failed to mmap file");
1729 exit(-1);
1730 }
1731
1732more:
1733 event = (event_t *)(buf + head);
1734
1735 size = event->header.size;
1736 if (!size)
1737 size = 8;
1738
1739 if (head + event->header.size >= page_size * mmap_window) {
Ingo Molnard80d3382009-06-03 23:14:49 +02001740 int ret;
1741
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02001742 shift = page_size * (head / page_size);
1743
Ingo Molnard80d3382009-06-03 23:14:49 +02001744 ret = munmap(buf, page_size * mmap_window);
1745 assert(ret == 0);
1746
1747 offset += shift;
1748 head -= shift;
1749 goto remap;
1750 }
1751
1752 size = event->header.size;
1753
Ingo Molnar8465b052009-06-14 14:44:07 +02001754 dprintf("\n%p [%p]: event: %d\n",
Ingo Molnarb2fef072009-06-05 18:07:51 +02001755 (void *)(offset + head),
1756 (void *)(long)event->header.size,
1757 event->header.type);
1758
Ingo Molnard80d3382009-06-03 23:14:49 +02001759 if (!size || process_event(event, offset, head) < 0) {
1760
Ingo Molnar35029732009-06-03 09:38:58 +02001761 dprintf("%p [%p]: skipping unknown header type: %d\n",
1762 (void *)(offset + head),
1763 (void *)(long)(event->header.size),
1764 event->header.type);
Peter Zijlstrab7a16ea2009-05-27 13:35:35 +02001765
Ingo Molnar3e706112009-05-26 18:53:17 +02001766 total_unknown++;
Peter Zijlstra6142f9e2009-05-26 20:51:47 +02001767
1768 /*
1769 * assume we lost track of the stream, check alignment, and
1770 * increment a single u64 in the hope to catch on again 'soon'.
1771 */
1772
1773 if (unlikely(head & 7))
1774 head &= ~7ULL;
1775
1776 size = 8;
Ingo Molnar97b07b62009-05-26 18:48:58 +02001777 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -03001778
Peter Zijlstra6142f9e2009-05-26 20:51:47 +02001779 head += size;
Ingo Molnarf49515b2009-05-26 19:03:36 +02001780
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02001781 if (offset + head >= header->data_offset + header->data_size)
Peter Zijlstraf5970552009-06-18 23:22:55 +02001782 goto done;
1783
Ingo Molnarf37a2912009-07-01 12:37:06 +02001784 if (offset + head < (unsigned long)stat.st_size)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -03001785 goto more;
1786
Peter Zijlstraf5970552009-06-18 23:22:55 +02001787done:
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -03001788 rc = EXIT_SUCCESS;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -03001789 close(input);
Ingo Molnar97b07b62009-05-26 18:48:58 +02001790
Ingo Molnar35029732009-06-03 09:38:58 +02001791 dprintf(" IP events: %10ld\n", total);
1792 dprintf(" mmap events: %10ld\n", total_mmap);
1793 dprintf(" comm events: %10ld\n", total_comm);
Peter Zijlstra62fc4452009-06-04 16:53:49 +02001794 dprintf(" fork events: %10ld\n", total_fork);
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +02001795 dprintf(" lost events: %10ld\n", total_lost);
Ingo Molnar35029732009-06-03 09:38:58 +02001796 dprintf(" unknown events: %10ld\n", total_unknown);
Ingo Molnar97b07b62009-05-26 18:48:58 +02001797
Ingo Molnar35029732009-06-03 09:38:58 +02001798 if (dump_trace)
Ingo Molnar97b07b62009-05-26 18:48:58 +02001799 return 0;
Ingo Molnar97b07b62009-05-26 18:48:58 +02001800
Arnaldo Carvalho de Melo9ac99542009-06-04 13:54:00 -03001801 if (verbose >= 3)
1802 threads__fprintf(stdout);
1803
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001804 if (verbose >= 2)
Ingo Molnar16f762a2009-05-27 09:10:38 +02001805 dsos__fprintf(stdout);
Ingo Molnar16f762a2009-05-27 09:10:38 +02001806
Peter Zijlstra82292892009-06-03 12:37:36 +02001807 collapse__resort();
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +02001808 output__resort(total);
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +02001809 output__fprintf(stdout, total);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -03001810
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -03001811 return rc;
1812}
1813
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +02001814static int
1815parse_callchain_opt(const struct option *opt __used, const char *arg,
1816 int unset __used)
1817{
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +02001818 char *tok;
1819 char *endptr;
1820
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +02001821 callchain = 1;
1822
1823 if (!arg)
1824 return 0;
1825
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +02001826 tok = strtok((char *)arg, ",");
1827 if (!tok)
1828 return -1;
1829
1830 /* get the output mode */
1831 if (!strncmp(tok, "graph", strlen(arg)))
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +02001832 callchain_mode = GRAPH;
1833
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +02001834 else if (!strncmp(tok, "flat", strlen(arg)))
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +02001835 callchain_mode = FLAT;
1836 else
1837 return -1;
1838
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +02001839 /* get the min percentage */
1840 tok = strtok(NULL, ",");
1841 if (!tok)
1842 return 0;
1843
1844 callchain_min_percent = strtod(tok, &endptr);
1845 if (tok == endptr)
1846 return -1;
1847
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +02001848 return 0;
1849}
1850
Ingo Molnar53cb8bc2009-05-26 09:17:18 +02001851static const char * const report_usage[] = {
1852 "perf report [<options>] <command>",
1853 NULL
1854};
1855
1856static const struct option options[] = {
1857 OPT_STRING('i', "input", &input_name, "file",
1858 "input file name"),
Arnaldo Carvalho de Melo815e7772009-05-26 19:46:14 -03001859 OPT_BOOLEAN('v', "verbose", &verbose,
1860 "be more verbose (show symbol address, etc)"),
Ingo Molnar97b07b62009-05-26 18:48:58 +02001861 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1862 "dump raw trace in ASCII"),
Peter Zijlstra450aaa22009-05-27 20:20:23 +02001863 OPT_STRING('k', "vmlinux", &vmlinux, "file", "vmlinux pathname"),
Mike Galbraith42976482009-07-02 08:09:46 +02001864 OPT_BOOLEAN('m', "modules", &modules,
1865 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Ingo Molnar63299f02009-05-28 10:52:00 +02001866 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
Ingo Molnarb25bcf22009-06-18 07:01:03 +02001867 "sort by key(s): pid, comm, dso, symbol, parent"),
Arnaldo Carvalho de Melob78c07d2009-05-29 13:48:59 -03001868 OPT_BOOLEAN('P', "full-paths", &full_paths,
1869 "Don't shorten the pathnames taking into account the cwd"),
Ingo Molnarb25bcf22009-06-18 07:01:03 +02001870 OPT_STRING('p', "parent", &parent_pattern, "regex",
1871 "regex filter to identify parent, see: '--sort parent'"),
Ingo Molnarb8e6d822009-06-18 14:32:19 +02001872 OPT_BOOLEAN('x', "exclude-other", &exclude_other,
1873 "Only display entries with parent-match"),
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +02001874 OPT_CALLBACK_DEFAULT('c', "callchain", NULL, "output_type,min_percent",
1875 "Display callchains using output_type and min percent threshold. "
Frederic Weisbeckerbe903882009-07-05 07:39:18 +02001876 "Default: flat,0", &parse_callchain_opt, callchain_default_opt),
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -03001877 OPT_STRING('d', "dsos", &dso_list_str, "dso[,dso...]",
1878 "only consider symbols in these dsos"),
Arnaldo Carvalho de Melocc8b88b2009-06-30 19:01:21 -03001879 OPT_STRING('C', "comms", &comm_list_str, "comm[,comm...]",
1880 "only consider symbols in these comms"),
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -03001881 OPT_STRING('S', "symbols", &sym_list_str, "symbol[,symbol...]",
1882 "only consider these symbols"),
Ingo Molnar53cb8bc2009-05-26 09:17:18 +02001883 OPT_END()
1884};
1885
Ingo Molnar5352f352009-06-03 10:07:39 +02001886static void setup_sorting(void)
1887{
1888 char *tmp, *tok, *str = strdup(sort_order);
1889
1890 for (tok = strtok_r(str, ", ", &tmp);
1891 tok; tok = strtok_r(NULL, ", ", &tmp)) {
1892 if (sort_dimension__add(tok) < 0) {
1893 error("Unknown --sort key: `%s'", tok);
1894 usage_with_options(report_usage, options);
1895 }
1896 }
1897
1898 free(str);
1899}
1900
Arnaldo Carvalho de Melocc8b88b2009-06-30 19:01:21 -03001901static void setup_list(struct strlist **list, const char *list_str,
1902 const char *list_name)
1903{
1904 if (list_str) {
1905 *list = strlist__new(true, list_str);
1906 if (!*list) {
1907 fprintf(stderr, "problems parsing %s list\n",
1908 list_name);
1909 exit(129);
1910 }
1911 }
1912}
1913
Ingo Molnarf37a2912009-07-01 12:37:06 +02001914int cmd_report(int argc, const char **argv, const char *prefix __used)
Ingo Molnar53cb8bc2009-05-26 09:17:18 +02001915{
Arnaldo Carvalho de Meloa2928c42009-05-28 14:55:04 -03001916 symbol__init();
Ingo Molnar53cb8bc2009-05-26 09:17:18 +02001917
1918 page_size = getpagesize();
1919
Ingo Molnaredc52de2009-06-04 16:24:37 +02001920 argc = parse_options(argc, argv, options, report_usage, 0);
Ingo Molnar53cb8bc2009-05-26 09:17:18 +02001921
Peter Zijlstra1aa16732009-05-27 20:20:25 +02001922 setup_sorting();
1923
Ingo Molnarb8e6d822009-06-18 14:32:19 +02001924 if (parent_pattern != default_parent_pattern)
1925 sort_dimension__add("parent");
1926 else
1927 exclude_other = 0;
1928
Ingo Molnaredc52de2009-06-04 16:24:37 +02001929 /*
1930 * Any (unrecognized) arguments left?
1931 */
1932 if (argc)
1933 usage_with_options(report_usage, options);
1934
Arnaldo Carvalho de Melocc8b88b2009-06-30 19:01:21 -03001935 setup_list(&dso_list, dso_list_str, "dso");
1936 setup_list(&comm_list, comm_list_str, "comm");
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -03001937 setup_list(&sym_list, sym_list_str, "symbol");
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -03001938
Ingo Molnara930d2c2009-05-27 09:50:13 +02001939 setup_pager();
1940
Ingo Molnar53cb8bc2009-05-26 09:17:18 +02001941 return __cmd_report();
1942}