diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-12-14 11:22:59 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-12-14 11:34:55 -0500 |
commit | a328626b61aeda1a7d00a80c475c76ca1b815e0d (patch) | |
tree | 784f964c8c8950d58bccccaf3802a5a20efb4672 /tools/perf/builtin-report.c | |
parent | 4e4f06e4c8f17ea96f7dd76251cab99511026401 (diff) |
perf session: Adopt resolve_callchain
This is really a generic library routine, so declutter
builtin-report.c a bit by moving it to the library.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1260807780-19377-1-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r-- | tools/perf/builtin-report.c | 62 |
1 files changed, 2 insertions, 60 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index 854427f0e57e..5141cdccbb65 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c | |||
@@ -407,64 +407,6 @@ static int thread__set_comm_adjust(struct thread *self, const char *comm) | |||
407 | return 0; | 407 | return 0; |
408 | } | 408 | } |
409 | 409 | ||
410 | static int call__match(struct symbol *sym) | ||
411 | { | ||
412 | if (sym->name && !regexec(&parent_regex, sym->name, 0, NULL, 0)) | ||
413 | return 1; | ||
414 | |||
415 | return 0; | ||
416 | } | ||
417 | |||
418 | static struct symbol **resolve_callchain(struct thread *thread, | ||
419 | struct perf_session *session, | ||
420 | struct ip_callchain *chain, | ||
421 | struct symbol **parent) | ||
422 | { | ||
423 | u8 cpumode = PERF_RECORD_MISC_USER; | ||
424 | struct symbol **syms = NULL; | ||
425 | unsigned int i; | ||
426 | |||
427 | if (session->use_callchain) { | ||
428 | syms = calloc(chain->nr, sizeof(*syms)); | ||
429 | if (!syms) { | ||
430 | fprintf(stderr, "Can't allocate memory for symbols\n"); | ||
431 | exit(-1); | ||
432 | } | ||
433 | } | ||
434 | |||
435 | for (i = 0; i < chain->nr; i++) { | ||
436 | u64 ip = chain->ips[i]; | ||
437 | struct addr_location al; | ||
438 | |||
439 | if (ip >= PERF_CONTEXT_MAX) { | ||
440 | switch (ip) { | ||
441 | case PERF_CONTEXT_HV: | ||
442 | cpumode = PERF_RECORD_MISC_HYPERVISOR; break; | ||
443 | case PERF_CONTEXT_KERNEL: | ||
444 | cpumode = PERF_RECORD_MISC_KERNEL; break; | ||
445 | case PERF_CONTEXT_USER: | ||
446 | cpumode = PERF_RECORD_MISC_USER; break; | ||
447 | default: | ||
448 | break; | ||
449 | } | ||
450 | continue; | ||
451 | } | ||
452 | |||
453 | thread__find_addr_location(thread, session, cpumode, | ||
454 | MAP__FUNCTION, ip, &al, NULL); | ||
455 | if (al.sym != NULL) { | ||
456 | if (sort__has_parent && !*parent && | ||
457 | call__match(al.sym)) | ||
458 | *parent = al.sym; | ||
459 | if (!session->use_callchain) | ||
460 | break; | ||
461 | syms[i] = al.sym; | ||
462 | } | ||
463 | } | ||
464 | |||
465 | return syms; | ||
466 | } | ||
467 | |||
468 | /* | 410 | /* |
469 | * collect histogram counts | 411 | * collect histogram counts |
470 | */ | 412 | */ |
@@ -478,8 +420,8 @@ static int perf_session__add_hist_entry(struct perf_session *self, | |||
478 | struct hist_entry *he; | 420 | struct hist_entry *he; |
479 | 421 | ||
480 | if ((sort__has_parent || self->use_callchain) && chain) | 422 | if ((sort__has_parent || self->use_callchain) && chain) |
481 | syms = resolve_callchain(al->thread, self, chain, &parent); | 423 | syms = perf_session__resolve_callchain(self, al->thread, |
482 | 424 | chain, &parent); | |
483 | he = __perf_session__add_hist_entry(self, al, parent, count, &hit); | 425 | he = __perf_session__add_hist_entry(self, al, parent, count, &hit); |
484 | if (he == NULL) | 426 | if (he == NULL) |
485 | return -ENOMEM; | 427 | return -ENOMEM; |